@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-background-color: #231942;
    --secondary-background-color: #44327c;
    --black-background-color: #0e091dcc;
    --font-main-color: #FFFFFF;
    --accent-color: #44327c;
    --primary: #231942;
    --primary-light: #44327c;
    --primary-dark: #1a1232;
    --accent-purple: #6c5ce7;
    --accent-pink: #fd79a8;
    --accent-orange: #fdcb6e;
    --accent-blue: #74b9ff;
    --accent-green: #00b894;
    --accent-gold: #f39c12;
    
    /* Updated dark theme colors */
    --white: #ffffff;
    --light-gray: #2a2a3a;
    --medium-gray: #b8b8c8;
    --dark-gray: #1a1a2e;
    --darker-gray: #16213e;
    --surface: #1e1e2e;
    --surface-light: #2a2a3a;
    --surface-lighter: #3a3a4a;
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #8888aa;
    --text-light: #b8b8c8;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    --gradient-business: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    --gradient-premium: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-gray) 0%, var(--surface) 100%);
        /* Cosmic gradients */
    --gradient-cosmic: linear-gradient(135deg, #0f0f23 0%, #2d1b69 50%, #1a1a2e 100%);
    --gradient-nebula: linear-gradient(135deg, #16213e 0%, #44327c 30%, #6c5ce7 70%, #fd79a8 100%);
    --gradient-galaxy: linear-gradient(135deg, #0e0e17 0%, #231942 25%, #44327c 75%, #74b9ff 100%);
    --gradient-starfield: linear-gradient(45deg, #1a1a2e 0%, #16213e 25%, #0e091d 50%, #231942 100%);
    
    /* Neon gradients */
    --gradient-neon-purple: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
    --gradient-neon-cyan: linear-gradient(135deg, #00cec9 0%, #74b9ff 50%, #6c5ce7 100%);
    --gradient-neon-pink: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 50%, #e17055 100%);
    --gradient-neon-green: linear-gradient(135deg, #00b894 0%, #55efc4 50%, #74b9ff 100%);
    --gradient-neon-orange: linear-gradient(135deg, #fdcb6e 0%, #fd79a8 50%, #6c5ce7 100%);
    
    /* Gaming themed gradients */
    --gradient-retro-wave: linear-gradient(135deg, #ff006e 0%, #8338ec 30%, #3a86ff  70%, #06ffa5 100%);
    --gradient-cyber-punk: linear-gradient(135deg, #ff0080 0%, #7928ca 50%, #ff006e 100%);
    --gradient-matrix: linear-gradient(135deg, #00ff41 0%, #00b894 50%, #231942 100%);
    --gradient-synthwave: linear-gradient(135deg, #ff006e 0%, #fb8500 25%, #8338ec 75%, #3a86ff 100%);
    
    /* VR/AR themed gradients */
    --gradient-virtual: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #fd79a8 100%);
    --gradient-hologram: linear-gradient(135deg, #00d2ff 0%, #928dab 25%, #fd79a8 75%, #fdcb6e 100%);
    --gradient-digital: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #6c5ce7 100%);
    
    /* Space exploration gradients */
    --gradient-deep-space: linear-gradient(135deg, #000428 0%, #004e92 100%);
    --gradient-mars: linear-gradient(135deg, #ff512f 0%, #dd2476 50%, #231942 100%);
    --gradient-aurora: linear-gradient(135deg, #00c9ff 0%, #92fe9d 25%, #fd79a8 75%, #6c5ce7 100%);
    --gradient-plasma: linear-gradient(135deg, #ff0099 0%, #493240 50%, #00d4ff 100%);
    
    /* Multi-color cosmic gradients */
    --gradient-rainbow-space: linear-gradient(135deg, 
        #ff006e 0%, 
        #8338ec 16%, 
        #3a86ff 32%, 
        #06ffa5 48%, 
        #ffbe0b 64%, 
        #fb8500 80%, 
        #ff006e 100%);
    
    --gradient-gaming-spectrum: linear-gradient(135deg,
        #6c5ce7 0%,
        #74b9ff 20%,
        #00b894 40%,
        #fdcb6e 60%,
        #fd79a8 80%,
        #6c5ce7 100%);
    
    /* Radial gradients for special effects */
    --gradient-cosmic-radial: radial-gradient(circle at 30% 70%, #fd79a8 0%, #6c5ce7 50%, #231942 100%);
    --gradient-neon-glow: radial-gradient(circle at center, #6c5ce7 0%, rgba(108, 92, 231, 0.3) 50%, transparent 100%);
    
    /* Animated-style gradients (great for hover effects) */
    --gradient-energy: linear-gradient(135deg, #ff0080 0%, #7928ca 25%, #ff006e 50%, #8338ec 75%, #3a86ff 100%);
    --gradient-laser: linear-gradient(90deg, #00ff41 0%, #00d2ff 50%, #ff0080 100%);
    --gradient-quantum: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-premium: 0 20px 50px rgba(243, 156, 18, 0.3);
    
    --border-dark: #3a3a4a;
    --border-light: #4a4a5a;
    --border-color: #3a3a4a;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-gray);
}

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

img {
    height: auto;
    max-width: 100%;
}

/* Loading states */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Navigation */
.navbar {
    background-color: var(--primary-background-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

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

.nav-logo h2 {
    color: var(--font-main-color);
    font-weight: 700;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--font-main-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-purple);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--font-main-color);
    color: var(--font-main-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Mobile menu button - hidden by default */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--font-main-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu animations */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer */
.footer {
    background-color: var(--primary-background-color);
    color: var(--font-main-color);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--accent-purple);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent-purple);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--accent-purple);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--accent-purple);
    transform: translateX(3px);
}

.coming-soon {
    background: var(--gradient-accent);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.footer-right {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    height: fit-content;
}

.footer-contact h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-premium);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
    font-size: 0.95rem;
}

.contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.1rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-purple);
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--primary-background-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-strong);
        border-left: 1px solid var(--border-dark);
    }
    
    .nav-menu.mobile-active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-dark);
        font-size: 1.1rem;
    }
    
    .language-switcher {
        margin-top: 1rem;
        justify-content: flex-start;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid var(--border-dark);
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .nav-menu.mobile-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-menu.mobile-active {
        z-index: 999;
    }

    .btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }

    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center; /* Center everything on mobile */
    }
    
    .footer-left {
        order: 1; /* Keep footer-left first */
    }
    
    .footer-right {
        order: 2; /* Footer-right comes second */
    }
    
    /* Center the logo and tagline */
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    /* Center social media icons */
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Center the links sections */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Center section headers */
    .footer-section h4 {
        text-align: center;
        position: relative;
    }
    
    /* Center the underline for headers */
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Center the lists */
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    /* Center contact section */
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact h4 {
        text-align: center;
    }
    
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Center contact items */
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Center footer bottom content */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        width: 85%;
        max-width: 250px;
        padding: 5rem 1.5rem 2rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    /* Footer adjustments */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-right {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Ensure proper spacing for mobile */
    .footer-section {
        margin-bottom: 1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 6rem 0 4rem;
    background: var(--surface);
    min-height: calc(100vh - 80px);
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.privacy-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-nav {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-soft);
}

.privacy-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.privacy-nav li {
    margin: 0;
}

.privacy-nav a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.privacy-nav a:hover {
    background: var(--accent-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.privacy-section {
    background: var(--surface-light);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-medium);
}

.privacy-section h2 {
    color: var(--accent-purple);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-purple);
}

.privacy-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-section ul {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-section a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.subsection {
    margin-bottom: 2.5rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 4rem 0 2rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .privacy-nav {
        padding: 1rem;
    }
    
    .privacy-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .privacy-nav a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 1.5rem 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(35, 25, 66, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--accent-purple);
    z-index: 10000;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    animation: slideUpIn 0.4s ease-out;
}

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-text {
    flex: 1;
    color: var(--text-secondary);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-buttons .btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.cookie-buttons .btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-light);
}

.cookie-buttons .btn-secondary:hover {
    background: var(--surface-light);
    color: var(--text-primary);
    border-color: var(--accent-purple);
}

/* Cookie notification styles */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

.cookie-notification-success {
    background: var(--accent-green);
    color: white;
}

.cookie-notification-info {
    background: var(--accent-blue);
    color: white;
}

.cookie-notification-content {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-notification-content button {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    transition: opacity 0.3s ease;
}

.cookie-notification-content button:hover {
    opacity: 0.7;
}

/* Responsive design for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons .btn {
        font-size: 13px;
        padding: 9px 16px;
    }
}

/* Cookie Preference Management Section */
.cookie-preference-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--surface-light);
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.cookie-preference-section h4 {
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cookie-preference-section p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.cookie-preference-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cookie-preference-section .btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.cookie-preference-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cookie-status-display {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cookie-status-accepted {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cookie-status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cookie-status-none {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

@media (max-width: 768px) {
    .cookie-preference-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .cookie-preference-section .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
