/* ========================================
   Granitor - Retro/Vintage Style CSS
   Unique Architecture: Flexbox + Custom Properties
   ======================================== */

/* CSS Variables - Retro Color Palette */
:root {
    /* Retro Colors */
    --color-cream: #f5f0e8;
    --color-ochre: #d4a574;
    --color-olive: #8b9556;
    --color-rust: #b85c38;
    --color-sage: #a5b899;
    --color-sepia: #3d3530;
    --color-vintage-white: #faf7f2;
    --color-vintage-black: #2a2520;
    
    /* Accent Colors */
    --accent-gold: #c9a961;
    --accent-copper: #b87333;
    --accent-mint: #98d8c8;
    
    /* Semantic Colors */
    --primary-color: var(--color-ochre);
    --secondary-color: var(--color-olive);
    --accent-color: var(--accent-gold);
    --text-primary: var(--color-sepia);
    --text-secondary: #5a524c;
    --text-light: var(--color-vintage-white);
    --background-primary: var(--color-cream);
    --background-secondary: var(--color-vintage-white);
    --background-dark: var(--color-vintage-black);
    --border-color: #d4c5b0;
    
    /* Success/Danger */
    --success-color: var(--color-sage);
    --danger-color: var(--color-rust);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Layout */
    --header-height: 70px;
    --max-width: 1200px;
    --border-radius: 8px;
    
    /* Shadows - Soft Vintage */
    --shadow-sm: 0 2px 8px rgba(61, 53, 48, 0.1);
    --shadow-md: 0 4px 16px rgba(61, 53, 48, 0.15);
    --shadow-lg: 0 8px 32px rgba(61, 53, 48, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Palatino', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--spacing-sm); }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

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

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(135deg, var(--color-vintage-white) 0%, var(--color-cream) 100%);
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    letter-spacing: -0.5px;
}

.free-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.nav-link.nav-cta {
    background: var(--accent-gold);
    color: white;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.nav-link.nav-cta:hover {
    background: var(--accent-copper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-btn span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 2rem) var(--spacing-md) var(--spacing-xl);
    background-image: url('../images/hero_desktop_bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(245, 240, 232, 0.85) 0%, 
        rgba(250, 247, 242, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.hero-disclaimer {
    background: var(--danger-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-copper);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-color);
}

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

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
}

.btn-play {
    background: var(--accent-gold);
    color: white;
    width: 100%;
    margin-top: var(--spacing-sm);
}

.btn-play:hover {
    background: var(--accent-copper);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ========================================
   SECTIONS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.features-grid {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.feature-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   GAMES SECTION
   ======================================== */

.games-section {
    padding: var(--spacing-xl) 0;
    background-image: url('../images/section_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 240, 232, 0.9);
    z-index: 1;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

.games-grid {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.game-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 3px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ochre) 100%);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--accent-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.game-info {
    padding: var(--spacing-md);
}

.game-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.5;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.stars {
    color: var(--accent-gold);
    font-size: 1rem;
}

.rating-text {
    color: var(--text-secondary);
    font-weight: bold;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.testimonials-grid {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
    font-family: 'Georgia', serif;
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */

.disclaimer-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--danger-color) 0%, var(--color-rust) 100%);
    color: white;
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.disclaimer-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--spacing-lg) 0;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-info {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-lg);
}

.help-info p {
    margin-bottom: var(--spacing-xs);
}

.help-info a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-title {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.footer-subtitle {
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-note {
    background: rgba(201, 169, 97, 0.2);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: none;
    padding-left: 5px;
}

.compliance-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.compliance-logos {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.compliance-link {
    display: inline-block;
    transition: var(--transition-base);
}

.compliance-logo {
    height: 40px !important;
    width: auto !important;
    background: var(--text-light);
    padding: 8px;
    border-radius: var(--border-radius);
    opacity: 0.9;
    transition: var(--transition-base);
    border: 2px solid var(--border-color);
    object-fit: contain;
}

.compliance-link:hover .compliance-logo {
    opacity: 1;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}

.age-restriction {
    margin-top: var(--spacing-md);
}

.age-badge {
    display: inline-block;
    background: var(--danger-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-disclaimer {
    font-size: 0.8rem;
    font-style: italic;
}

/* ========================================
   POPUPS & MODALS
   ======================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 37, 32, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: var(--spacing-md);
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-gold);
}

.popup-header {
    background: linear-gradient(135deg, var(--color-ochre) 0%, var(--accent-gold) 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
}

.popup-header h2 {
    color: white;
    margin: 0;
}

.popup-body {
    padding: var(--spacing-lg);
}

.popup-body p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.important-note {
    background: var(--color-cream);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--danger-color);
}

.popup-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.popup-buttons .btn {
    flex: 1;
    min-width: 150px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-gold);
    z-index: 9998;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.cookie-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
    :root {
        --header-height: 60px;
        --spacing-xl: 3rem;
    }
    
    /* Header & Navigation */
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        border-bottom: 3px solid var(--accent-gold);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    /* Hero */
    .hero-section {
        padding-top: 100px !important;
        min-height: calc(100vh - 60px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Grids */
    .features-grid,
    .games-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card,
    .game-card,
    .testimonial-card {
        max-width: 100%;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .popup-content {
        margin: var(--spacing-sm);
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .burger-btn,
    .cookie-banner,
    .popup-overlay,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

