/* GreenLotto Australia - Eco-Sustainable Style */

:root {
    /* Eco-Sustainable Colors - Лесная свежесть */
    --primary-color: #166534;          /* Зеленый */
    --secondary-color: #BBF7D0;        /* Мятный */
    --accent-color: #65A30D;           /* Лаймовый */
    --text-color: #166534;             /* Темно-зеленый текст */
    --text-light: #BBF7D0;             /* Светлый зеленый */
    --background-color: #F5F5DC;       /* Бежевый */
    --card-bg: rgba(187, 247, 208, 0.7); /* Мятный прозрачный */
    --border-color: #65A30D;           /* Лаймовая граница */
    --success-color: #22c55e;          /* Природный зеленый */
    --warning-color: #f59e0b;          /* Натуральный янтарь */
    --error-color: #dc2626;            /* Естественный красный */
    
    /* Eco Effects */
    --nature-shadow: 0 4px 8px rgba(22, 101, 52, 0.2);
    --soft-shadow: 0 2px 4px rgba(187, 247, 208, 0.3);
    --natural-border: 2px solid var(--border-color);
    --transition: all 0.3s ease;
    
    /* Natural Gradients */
    --leaf-gradient: linear-gradient(135deg, #BBF7D0, #65A30D);
    --forest-gradient: linear-gradient(45deg, #166534, #22c55e);
    --meadow-gradient: linear-gradient(90deg, #F5F5DC, #BBF7D0);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    word-wrap: break-word;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    background-image: radial-gradient(circle at 25% 25%, rgba(187, 247, 208, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(101, 163, 13, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(187, 247, 208, 0.3);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: var(--soft-shadow);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-color);
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
    word-wrap: break-word;
    line-height: 1.7;
}

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

/* Header */
.main-header {
    background: rgba(245, 245, 220, 0.95);
    border-bottom: var(--natural-border);
    box-shadow: var(--nature-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 1rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-self: end;
}

.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    background: rgba(187, 247, 208, 0.2);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    border-radius: 25px;
    box-shadow: var(--soft-shadow);
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--leaf-gradient);
    border-radius: 25px;
    transform: scaleX(0);
    transition: var(--transition);
    z-index: -1;
    transform-origin: left;
}

.desktop-nav a:hover {
    color: var(--background-color);
    box-shadow: var(--nature-shadow);
    transform: translateY(-1px);
}

.desktop-nav a:hover::before {
    transform: scaleX(1);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 12px;
    background: rgba(187, 247, 208, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    z-index: 1600;
    justify-self: end;
    backdrop-filter: blur(5px);
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(245, 245, 220, 0.95);
    flex-direction: column;
    padding: 2rem;
    border-bottom: var(--natural-border);
    z-index: 1500;
    box-shadow: var(--nature-shadow);
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-color) !important;
    text-decoration: none;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: block;
    z-index: 10;
    background: rgba(187, 247, 208, 0.2);
    margin-bottom: 0.5rem;
    border-radius: 15px;
    text-align: center;
}

.mobile-nav a:hover {
    background: var(--leaf-gradient);
    color: var(--background-color) !important;
    transform: translateX(5px);
    border-radius: 25px;
}

@media (max-width: 899px) {
    .desktop-nav {
        display: none;
    }
    
    .burger {
        display: flex !important;
        justify-self: end !important;
        margin-right: 1rem;
        z-index: 1600;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 8rem !important;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(rgba(245, 245, 220, 0.85), rgba(187, 247, 208, 0.85)), url('uploads/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(187, 247, 208, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(101, 163, 13, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(245, 245, 220, 0.9);
    border: var(--natural-border);
    border-radius: 25px;
    box-shadow: var(--nature-shadow);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: var(--natural-border);
    background: var(--secondary-color);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    font-family: 'Arial', sans-serif;
    border-radius: 25px;
    box-shadow: var(--soft-shadow);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
    background: var(--leaf-gradient);
    color: var(--background-color);
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.secondary {
    background: rgba(101, 163, 13, 0.2);
    color: var(--accent-color);
}

.hero-btn.secondary:hover {
    background: var(--forest-gradient);
    color: var(--background-color);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(187, 247, 208, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(187, 247, 208, 0.1), rgba(245, 245, 220, 0.9)), url('uploads/features-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(187, 247, 208, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nature-shadow);
    background: rgba(187, 247, 208, 0.9);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Schedule Section */
.schedule-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.draw-card {
    background: var(--card-bg);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.draw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(101, 163, 13, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.draw-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--nature-shadow);
    background: rgba(187, 247, 208, 0.9);
}

.draw-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--background-color);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
}

.draw-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.draw-time {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.draw-prize {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    margin-bottom: 0.5rem;
}

.draw-entries {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    font-style: italic;
}

/* Impact Section */
.impact-section {
    padding: 6rem 0;
    background: var(--meadow-gradient);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: rgba(245, 245, 220, 0.8);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nature-shadow);
    background: rgba(245, 245, 220, 0.95);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    font-family: 'Arial', monospace;
    letter-spacing: 1px;
}

.impact-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-description {
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--nature-shadow);
    background: rgba(187, 247, 208, 0.9);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author strong {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
    letter-spacing: 0.5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Article Section */
.article-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(245, 245, 220, 0.9), rgba(187, 247, 208, 0.9)), url('uploads/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(245, 245, 220, 0.95);
    border: var(--natural-border);
    border-radius: 25px;
    box-shadow: var(--nature-shadow);
    backdrop-filter: blur(10px);
}

.article-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.read-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background: var(--accent-color);
    border: var(--natural-border);
    border-radius: 25px;
    color: var(--background-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    box-shadow: var(--soft-shadow);
}

.read-more-btn:hover {
    background: var(--forest-gradient);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--nature-shadow);
    background: rgba(187, 247, 208, 0.9);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-method p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(245, 245, 220, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(101, 163, 13, 0.3);
    background: rgba(245, 245, 220, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-color);
    opacity: 0.7;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    border: var(--natural-border);
    border-radius: 25px;
    color: var(--background-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    box-shadow: var(--soft-shadow);
}

.submit-btn:hover {
    background: var(--forest-gradient);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 101, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: var(--background-color);
    border: var(--natural-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--nature-shadow);
    position: relative;
}

.popup-content h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
}

.popup-content p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 1rem 2rem;
    border: var(--natural-border);
    border-radius: 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
}

.age-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

.age-yes {
    background: var(--success-color);
    color: var(--background-color);
}

.age-no {
    background: var(--error-color);
    color: var(--background-color);
}

.success-btn {
    padding: 1rem 2rem;
    border: var(--natural-border);
    border-radius: 25px;
    background: var(--success-color);
    color: var(--background-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(245, 245, 220, 0.95);
    border-top: var(--natural-border);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0px -4px 8px rgba(22, 101, 52, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-color);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--background-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
    display: inline-block;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

.cookie-btn.accept {
    background: var(--success-color);
    color: var(--background-color);
}

/* Disclaimer Section - EXACT structure from TZ */
.disclaimer-section {
    background: var(--meadow-gradient) !important;
    padding: 3rem 0 !important;
    border-top: var(--natural-border);
}

.disclaimer-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    text-align: center !important;
}

.disclaimer-logos {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

.logo-group {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
}

.disclaimer-logo {
    height: 60px !important;
    width: auto !important;
    padding: 0.3rem !important;
    border-radius: 0 !important;
    border: none !important;
    object-fit: contain !important;
    transition: var(--transition) !important;
    box-shadow: none !important;
    background: transparent !important;
    filter: brightness(0) !important;
}

.disclaimer-logo:hover {
    transform: scale(1.05) !important;
    opacity: 0.7 !important;
}

/* Logo links styling */
.logo-group a {
    text-decoration: none !important;
    display: inline-block !important;
}

.logo-group a:hover .disclaimer-logo {
    transform: scale(1.05) !important;
    opacity: 0.7 !important;
}

.age-badge {
    background: var(--accent-color) !important;
    color: var(--background-color) !important;
    border: var(--natural-border) !important;
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3) !important;
    box-shadow: var(--soft-shadow) !important;
}

.disclaimer-text {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.disclaimer-text p {
    color: var(--text-color) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.disclaimer-text strong {
    color: var(--primary-color) !important;
}

.disclaimer-text a {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
    transition: var(--transition) !important;
    font-weight: 600 !important;
}

.disclaimer-text a:hover {
    color: var(--primary-color) !important;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3) !important;
}

/* Footer */
.main-footer {
    background: var(--background-color);
    border-top: var(--natural-border);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0px -4px 8px rgba(22, 101, 52, 0.2);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 15px;
}

.footer-nav a:hover {
    color: var(--accent-color);
    border-color: var(--border-color);
    transform: translateY(-2px);
    background: rgba(187, 247, 208, 0.2);
}

.main-footer p {
    color: var(--primary-color) !important;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 12rem !important;
        background-attachment: scroll;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid,
    .schedule-grid,
    .impact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
        color: var(--text-color) !important;
        background: rgba(245, 245, 220, 0.9);
        padding: 1rem;
        max-width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 15px;
    }
    
    .disclaimer-text * {
        color: var(--text-color) !important;
    }
    
    .disclaimer-text p {
        color: var(--text-color) !important;
    }
    
    .disclaimer-text strong {
        color: var(--primary-color) !important;
    }
    
    .disclaimer-text a {
        font-size: 1rem;
        padding: 2px 4px;
        background: rgba(101, 163, 13, 0.1);
        color: var(--accent-color) !important;
        border-radius: 5px;
    }
    
    .logo-group {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .disclaimer-logo {
        height: 45px !important;
        min-width: 50px !important;
        max-width: 90px !important;
        flex-shrink: 0 !important;
    }
    
    .age-badge {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.2rem !important;
    }
    
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
}

/* Login / Member Garden Section */
.login-section {
    padding: 8rem 0 6rem;
    background: var(--background-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: var(--card-bg);
    border: var(--natural-border);
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--nature-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 25px;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(187, 247, 208, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.login-header h1 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
}

.login-header p {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
    position: relative;
    border-bottom: 2px solid transparent;
    border-radius: 15px 15px 0 0;
}

.tab-btn:hover {
    color: var(--accent-color);
    background: rgba(187, 247, 208, 0.2);
}

.tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: rgba(187, 247, 208, 0.3);
    box-shadow: var(--soft-shadow);
}

/* Auth Tabs Content */
.auth-tab {
    display: none;
    position: relative;
    z-index: 2;
}

.auth-tab.active {
    display: block;
}

/* Auth Forms */
.auth-form {
    width: 100%;
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(245, 245, 220, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(101, 163, 13, 0.3);
    background: rgba(245, 245, 220, 0.95);
}

.auth-form input::placeholder {
    color: var(--primary-color);
    opacity: 0.7;
}

.auth-form small {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

/* Form Options */
.form-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    font-size: 0.9rem;
    gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    background: transparent;
    position: relative;
    transition: var(--transition);
    border-radius: 4px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--background-color);
    font-weight: bold;
    font-size: 12px;
}

.forgot-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(187, 247, 208, 0.3);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: var(--primary-color);
}

/* Auth Button */
.auth-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    border: var(--natural-border);
    border-radius: 25px;
    color: var(--background-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    box-shadow: var(--soft-shadow);
    margin-bottom: 2rem;
}

.auth-btn:hover {
    background: var(--forest-gradient);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: var(--nature-shadow);
}

/* Security Features */
.security-features {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.security-features h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.security-item {
    text-align: center;
    padding: 1rem;
    background: rgba(187, 247, 208, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.security-item:hover {
    background: rgba(187, 247, 208, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--soft-shadow);
}

.security-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.security-item strong {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.security-item p {
    color: var(--text-color);
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

/* Legal Content Styling */
.legal-content {
    padding-top: 8rem;
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.policy-meta {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.policy-meta p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.policy-section h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-section ul,
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-details {
    background: rgba(187, 247, 208, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive improvements for auth forms */
@media (max-width: 768px) {
    .login-container {
        padding: 2rem;
        margin: 0 1rem;
        max-width: 100%;
    }
    
    .auth-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-options {
        gap: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .disclaimer-logo {
        height: 35px !important;
        min-width: 40px !important;
        max-width: 70px !important;
        padding: 0.1rem !important;
    }
    
    .logo-group {
        gap: 0.3rem !important;
        justify-content: space-between !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .age-badge {
        width: 50px !important;
        height: 50px !important;
        font-size: 1rem !important;
    }
    
    .disclaimer-text {
        font-size: 0.9rem !important;
        padding: 0.8rem !important;
    }
    
    .disclaimer-text a {
        font-size: 0.9rem !important;
        padding: 1px 3px !important;
    }
    
    .login-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .auth-form input,
    .auth-form select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .auth-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .security-item {
        padding: 0.8rem;
    }
    
    .security-item strong {
        font-size: 0.8rem;
    }
    
    .security-item p {
        font-size: 0.7rem;
    }
}
