/* Aralel Color Palette - German Theme */
:root {
    --aralel-primary: #DD0000; /* German Red */
    --aralel-secondary: #FFCE00; /* German Gold */
    --aralel-accent: #C8102E; /* Darker Red */
    --aralel-dark: #000000; /* German Black */
    --aralel-light: #f8f9fa; /* Light background */
    --aralel-text: #1a1a1a; /* Text color */
    --aralel-gold-light: #FFD700; /* Lighter gold for accents */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--aralel-light);
    color: var(--aralel-text);
    line-height: 1.6;
}

/* Language Switcher */
.lang-switch a {
    font-size: 1.2rem;
    padding: 0px 4px !important;
    margin-left: 10px;
    border: none;
    text-decoration: none;
}

.lang-switch a:hover {
    transform: scale(1.2);
    display: inline-block;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--aralel-dark) 0%, #1a1a1a 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--aralel-secondary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--aralel-secondary);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(255, 206, 0, 0.3));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    background-color: var(--aralel-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--aralel-secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--aralel-secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
#hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 2rem;
}

.hero-content {
    padding: 2rem 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 500;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--aralel-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    align-self: center;
    box-shadow: 0 4px 12px rgba(221, 0, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--aralel-accent);
}

/* Apps Section */
.apps-section {
    padding: 4rem 5%;
    background-color: var(--aralel-light);
}

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

.app-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.app-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.app-icon-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bell-animation {
    width: 100%;
    height: 100%;
    color: var(--aralel-primary);
}

.bell-body {
    transform-origin: 50% 0;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.app-info {
    text-align: center;
}

.app-description {
    margin: 1rem 0;
    color: var(--aralel-text);
}

.app-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

.feature {
    background: var(--aralel-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.learn-more {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--aralel-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: var(--aralel-accent);
}

.google-play-badge {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.google-play-badge:hover {
    transform: scale(1.05);
}

/* Games Section */
.games-section {
    padding: 2rem 5%;
    background-color: #fff;
}

.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--aralel-primary), var(--aralel-accent));
}

.section-subtitle {
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.title-decoration {
    width: 40px;
    height: 40px;
    margin: 0.5rem auto;
    position: relative;
    opacity: 0.6;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--aralel-primary);
}

.title-decoration::before {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.title-decoration::after {
    width: 15px;
    height: 15px;
    background-color: var(--aralel-accent);
    border-radius: 3px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.game-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.game-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.game-info {
    padding: 0 1rem 1.5rem;
}

.game-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.release-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.release-date {
    background-color: var(--aralel-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.development-status {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background-color: #f5f5f5;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.bsky-image {
    background-image: url('images/bsky.svg');
    background-size: cover;
    background-position: center;
}

.about-image {
    height: 400px;
    background-image: url('images/team.svg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.8) 0%, rgba(30, 64, 175, 0.8) 100%);
    opacity: 0.7;
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--aralel-primary);
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    line-height: 1.5;
}

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

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--aralel-primary);
    color: white;
}

.contact-form {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--aralel-primary);
    outline: none;
}

.submit-button {
    background-color: var(--aralel-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--aralel-accent);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--aralel-dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 5% 1.5rem;
    border-top: 3px solid var(--aralel-secondary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--aralel-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--aralel-secondary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 206, 0, 0.2);
    color: #999;
}

.footer-bottom a {
    color: var(--aralel-secondary);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--aralel-gold-light);
}

/* Responsive Design */
/* Add to Home Screen Banner */
.install-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
}

.install-banner.show-banner {
    bottom: 0;
}

.install-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.install-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
}

.install-text h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--aralel-primary);
}

.install-text p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

.install-actions {
    display: flex;
    gap: 10px;
}

#install-button {
    background-color: var(--aralel-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#install-button:hover {
    background-color: var(--aralel-accent);
}

#close-install-banner {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
}

#close-install-banner:hover {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    #hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-content {
        max-width: 95%;
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .hero-content h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .hero-content p {
        font-size: clamp(1rem, 2vw, 1.1rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.75rem 5%;
    }

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

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, var(--aralel-dark) 0%, #2a2a2a 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideIn 0.3s forwards;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul.active li:nth-child(1) { animation-delay: 0.1s; }
    nav ul.active li:nth-child(2) { animation-delay: 0.15s; }
    nav ul.active li:nth-child(3) { animation-delay: 0.2s; }
    nav ul.active li:nth-child(4) { animation-delay: 0.25s; }
    nav ul.active li:nth-child(5) { animation-delay: 0.3s; }
    nav ul.active li:nth-child(6) { animation-delay: 0.35s; }

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

    nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 206, 0, 0.1);
        text-align: left;
    }

    nav ul li a:hover {
        background-color: rgba(221, 0, 0, 0.2);
        transform: translateX(5px);
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }

    /* Hero Section */
    #hero {
        min-height: 100vh;
        padding: 5rem 1rem 2rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .hero-content h2 {
        font-size: clamp(1.25rem, 4.5vw, 1.8rem);
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        line-height: 1.5;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Games Section */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* About Section */
    .about-content {
        padding: 2rem 1rem;
    }

    .flags {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .flag {
        /* font-size: 3rem; */
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    nav ul {
        width: 260px;
    }
    
    nav {
        padding: 0.5rem 3%;
    }

    .mobile_hidden {
        visibility: hidden !important;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Hero Section */
    #hero {
        min-height: 100vh;
        padding: 5rem 0.75rem 2rem;
    }

    .hero-content {
        padding: 1rem 0.75rem;
        gap: 0.875rem;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.15;
    }
    
    .hero-content h2 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
        margin-bottom: 0.5rem;
        line-height: 1.25;
    }
    
    .hero-content p {
        font-size: clamp(0.875rem, 3vw, 0.95rem);
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.75rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Apps and Games Grid */
    .apps-grid,
    .games-grid {
        grid-template-columns: 1fr;
        padding: 2rem 3%;
    }
    
    .app-card,
    .game-card {
        /* padding: 1.5rem; */
    }
    
    .app-icon {
        width: 80px;
        height: 80px;
    }
    
    .app-icon-img {
        max-width: 80px;
    }
    
    /* Contact Form */
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 3% 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .cta-button,
    .learn-more {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .google-play-badge {
        height: 35px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.cookie-consent-header h2 {
    color: var(--aralel-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cookie-consent-header p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-consent-header a {
    color: var(--aralel-primary);
    text-decoration: underline;
}

.cookie-consent-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.cookie-option {
    background: var(--aralel-light);
    border-radius: 8px;
    padding: 1rem;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-option-title {
    font-weight: 600;
    color: var(--aralel-dark);
    font-size: 0.95rem;
}

.cookie-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    background: var(--aralel-secondary);
    color: white;
}

.cookie-badge.required {
    background: var(--aralel-primary);
}

.cookie-option-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--aralel-primary);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: var(--aralel-primary);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

/* Cookie Buttons */
.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-primary {
    background: var(--aralel-primary);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--aralel-accent);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--aralel-dark);
    border: 1px solid #ddd;
}

.cookie-btn-secondary:hover {
    background: var(--aralel-light);
    border-color: var(--aralel-primary);
}

/* Footer Links */
footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 1rem 1.5rem;
    }

    .cookie-consent-options {
        grid-template-columns: 1fr;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-header h2 {
        font-size: 1.2rem;
    }

    .cookie-consent-header p {
        font-size: 0.85rem;
    }

    .cookie-option {
        padding: 0.75rem;
    }

    .cookie-option-title {
        font-size: 0.85rem;
    }
}
