:root {
    --vintage-brown: #2C1810;
    --golden-yellow: #D4AF37;
    --cream-beige: #F4E4C1;
    --saddle-brown: #8B4513;
    --peru-brown: #CD853F;
    --dark-gold: #B8860B;
    --shadow-vintage: rgba(139, 69, 19, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #2C1810 0%, #4A2C1A 50%, #6B4423 100%);
    color: #F4E4C1;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="noise" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23noise)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

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

header {
    background: linear-gradient(90deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    border-bottom: 3px solid #D4AF37;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.logo::after {
    content: '🎰';
    position: absolute;
    top: -5px;
    right: -30px;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #F4E4C1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    width: 30px;
    height: 4px;
    background: #D4AF37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    margin-top: 100px;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(160, 82, 45, 0.3) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #D4AF37;
    margin-bottom: 30px;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero h2 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    color: #F4E4C1;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

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

.btn-primary {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #2C1810;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid #B8860B;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #2C1810;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        min-width: auto;
    }
    

    
    .mobile-menu-alt {
        display: flex;
    }
}

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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #F4E4C1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 4px;
    background: #D4AF37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.draws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.advantages, .draws, .reviews {
    padding: 100px 0;
    position: relative;
}

.advantages {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(160, 82, 45, 0.2) 100%);
}

.draws {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
}

.reviews {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.advantages h2, .draws h2, .reviews h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--golden-yellow);
    margin-bottom: 30px;
    font-weight: 900;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.advantages h2::after, .draws h2::after, .reviews h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--peru-brown));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.advantage-card, .draw-card, .review-card {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 12px 40px var(--shadow-vintage);
    border: 2px solid var(--golden-yellow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card::before, .draw-card::before, .review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--golden-yellow), var(--peru-brown), var(--golden-yellow));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.advantage-card:hover, .draw-card:hover, .review-card:hover {
    transform: translateY(-12px) rotateX(3deg) rotateY(2deg);
    box-shadow: 0 20px 60px var(--shadow-vintage);
}

.advantage-card::after, .draw-card::after, .review-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--golden-yellow);
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::after, .draw-card:hover::after, .review-card:hover::after {
    transform: scale(1);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    text-align: center;
    position: relative;
}

.advantage-card h3 {
    color: var(--vintage-brown);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.advantage-card p {
    color: var(--vintage-brown);
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
}

.draw-card {
    text-align: center;
    transform: perspective(1200px);
    position: relative;
}

.draw-card h3 {
    color: var(--vintage-brown);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.draw-time {
    color: var(--saddle-brown);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.draw-prize {
    color: var(--golden-yellow);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.review-card p {
    font-style: italic;
    color: var(--vintage-brown);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.reviewer {
    color: var(--saddle-brown);
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--saddle-brown) 100%);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 25px 0;
    position: relative;
}

.mobile-menu a {
    color: var(--cream-beige);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 15px 30px;
    border-radius: 25px;
}

.mobile-menu a:hover {
    color: var(--golden-yellow);
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.popup-content {
    background: linear-gradient(135deg, var(--cream-beige) 0%, #FFF8DC 100%);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.8) rotateY(10deg);
    animation: popupIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border: 3px solid var(--golden-yellow);
    position: relative;
}

@keyframes popupIn {
    to {
        transform: scale(1) rotateY(0deg);
    }
}

.popup-content h2 {
    color: var(--vintage-brown);
    margin-bottom: 25px;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.popup-content p {
    color: var(--vintage-brown);
    margin-bottom: 35px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.popup-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--saddle-brown) 100%);
    color: var(--cream-beige);
    padding: 25px;
    border-radius: 20px;
    max-width: 450px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    z-index: 1500;
    transform: translateX(120%);
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border: 2px solid var(--golden-yellow);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

.cookie-banner p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-banner a {
    color: var(--golden-yellow);
    text-decoration: underline;
    font-weight: 600;
}

.disclaimer {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
    padding: 50px 0;
    margin-top: 80px;
    position: relative;
}

.disclaimer-content {
    background: linear-gradient(135deg, rgba(244, 228, 193, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #DC3545;
    box-shadow: 0 10px 30px var(--shadow-vintage);
    position: relative;
}

.disclaimer-content h3 {
    color: #DC3545;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.disclaimer-content p {
    color: var(--vintage-brown);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.disclaimer-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.disclaimer-content li {
    color: var(--vintage-brown);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.disclaimer-content a {
    color: var(--saddle-brown);
    text-decoration: underline;
    font-weight: 600;
}

footer {
    background: linear-gradient(90deg, var(--vintage-brown) 0%, var(--saddle-brown) 100%);
    color: var(--cream-beige);
    padding: 50px 0 30px;
    margin-top: 80px;
    position: relative;
    border-top: 4px solid var(--golden-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--cream-beige);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.footer-nav a:hover {
    color: var(--golden-yellow);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
}

.footer-logo {
    height: 45px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.footer-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.age-icon {
    background: var(--golden-yellow);
    color: var(--vintage-brown);
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}



.disclaimer {
    background: rgba(220, 53, 69, 0.1);
    border-top: 2px solid #dc3545;
    padding: 20px 0;
    text-align: center;
}

.disclaimer p {
    color: #F4E4C1;
    font-size: 0.9rem;
    margin: 0;
}

main {
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .advantages-grid, .draws-grid, .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-card, .draw-card, .review-card {
        padding: 30px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-logos {
        justify-content: center;
    }
    
    .popup-content {
        padding: 40px 25px;
    }
    
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .advantage-icon {
        font-size: 3rem;
    }
}

.debug-reset {
}

.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--saddle-brown) 100%);
    color: var(--cream-beige);
    padding: 40px;
    border-radius: 25px;
    z-index: 2000;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    display: none;
    animation: successIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--golden-yellow);
}

@keyframes successIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.mobile-menu-alt {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--saddle-brown) 100%);
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-alt.active {
    left: 0;
}

.mobile-menu-alt ul {
    list-style: none;
    text-align: center;
}

.mobile-menu-alt li {
    margin: 20px 0;
}

.mobile-menu-alt a {
    color: var(--cream-beige);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 25px;
    display: block;
}

.mobile-menu-alt a:hover {
    color: var(--golden-yellow);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}


.disclaimer {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(160, 82, 45, 0.8) 100%);
    border-top: 3px solid var(--golden-yellow);
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.disclaimer p {
    color: var(--cream-beige);
    font-size: 1rem;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.about-hero {
    background: linear-gradient(135deg, var(--vintage-brown) 0%, var(--saddle-brown) 50%, var(--peru-brown) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    padding: 80px 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="noise" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23noise)"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--golden-yellow);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--cream-beige);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream-beige);
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.vintage-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--golden-yellow);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    border-left: 4px solid var(--golden-yellow);
    background: rgba(212, 175, 55, 0.1);
}


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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--cream-beige);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--golden-yellow);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 4px;
    background: var(--golden-yellow);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}


.footer-content-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--golden-yellow);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: var(--cream-beige);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--cream-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--golden-yellow);
}

.support-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.support-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.support-logo:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-alt {
        display: flex;
    }
    
    .footer-content-alt {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .support-logos {
        justify-content: center;
    }
} 