/* Royal Derby - Horse Racing Betting Simulation Styles */

:root {
    /* Horse Racing Color Palette */
    --primary-color: #2C5530; /* Deep Forest Green */
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #8B4513; /* Saddle Brown */
    --text-color: #2C3E50;
    --text-light: #7F8C8D;
    --background: #F8F9FA;
    --white: #FFFFFF;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    
    /* Racing Theme Colors */
    --racing-green: #228B22;
    --racing-gold: #FFD700;
    --racing-brown: #A0522D;
    --racing-cream: #FFF8DC;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    --button-gradient: linear-gradient(45deg, var(--secondary-color) 0%, #B8860B 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.free-badge {
    background: var(--danger);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
    min-width: 60px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.lang-text {
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: var(--hero-gradient), url('../images/horse-racing-preview.png');
    background-attachment: scroll;
    background-size: cover, cover;
    background-position: center, center;
    background-blend-mode: overlay;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.no-money-tag,
.free-tag {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.no-money-tag {
    background: var(--danger);
    color: var(--white);
}

.free-tag {
    background: var(--success);
    color: var(--white);
}

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

/* Page Hero */
.page-hero {
    background: var(--hero-gradient);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--button-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Age verification popup specific buttons */
.popup-content .btn-secondary {
    background: var(--danger);
    color: var(--white);
    border: 2px solid var(--danger);
    font-weight: 600;
}

.popup-content .btn-secondary:hover {
    background: #C0392B;
    color: var(--white);
    border-color: #C0392B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: var(--white);
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-gradient);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.game-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: var(--racing-cream);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.game-disclaimer {
    background: var(--danger);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.game-preview {
    text-align: center;
}

.game-preview img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.play-btn {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--racing-cream);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Account Dashboard */
.account-dashboard {
    padding: 40px 0;
}

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

.dashboard-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.balance-display {
    text-align: center;
    margin: 1.5rem 0;
}

.balance-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.balance-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.balance-note {
    color: var(--danger);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--racing-cream);
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.activity-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* Account Settings */
.account-settings {
    margin-top: 3rem;
}

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

.setting-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 1rem 0;
}

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

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

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

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

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Content Sections */
.about-content,
.responsible-content,
.privacy-content {
    padding: 40px 0;
}

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

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-section h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
}

.content-section ul {
    padding-left: 1.5rem;
}

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

/* Special Sections */
.highlight-section {
    background: var(--racing-cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.warning-section {
    background: #FFF5F5;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--danger);
}

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

.clarification-item {
    padding: 1.5rem;
    border-radius: 10px;
}

.clarification-item.safe {
    background: #F0FFF4;
    border: 2px solid var(--success);
}

.clarification-item.warning {
    background: #FFF5F5;
    border: 2px solid var(--danger);
}

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

.principle-card,
.tip-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.principle-card h4,
.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.safety-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.safety-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.warning-signs,
.help-resources {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--racing-cream);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.help-link:hover {
    background: #F0F0F0;
}

.help-link img {
    width: 40px;
    height: 40px;
}

.policy-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.important-notice {
    background: var(--danger);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: var(--racing-cream);
}

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

.disclaimer-content h3 {
    color: var(--danger);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.disclaimer-content ul {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.disclaimer-box {
    background: var(--white);
    border: 3px solid var(--danger);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.disclaimer-box h3 {
    color: var(--danger);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-badge {
    background: var(--danger);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.compliance-logos {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/* Age Restriction Badge */
.age-restriction-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-18-icon {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    padding: 12px 16px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    text-align: center;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.age-18-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.age-18-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.compliance-logos a {
    display: inline-block;
    text-decoration: none;
}

.compliance-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.compliance-logo:hover {
    background: rgba(255, 255, 255, 1);
    filter: brightness(1.3) contrast(1.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 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: 10000;
}

.popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.popup-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.popup-buttons .btn-primary,
.popup-buttons .btn-secondary {
    min-width: 150px;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 350px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.cookie-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 1rem 0;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .header-controls {
        gap: 0.75rem;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        background: var(--hero-gradient), url('../images/horse-racing-mobile.png');
        background-size: cover, cover;
        background-position: center, center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .clarification-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .compliance-logos {
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .age-18-icon {
        min-width: 50px;
        min-height: 50px;
        font-size: 1rem;
        padding: 10px 12px;
    }
    
    .compliance-logo {
        width: 90px;
        height: 55px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .compliance-logos {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .age-18-icon {
        min-width: 45px;
        min-height: 45px;
        font-size: 0.9rem;
    }
    
    .compliance-logo {
        width: 80px;
        height: 50px;
    }
    
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        gap: 5px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .free-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popup-buttons .btn-primary,
    .popup-buttons .btn-secondary {
        width: 100%;
        min-width: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .awareness-content {
        grid-template-columns: 1fr;
    }
}
