.feature-icon.no-penalty::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 9h7V2l-2.35 2.35z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 9h7V2l-2.35 2.35z'/%3E%3C/svg%3E");
}

.feature-card h3 {
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237b68ee' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9c27b0 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--light-bg);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

.policy-links {
    display: flex;
    gap: 20px;
}

.policy-links a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.policy-links a:hover {
    color: white;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: var(--transition);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .btn {
        padding: 10px 20px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .game-preview {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tube {
        margin-bottom: 15px;
    }
}

/* Global Styles */
:root {
    --primary-color: #6200ea;
    --secondary-color: #03dac6;
    --accent-color: #ff4081;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --dark-bg: #121212;
    --container-width: 1200px;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    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(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #7c4dff;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
}

.btn-secondary:hover {
    background-color: #00bfa5;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Header Styles */
.main_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    margin: 0;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ff 100%);
    min-height: 90vh;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Game Preview Animation */
.game-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    perspective: 1000px;
}

.tube {
    width: 60px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px 10px 20px 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 2px;
    animation: float 3s infinite ease-in-out;
}

.ball.red {
    background-color: #f44336;
    animation-delay: 0s;
}

.ball.blue {
    background-color: #2196f3;
    animation-delay: 0.2s;
}

.ball.green {
    background-color: #4caf50;
    animation-delay: 0.4s;
}

.ball.yellow {
    background-color: #ffeb3b;
    animation-delay: 0.6s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Game Description */
.game-description {
    background-color: white;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

/* How to Play Section */
.how-to-play {
    background-color: var(--light-bg);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Features Section */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-icon.simple::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-5-9h10v2H7z'/%3E%3C/svg%3E");
}

.feature-icon.graphics::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-14v7h2V6h-2z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-14v7h2V6h-2z'/%3E%3C/svg%3E");
}

.feature-icon.colors::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3C/svg%3E");
}

.feature-icon.levels::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm16-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H8V4h12v12z'/%3E%3C/svg%3E");
}

.feature-icon.tubes::before {
    background-color: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

.navbar-brand img {
    height: 40px;
}

/* Sección 1: Niveles Interactivos */
.niveles-interactivos {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.niveles-interactivos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0%, rgba(233, 226, 226, 0.28) 50.3%, rgba(222, 235, 255, 0.4) 100.2%);
    z-index: 0;
}

.niveles-interactivos .container {
    position: relative;
    z-index: 1;
}

.nivel-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nivel-tab {
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.nivel-tab-active {
    background-color: #6200ea;
    color: white;
    box-shadow: 0 4px 10px rgba(98, 0, 234, 0.3);
}

.nivel-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.nivel-panel-active {
    display: flex;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nivel-descripcion {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.nivel-descripcion h3 {
    color: #6200ea;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.nivel-descripcion ul {
    list-style-type: none;
    padding-left: 5px;
    margin-top: 20px;
}

.nivel-descripcion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.nivel-descripcion li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #6200ea;
    border-radius: 50%;
    opacity: 0.8;
}

.nivel-descripcion li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 9px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.nivel-preview {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.nivel-preview-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
}

.nivel-preview-grid-small {
    gap: 10px;
}

.nivel-preview-grid-tiny {
    gap: 5px;
}

.tubo-container {
    perspective: 600px;
}

.tubo-container.mini {
    transform: scale(0.7);
}

.tubo {
    width: 55px;
    height: 220px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 30px 30px 20px 20px;
    box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 10px;
    transform-style: preserve-3d;
    transform: rotateX(10deg);
    overflow: hidden;
}

.tubo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.tubo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}

.bola {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.bola.mini {
    width: 40px;
    height: 40px;
}

.bola::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.bola.mini::after {
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
}

.bola.roja { background: linear-gradient(135deg, #f44336, #b71c1c); }
.bola.azul { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.bola.verde { background: linear-gradient(135deg, #4caf50, #1b5e20); }
.bola.amarilla { background: linear-gradient(135deg, #ffeb3b, #f57f17); }
.bola.purpura { background: linear-gradient(135deg, #9c27b0, #4a148c); }
.bola.naranja { background: linear-gradient(135deg, #ff9800, #e65100); }
.bola.celeste { background: linear-gradient(135deg, #00bcd4, #006064); }
.bola.rosa { background: linear-gradient(135deg, #e91e63, #880e4f); }
.bola.marron { background: linear-gradient(135deg, #795548, #3e2723); }
.bola.gris { background: linear-gradient(135deg, #9e9e9e, #424242); }

/* Sección 2: Descarga CTA con animación */
.download-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6200ea 0%, #b388ff 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.download-cta::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -50%;
    right: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
    padding-right: 30px;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
}

.check::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #6200ea;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.download-button-container {
    display: flex;
    justify-content: flex-start;
}

.download-button {
    display: flex;
    align-items: center;
    background-color: black;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.google-play-icon {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    position: relative;
    background-color: white;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.google-play-icon::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    background-color: black;
    clip-path: polygon(0 0, 75% 50%, 0 100%);
}

.button-text {
    display: flex;
    flex-direction: column;
}

.get-it {
    font-size: 0.7rem;
    opacity: 0.8;
}

.store-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.cta-animation {
    flex: 1;
    position: relative;
}

.animated-tubes {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.tube-animation {
    position: absolute;
}

.tube-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tube-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tube-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sorting-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
    }

    .cta-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .features-list li {
        justify-content: center;
    }

    .download-button-container {
        justify-content: center;
    }

    .nivel-panel-active {
        flex-direction: column;
    }

    .nivel-descripcion, .nivel-preview {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nivel-tabs {
        flex-wrap: wrap;
        border-radius: 10px;
    }

}

/* Sección de Contacto Estilizada */
.contacto-seccion {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contacto-seccion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.contacto-seccion::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.contacto-seccion .container {
    position: relative;
    z-index: 1;
}

.contacto-wrapper {
    display: flex;
    margin-top: 50px;
    gap: 50px;
    flex-wrap: wrap;
}

.contacto-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(98, 0, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.info-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #6200ea;
}

.info-icon.location::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.info-icon.phone::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.info-icon.email::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.info-card h3 {
    color: #6200ea;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    margin: 0;
}

.info-texto {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-texto h3 {
    color: #6200ea;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-texto p {
    color: #666;
    line-height: 1.7;
}

.contacto-form-container {
    flex: 1;
    min-width: 300px;
}

.contacto-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contacto-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6200ea, #b388ff);
}

.contacto-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(98, 0, 234, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    color: #6200ea;
    font-size: 1.8rem;
    margin: 0;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    color: #333;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background-color: transparent;
    transition: border-color 0.3s ease;
    z-index: 1;
    position: relative;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 0;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -10px;
    font-size: 14px;
    color: #6200ea;
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6200ea;
    transition: width 0.3s ease;
}

.input-group input:focus ~ .input-decoration,
.input-group select:focus ~ .input-decoration,
.input-group textarea:focus ~ .input-decoration {
    width: 100%;
}

.select-group {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    pointer-events: none;
    transition: border-color 0.3s ease;
    z-index: 1;
}

.select-group select:focus ~ .select-arrow {
    border-color: #6200ea;
}

.submit-button {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(90deg, #6200ea, #b388ff);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.4);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: 10px;
    z-index: 1;
}

.button-icon::before,
.button-icon::after {
    content: '';
    position: absolute;
    background-color: white;
}

.button-icon::before {
    width: 12px;
    height: 2px;
    top: 9px;
    right: 0;
}

.button-icon::after {
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    top: 7px;
    right: 0;
}

/* Sección de Capturas del Juego */
.capturas-juego {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.capturas-juego::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(98, 0, 234, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.capturas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.captura-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.captura-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.captura-screen {
    background-color: #f8f8f8;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.captura-header {
    background-color: #e0e0e0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.captura-indicators {
    display: flex;
    gap: 5px;
    margin-right: 15px;
}

.captura-indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
}

.captura-indicators span:nth-child(1) {
    background-color: #ff6b6b;
}

.captura-indicators span:nth-child(2) {
    background-color: #ffd93d;
}

.captura-indicators span:nth-child(3) {
    background-color: #6bcb77;
}

.captura-title {
    font-size: 14px;
    color: #666;
    flex: 1;
    text-align: center;
}

.captura-content {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8eaff 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 300px;
}

.nivel-facil {
    padding: 30px 20px;
}

.nivel-medio {
    padding: 20px 10px;
}

.nivel-dificil {
    padding: 15px 5px;
}

.game-tube-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 600px;
}

.game-tube-container.mini {
    transform: scale(0.6);
}

.game-tube {
    width: 40px;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 20px 20px 15px 15px;
    box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 10px;
    transform-style: preserve-3d;
    transform: rotateX(10deg);
    overflow: hidden;
}

.tube-stand {
    width: 50px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 5px;
}

.tube-stand.mini {
    width: 40px;
    height: 8px;
}

.game-tube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.game-ball {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.game-ball.mini {
    width: 30px;
    height: 30px;
}

.game-ball::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.game-ball.mini::after {
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
}

.game-ball.roja { background: linear-gradient(135deg, #f44336, #b71c1c); }
.game-ball.azul { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.game-ball.verde { background: linear-gradient(135deg, #4caf50, #1b5e20); }
.game-ball.amarilla { background: linear-gradient(135deg, #ffeb3b, #f57f17); }
.game-ball.purpura { background: linear-gradient(135deg, #9c27b0, #4a148c); }
.game-ball.naranja { background: linear-gradient(135deg, #ff9800, #e65100); }
.game-ball.celeste { background: linear-gradient(135deg, #00bcd4, #006064); }
.game-ball.rosa { background: linear-gradient(135deg, #e91e63, #880e4f); }

.empty-tube {
    background: rgba(255, 255, 255, 0.5);
}

.captura-footer {
    background-color: #f0f0f0;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.game-controls {
    display: flex;
    gap: 30px;
}

.control-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.control-button::before,
.control-button::after {
    content: '';
    position: absolute;
    background-color: #666;
}

.control-button.restart::before {
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    border-right-color: transparent;
    transform: rotate(-45deg);
}

.control-button.hint::before {
    width: 6px;
    height: 6px;
    background-color: #666;
    border-radius: 50%;
    top: 12px;
}

.control-button.hint::after {
    width: 6px;
    height: 12px;
    bottom: 10px;
    border-radius: 3px;
}

.control-button.menu::before,
.control-button.menu::after {
    width: 20px;
    height: 2px;
    box-shadow: 0 -6px 0 #666, 0 6px 0 #666;
}

.captura-info {
    padding: 25px;
}

.captura-info h3 {
    color: #6200ea;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.captura-info p {
    color: #666;
    line-height: 1.6;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .contacto-wrapper {
        flex-direction: column;
    }

    .contacto-info,
    .contacto-form-container {
        min-width: 100%;
    }

    .capturas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .nivel-medio,
    .nivel-dificil {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .captura-content {
        padding: 15px 5px;
    }

    .game-tube-container {
        transform: scale(0.9);
    }

    .game-tube-container.mini {
        transform: scale(0.5);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.cookie-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cookie-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6200ea, #b388ff);
}

.cookie-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    position: relative;
}

.cookie-shape {
    width: 40px;
    height: 40px;
    background-color: #6200ea;
    border-radius: 50%;
    position: relative;
}

.cookie-shape::before,
.cookie-shape::after {
    content: '';
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
}

.cookie-shape::before {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 10px;
}

.cookie-shape::after {
    width: 6px;
    height: 6px;
    bottom: 12px;
    right: 12px;
}

.cookie-content p {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.cookie-button {
    background: linear-gradient(90deg, #6200ea, #b388ff);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(98, 0, 234, 0.3);
    transition: all 0.3s ease;
}

.cookie-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .cookie-content {
        padding: 20px;
    }
}

/* Estilos para la sección de Screenshots */
.screenshots-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(98, 0, 234, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 0;
}

.screenshots-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 90% 10%, rgba(98, 0, 234, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.screenshots-section .container {
    position: relative;
    z-index: 1;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.screenshot-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* Proporción de aspecto 4:3 para las imágenes */
}

.screenshot-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-item:hover .screenshot-image img {
    transform: scale(1.05);
}

.screenshot-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(98, 0, 234, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.screenshot-caption {
    padding: 25px;
}

.screenshot-caption h3 {
    color: #6200ea;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.screenshot-caption p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Variación de colores para las diferentes capturas */
.screenshot-item:nth-child(1) .screenshot-image::after {
    background: linear-gradient(to bottom, rgba(98, 0, 234, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.screenshot-item:nth-child(2) .screenshot-image::after {
    background: linear-gradient(to bottom, rgba(3, 218, 198, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.screenshot-item:nth-child(3) .screenshot-image::after {
    background: linear-gradient(to bottom, rgba(255, 64, 129, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Estilos para la falta de imágenes (placeholder) */
.screenshot-image img[src*="screenshot"] {
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

.screenshot-image img[src*="screenshot"]::before {
    content: 'Imagen del juego';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .screenshots-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .screenshots-section {
        padding: 70px 0;
    }

    .screenshots-gallery {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Modificar la sección de capturas para imágenes verticales */
.screenshot-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 160%; /* Cambiado de 75% a 160% para formato vertical */
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.screenshot-caption {
    padding: 20px;
    flex-grow: 0;
    flex-shrink: 0;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Asegurar que las imágenes se recorten correctamente para mostrar formato vertical */
.screenshot-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .screenshots-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .screenshots-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .screenshot-caption {
        padding: 15px;
    }

    .screenshot-caption h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .screenshots-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .screenshot-caption p {
        font-size: 0.9rem;
    }
}