/* Velvet Lotto Australia - Elegant Pastel Style (Dark Adaptation) */

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

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

/* Import Elegant Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Elegant Pastel Color Variables - Powder Scheme (Dark Adaptation) */
:root {
    --deep-plum: #2A1A2E;          /* Main dark background */
    --rich-purple: #4A2C4A;        /* Medium purple */
    --powder-pink: #F5D0FE;        /* Soft powder pink */
    --pearl-white: #FDF2F8;        /* Creamy pearl */
    --silver-mist: #E5E7EB;        /* Elegant silver */
    --rose-gold: #E0A899;          /* Warm rose gold */
    --lavender: #C4B5FD;           /* Soft lavender */
    --cream: #FEF7ED;              /* Warm cream */
    --white: #FFFFFF;
    --charcoal: #1F1B24;           /* Deep charcoal */
    
    /* Gradients */
    --velvet-gradient: linear-gradient(135deg, #2A1A2E 0%, #4A2C4A 50%, #2A1A2E 100%);
    --powder-gradient: linear-gradient(90deg, #F5D0FE, #E0A899);
    --pearl-gradient: linear-gradient(45deg, #FDF2F8, #E5E7EB);
    --rose-gradient: linear-gradient(180deg, #E0A899, #F5D0FE);
    
    /* Shadows */
    --elegant-shadow: 0 12px 40px rgba(42, 26, 46, 0.6);
    --soft-shadow: 0 6px 20px rgba(245, 208, 254, 0.2);
    --pearl-glow: 0 0 25px rgba(253, 242, 248, 0.3);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --slow-transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--velvet-gradient);
    color: var(--powder-pink);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    min-height: 100vh;
}

/* Elegant Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(245, 208, 254, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(224, 168, 153, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(253, 242, 248, 0.02) 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    background: var(--powder-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: elegantShimmer 5s ease-in-out infinite;
    font-style: italic;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--powder-pink);
    position: relative;
    font-style: italic;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--pearl-gradient);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--lavender);
}

p {
    margin-bottom: 1.4rem;
    color: var(--pearl-white);
    word-wrap: break-word;
    line-height: 1.8;
    font-weight: 300;
}

/* Animations */
@keyframes elegantShimmer {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.15) saturate(1.1);
        transform: scale(1.005);
    }
}

@keyframes softFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    33% { 
        transform: translateY(-8px) rotate(1deg);
    }
    66% { 
        transform: translateY(4px) rotate(-0.5deg);
    }
}

@keyframes gracefulRise {
    from { 
        opacity: 0; 
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

@keyframes elegantPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(245, 208, 254, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(245, 208, 254, 0);
        transform: scale(1.02);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(42, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rich-purple);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 75px;
    max-height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--powder-pink);
    animation: softFloat 4s ease-in-out infinite;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    font-style: italic;
}

.logo:hover .logo-icon {
    transform: scale(1.15) rotate(10deg);
    color: var(--rose-gold);
}

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

.desktop-nav a {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pearl-gradient);
    transition: var(--transition);
    z-index: -1;
    border-radius: 30px;
}

.desktop-nav a:hover {
    color: var(--deep-plum);
    border-color: var(--powder-pink);
    transform: translateY(-2px);
}

.desktop-nav a:hover::before {
    left: 0;
}

/* Mobile Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 34px;
    height: 34px;
    background: rgba(42, 26, 46, 0.5);
    border: 2px solid var(--powder-pink);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(15px);
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--powder-pink);
    border-radius: 2px;
    transition: var(--transition);
}

.burger:hover {
    background: rgba(245, 208, 254, 0.1);
    transform: scale(1.1);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 85px;
    right: -100%;
    width: 320px;
    height: calc(100vh - 85px);
    background: rgba(42, 26, 46, 0.98);
    backdrop-filter: blur(25px);
    border-left: 2px solid var(--powder-pink);
    transition: var(--slow-transition);
    z-index: 1500;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: #FEF7ED !important;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(245, 208, 254, 0.2);
    transition: var(--transition);
    display: block !important;
    z-index: 10;
}

.mobile-nav a:hover {
    background: rgba(245, 208, 254, 0.1) !important;
    color: var(--powder-pink) !important;
    padding-left: 2.5rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 26, 46, 0.85);
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: gracefulRise 1.5s ease-out;
}

.hero-content h1 {
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--lavender);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    color: var(--pearl-white);
    line-height: 1.9;
    font-weight: 300;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-link {
    padding: 1.2rem 3rem;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 35px;
    font-style: italic;
}

.btn-primary {
    background: var(--powder-gradient);
    color: var(--deep-plum);
    border: 2px solid var(--powder-pink);
    box-shadow: var(--pearl-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 208, 254, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--powder-pink);
    border: 2px solid var(--powder-pink);
}

.btn-secondary:hover {
    background: var(--powder-pink);
    color: var(--deep-plum);
    transform: translateY(-3px);
}

.btn-link {
    background: transparent;
    color: var(--pearl-white);
    border: 1px solid var(--rich-purple);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--powder-pink);
    border-color: var(--powder-pink);
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: var(--charcoal);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('accent-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--powder-pink);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(42, 26, 46, 0.8);
    border: 1px solid var(--rich-purple);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(245, 208, 254, 0.05), transparent);
    animation: rotate 8s linear infinite;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--powder-pink);
    box-shadow: var(--pearl-glow);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: elegantPulse 4s infinite;
}

.stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    color: var(--powder-pink);
    font-weight: 600;
    margin-bottom: 0.8rem;
    animation: gracefulRise 1s ease-out;
    font-style: italic;
}

.stat-label {
    color: var(--pearl-white);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

/* Schedule Section */
.schedule-section {
    padding: 8rem 0;
    background: var(--velvet-gradient);
}

.schedule-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--white);
}

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

.draw-card {
    background: rgba(31, 27, 36, 0.8);
    border: 1px solid var(--rich-purple);
    border-radius: 25px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.draw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 208, 254, 0.05), transparent);
    transition: var(--slow-transition);
}

.draw-card:hover {
    transform: translateY(-8px);
    border-color: var(--powder-pink);
    box-shadow: var(--elegant-shadow);
}

.draw-card:hover::before {
    left: 100%;
}

.draw-date {
    text-align: center;
    border: 2px solid var(--powder-pink);
    border-radius: 20px;
    padding: 1.5rem;
    background: rgba(245, 208, 254, 0.05);
}

.draw-date .day {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--powder-pink);
    line-height: 1;
    font-weight: 600;
    font-style: italic;
}

.draw-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--pearl-white);
    letter-spacing: 1px;
    font-weight: 300;
}

.draw-info h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-style: italic;
}

.draw-time {
    color: var(--pearl-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.jackpot {
    color: var(--powder-pink);
    font-weight: 600;
    font-size: 1.2rem;
}

.draw-status {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    letter-spacing: 1px;
    background: var(--powder-pink);
    color: var(--deep-plum);
    font-weight: 600;
    font-style: italic;
}

/* Article Section */
.article-section {
    padding: 8rem 0;
    background: var(--rich-purple);
    position: relative;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(31, 27, 36, 0.9);
    border: 2px solid var(--powder-pink);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--elegant-shadow);
}

.article-content h2 {
    color: var(--powder-pink);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--pearl-white);
    font-weight: 300;
}

/* Elegance Section */
.elegance-section {
    padding: 8rem 0;
    background: var(--velvet-gradient);
}

.elegance-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: var(--powder-pink);
}

.elegance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.elegance-card {
    background: rgba(42, 26, 46, 0.8);
    border: 1px solid var(--rich-purple);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
}

.elegance-card:hover {
    transform: translateY(-10px);
    border-color: var(--powder-pink);
    box-shadow: var(--pearl-glow);
}

.elegance-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    animation: softFloat 5s ease-in-out infinite;
}

.elegance-card h3 {
    color: var(--powder-pink);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.elegance-card p {
    color: var(--pearl-white);
    line-height: 1.8;
    font-weight: 300;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4A4A4A 0%, #3A3A3A 100%);
    color: var(--white);
}

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

.disclaimer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    width: 100%;
}

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

.disclaimer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #FFFFFF;
    filter: brightness(0) invert(1) !important;
}

.logo-group a {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.logo-group a:hover {
    transform: scale(1.05) translateY(-2px);
}

.disclaimer-logo:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: #F0F0F0;
}

.age-badge {
    background: #000000;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    text-align: center;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFFFFF;
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-text * {
    color: #FFFFFF !important;
}

.disclaimer-text a {
    color: #FFFFFF !important;
    text-decoration: underline;
    font-weight: 500;
}

.disclaimer-text a:hover {
    color: #F0F0F0 !important;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Footer */
.main-footer {
    background: var(--charcoal);
    padding: 3rem 0;
    border-top: 2px solid var(--powder-pink);
}

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

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

.footer-nav a {
    color: var(--pearl-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--powder-pink);
    transform: translateY(-2px);
}

.footer-text {
    color: #FFFFFF;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 300;
}

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

.popup-content {
    background: var(--deep-plum);
    border: 2px solid var(--powder-pink);
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: var(--elegant-shadow);
    animation: gracefulRise 0.6s ease-out;
}

.popup-header h2 {
    color: var(--powder-pink);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.popup-body p {
    color: var(--pearl-white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.popup-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(42, 26, 46, 0.95);
    border: 2px solid var(--powder-pink);
    border-radius: 25px;
    padding: 2rem;
    max-width: 450px;
    z-index: 1800;
    backdrop-filter: blur(20px);
    box-shadow: var(--elegant-shadow);
}

.cookie-content p {
    color: var(--pearl-white);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cookie-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 899px) {
    .burger {
        display: flex !important;
        justify-self: end;
        margin-right: 1rem;
        z-index: 1600;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 12rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .draw-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .elegance-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-text {
        font-size: 1rem;
        color: #FFFFFF !important;
        background: rgba(0, 0, 0, 0.7);
        padding: 1rem;
        max-width: 100%;
    }
    
    .disclaimer-text * {
        color: #FFFFFF !important;
    }
    
    .disclaimer-text a {
        font-size: 1rem;
        padding: 2px 4px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.1);
        color: #FFFFFF !important;
    }
    
    .logo-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .disclaimer-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .disclaimer-logo {
        height: 70px;
        padding: 0.8rem;
        min-width: 80px;
        border: 2px solid #FFFFFF !important;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-banner {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .popup-content {
        padding: 2.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .draw-card {
        padding: 2rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .elegance-card {
        padding: 2.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header, .mobile-nav, .cookie-banner, .popup-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        padding-top: 2rem;
    }
}
