/* AustraliaLottoToday Main Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFD700; /* Желтый фон */
    min-height: 100vh;
    overflow-x: hidden !important;
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

/* Background overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 255, 0, 0.9) 100%);
    z-index: -1;
}

/* Visually Hidden */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Container */
.australialottotoday-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.australialottotoday-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.australialottotoday-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.australialottotoday-header__logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.australialottotoday-nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.australialottotoday-nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.australialottotoday-nav__link:hover,
.australialottotoday-nav__link--active {
    color: #FFD700;
}

.australialottotoday-nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
}

/* Header Buttons */
.australialottotoday-header__buttons {
    display: flex;
    gap: 15px;
}

.australialottotoday-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.australialottotoday-button--primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.australialottotoday-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.australialottotoday-button--secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.australialottotoday-button--secondary:hover {
    background: #FFD700;
    color: #333;
}

/* Mobile Menu */
.australialottotoday-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.australialottotoday-burger__line {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.australialottotoday-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.australialottotoday-mobile-nav__list {
    list-style: none;
}

.australialottotoday-mobile-nav__item {
    margin-bottom: 15px;
}

.australialottotoday-mobile-nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 10px 0;
}

/* Main Content */
.australialottotoday-main {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.australialottotoday-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%), url('/Images/cirle_seamless021.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.australialottotoday-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.australialottotoday-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.australialottotoday-hero__description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.australialottotoday-hero__image {
    text-align: center;
}

.australialottotoday-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Timer */
.australialottotoday-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.australialottotoday-timer__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.australialottotoday-timer__countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.australialottotoday-timer__item {
    text-align: center;
}

.australialottotoday-timer__label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.australialottotoday-timer__value {
    font-size: 32px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 10px;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Results Section */
.australialottotoday-results {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.australialottotoday-results__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.australialottotoday-results__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.australialottotoday-results__description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.australialottotoday-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.australialottotoday-result-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.australialottotoday-result-card:hover {
    transform: translateY(-5px);
}

.australialottotoday-result-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.australialottotoday-result-card__date {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.australialottotoday-result-card__prize {
    font-weight: 700;
    font-size: 18px;
    color: #FFD700;
}

.australialottotoday-result-card__numbers-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.australialottotoday-numbers__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.australialottotoday-numbers__item {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.australialottotoday-results__button {
    text-align: center;
}

/* About Section */
.australialottotoday-about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%), url('/Images/cirle_seamless021.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    backdrop-filter: blur(10px);
}

.australialottotoday-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.australialottotoday-about__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.australialottotoday-about__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.australialottotoday-about__text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.australialottotoday-about__image {
    text-align: center;
}

.australialottotoday-about__img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.australialottotoday-about__button {
    text-align: center;
}

/* Features Section */
.australialottotoday-features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.australialottotoday-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.australialottotoday-features__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.australialottotoday-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.australialottotoday-feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.australialottotoday-feature-card:hover {
    transform: translateY(-5px);
}

.australialottotoday-feature-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.australialottotoday-feature-card__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.australialottotoday-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    backdrop-filter: blur(10px);
}

.australialottotoday-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.australialottotoday-faq__title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.australialottotoday-faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.australialottotoday-faq__item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.australialottotoday-faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.australialottotoday-faq__header:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.australialottotoday-faq__question {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.australialottotoday-faq__toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #FFD700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.australialottotoday-faq__toggle.active {
    transform: rotate(45deg);
}

.australialottotoday-faq__answer {
    padding: 0 30px 25px;
    display: none;
}

.australialottotoday-faq__answer.active {
    display: block;
}

.australialottotoday-faq__answer p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Form Styles */
.australialottotoday-signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.australialottotoday-form-group {
    margin-bottom: 20px;
}

.australialottotoday-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.australialottotoday-form-group input[type="text"],
.australialottotoday-form-group input[type="email"],
.australialottotoday-form-group input[type="tel"],
.australialottotoday-form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s ease;
}

.australialottotoday-form-group input:focus {
    outline: none;
    border-color: #FFD700;
}

.australialottotoday-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.australialottotoday-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

.australialottotoday-checkbox-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
}

.australialottotoday-checkbox-text a {
    color: #FFD700;
    text-decoration: none;
}

.australialottotoday-checkbox-text a:hover {
    text-decoration: underline;
}

.australialottotoday-form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.australialottotoday-form-footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.australialottotoday-form-footer a:hover {
    text-decoration: underline;
}

/* Footer */
.australialottotoday-footer {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 60px 0 30px;
    backdrop-filter: blur(10px);
}

.australialottotoday-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.australialottotoday-footer__content {
    margin-bottom: 40px;
}

.australialottotoday-footer__section {
    margin-bottom: 30px;
}

.australialottotoday-footer__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.australialottotoday-footer__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.australialottotoday-footer__logos {
    border-top: 1px solid rgba(52, 73, 94, 0.8);
    padding-top: 30px;
}

.australialottotoday-footer__logos-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.australialottotoday-footer__logo-item img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.australialottotoday-footer__logo-item img:hover {
    opacity: 1;
}

/* Popup */
.australialottotoday-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
}

.australialottotoday-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.australialottotoday-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.australialottotoday-popup__content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.australialottotoday-popup__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.australialottotoday-popup__message {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

.australialottotoday-popup__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.australialottotoday-popup__close:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .australialottotoday-header__nav {
        display: none;
    }
    
    .australialottotoday-header__buttons {
        display: none;
    }
    
    .australialottotoday-burger {
        display: flex;
    }
    
    .australialottotoday-mobile-nav.active {
        display: block;
    }
    
    .australialottotoday-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .australialottotoday-hero__title {
        font-size: 36px;
    }
    
    .australialottotoday-timer__countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .australialottotoday-about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .australialottotoday-features__grid {
        grid-template-columns: 1fr;
    }
    
    .australialottotoday-footer__logos-list {
        gap: 20px;
    }
    
    .australialottotoday-footer__logo-item img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .australialottotoday-hero__title {
        font-size: 28px;
    }
    
    .australialottotoday-timer__countdown {
        grid-template-columns: 1fr;
    }
    
    .australialottotoday-numbers__list {
        justify-content: center;
    }
    
    .australialottotoday-footer__logos-list {
        flex-direction: column;
        gap: 15px;
    }
}
