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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 25%, #FFD23F 50%, #FF6B35 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(247, 147, 30, 0.1) 0%, transparent 40%);
    background-size: 150px 150px, 200px 200px, 100px 100px;
    animation: fiestaPattern 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes fiestaPattern {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 150px 150px, -200px -200px, 100px 100px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid #E74C3C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E74C3C, #F39C12, #27AE60, #3498DB, #9B59B6, #E74C3C);
    animation: rainbowGlow 3s ease-in-out infinite alternate;
}

@keyframes rainbowGlow {
    from { 
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
        filter: brightness(1);
    }
    to { 
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
        filter: brightness(1.2);
    }
}

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

.nav-logo h1 {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(231, 76, 60, 0.8),
        0 0 20px rgba(243, 156, 18, 0.6);
    animation: fiestaGlow 2s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
}

@keyframes fiestaGlow {
    from {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(231, 76, 60, 0.8),
            0 0 20px rgba(243, 156, 18, 0.6);
    }
    to {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 15px rgba(231, 76, 60, 1),
            0 0 25px rgba(243, 156, 18, 0.8),
            0 0 35px rgba(39, 174, 96, 0.6);
    }
}

.logo-tagline {
    font-size: 0.8rem;
    color: #FFEB3B;
    font-weight: 600;
    display: block;
    margin-top: -5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    white-space: nowrap;
    position: relative;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(243, 156, 18, 0.3));
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #FFEB3B;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #2C1810;
    text-shadow: none;
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #FFEB3B, #FFC107);
}

.nav-link:hover::before {
    opacity: 1;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(231, 76, 60, 0.3);
    border: 2px solid #FFEB3B;
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(10px);
    z-index: 1600;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #FFEB3B;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
}

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

.fiesta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.papel-picado {
    position: absolute;
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #E74C3C, #F39C12);
    border-radius: 0 0 50% 50%;
    animation: papelWave 4s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.papel-picado::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #8B4513;
}

.papel-picado-1 {
    top: 10%;
    left: 10%;
    background: linear-gradient(45deg, #E74C3C, #C0392B);
    animation-delay: 0s;
}

.papel-picado-2 {
    top: 15%;
    right: 15%;
    background: linear-gradient(45deg, #F39C12, #E67E22);
    animation-delay: 1s;
}

.papel-picado-3 {
    top: 25%;
    left: 70%;
    background: linear-gradient(45deg, #27AE60, #2ECC71);
    animation-delay: 2s;
}

.papel-picado-4 {
    top: 35%;
    left: 20%;
    background: linear-gradient(45deg, #3498DB, #5DADE2);
    animation-delay: 3s;
}

@keyframes papelWave {
    0%, 100% {
        transform: rotateZ(0deg) translateY(0px);
    }
    25% {
        transform: rotateZ(5deg) translateY(-10px);
    }
    75% {
        transform: rotateZ(-5deg) translateY(-5px);
    }
}

.carnival-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.maracas {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #F39C12, #E67E22);
    border-radius: 50% 50% 20% 20%;
    animation: maracasShake 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

.maracas::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: #8B4513;
    border-radius: 2px;
}

.sombrero {
    position: absolute;
    top: 30%;
    left: 8%;
    width: 60px;
    height: 25px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    animation: sombreroFloat 5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.sombrero::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50% 50% 0 0;
}

.guitar {
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 20px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 40% 40% 10% 10%;
    animation: guitarStrum 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.5);
}

.guitar::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #654321;
    border-radius: 50%;
}

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

@keyframes sombreroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes guitarStrum {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(231, 76, 60, 0.8),
        0 0 25px rgba(243, 156, 18, 0.6),
        0 0 35px rgba(39, 174, 96, 0.4);
    animation: carnavalGlow 3s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

@keyframes carnavalGlow {
    from {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(231, 76, 60, 0.8),
            0 0 25px rgba(243, 156, 18, 0.6),
            0 0 35px rgba(39, 174, 96, 0.4);
    }
    to {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(231, 76, 60, 1),
            0 0 30px rgba(243, 156, 18, 0.8),
            0 0 40px rgba(39, 174, 96, 0.6),
            0 0 50px rgba(52, 152, 219, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
}

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

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #E74C3C;
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    background: #E74C3C;
    animation-delay: 0s;
    animation-duration: 3s;
}

.confetti:nth-child(2) {
    left: 30%;
    background: #F39C12;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.confetti:nth-child(3) {
    left: 50%;
    background: #27AE60;
    animation-delay: 1s;
    animation-duration: 4s;
}

.confetti:nth-child(4) {
    left: 70%;
    background: #3498DB;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.confetti:nth-child(5) {
    left: 90%;
    background: #9B59B6;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: 3px solid;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: #FFFFFF;
    border-color: #FFEB3B;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #C0392B, #A93226);
    border-color: #FFC107;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.9), rgba(230, 126, 34, 0.9));
    color: #FFFFFF;
    border-color: #E74C3C;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(230, 126, 34, 1), rgba(211, 84, 0, 1));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
    border-color: #C0392B;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Games Section */
.games-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    position: relative;
    z-index: 2;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(39, 174, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #E74C3C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(231, 76, 60, 0.6);
    animation: titlePulse 2s ease-in-out infinite alternate;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
}

@keyframes titlePulse {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(231, 76, 60, 0.6);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(231, 76, 60, 0.9), 0 0 30px rgba(243, 156, 18, 0.5);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #2C1810;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    font-weight: 500;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 235, 59, 0.1) 100%);
    border: 3px solid #E74C3C;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.3);
    border-color: #F39C12;
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.1) saturate(1.2);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
    filter: brightness(1.2) saturate(1.3);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.9), rgba(243, 156, 18, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 235, 59, 0.95));
    color: #E74C3C;
    padding: 1rem 2rem;
    border: 3px solid #E74C3C;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: #FFFFFF;
    transform: scale(1.05);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    z-index: 1;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E74C3C;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.game-info p {
    color: #2C1810;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Rating System */
.game-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-label {
    font-size: 0.9rem;
    color: #F39C12;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.4rem;
    color: #BDC3C7;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-shadow: 0 0 5px rgba(189, 195, 199, 0.5);
    filter: grayscale(0.5);
}

.star:hover,
.star.active {
    color: #F39C12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.8), 0 0 15px rgba(231, 76, 60, 0.6);
    transform: scale(1.2);
    filter: grayscale(0);
}

.rating-value {
    font-size: 0.9rem;
    color: #F39C12;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(243, 156, 18, 0.2) 100%);
    position: relative;
    z-index: 2;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(39, 174, 96, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #E74C3C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(231, 76, 60, 0.6);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #2C1810;
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 3px solid #E74C3C;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #2C1810;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    border-color: #F39C12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: #95A5A6;
    font-family: 'Arial', sans-serif;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.9);
    color: #FFFFFF;
    border: 3px solid #27AE60;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.9);
    color: #FFFFFF;
    border: 3px solid #E74C3C;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C1810 0%, #34495E 100%);
    padding: 4rem 0 2rem;
    border-top: 4px solid #E74C3C;
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E74C3C, #F39C12, #27AE60, #3498DB, #9B59B6, #E74C3C);
    animation: rainbowBorder 4s ease-in-out infinite alternate;
}

@keyframes rainbowBorder {
    from {
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    }
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFEB3B;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section p,
.footer-section li {
    color: #FFFFFF;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-section ul li a:hover {
    color: #FFEB3B;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(231, 76, 60, 0.3);
    color: #BDC3C7;
    font-family: 'Arial', sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.98) 0%, rgba(243, 156, 18, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    z-index: 2000;
    border: 3px solid #FFEB3B;
    border-radius: 20px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    color: #FFFFFF;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 15px;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #FFEB3B, #FFC107);
    color: #2C1810;
    border-color: #E74C3C;
}

.cookie-buttons .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(189, 195, 199, 0.9));
    border: 3px solid #E74C3C;
    color: #2C1810;
}

.cookie-link {
    color: #FFEB3B;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.cookie-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.8);
}

/* Policy Pages */
.policy-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    position: relative;
    z-index: 2;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 235, 59, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #E74C3C;
}

.policy-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #E74C3C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(231, 76, 60, 0.6);
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
}

.policy-date {
    text-align: center;
    color: #F39C12;
    margin-bottom: 3rem;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.policy-text h2 {
    color: #E74C3C;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
    padding-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.policy-text h3 {
    color: #F39C12;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-family: 'Arial', sans-serif;
}

.policy-text p {
    color: #2C1810;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.policy-text ul {
    color: #2C1810;
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.policy-text li {
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.2), rgba(243, 156, 18, 0.2));
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.3);
    text-align: center;
    font-weight: 600;
    color: #E74C3C;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 901px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-info {
        padding: 1.25rem;
    }
}

@media (max-width: 1100px) {
    .burger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.98) 0%, rgba(243, 156, 18, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1500;
        border-left: 3px solid #FFEB3B;
    }

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

    .nav-menu a {
        color: #FFFFFF !important;
        display: block;
        padding: 1rem 0.5rem;
        border-bottom: 1px solid rgba(255, 235, 59, 0.2);
        z-index: 10;
        font-size: 1.2rem;
        text-align: center;
        width: 80%;
    }

    .nav-menu a:hover {
        background: rgba(255, 235, 59, 0.1);
        color: #FFEB3B !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

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

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

    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(120%);
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-top: 12rem;
    }

    .container {
        padding: 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card {
        margin: 0 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 1rem;
        margin: 0;
    }

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

    .policy-text h2 {
        font-size: 1.5rem;
    }

    .policy-text h3 {
        font-size: 1.2rem;
    }
}
