/* ==================== SECCIÓN ACERCA DE ==================== */
.about-header-top {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #ef4444, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.about-container-main {
    max-width: 1200px;
    margin: 0 auto;
}

/* INTRO CARD */
.about-intro-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 3rem;
}

.about-icon-big {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8));
}

.about-intro-card h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.about-intro-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ABOUT SECTIONS */
.about-games-section,
.about-benefits-section,
.about-features-section {
    margin-bottom: 3rem;
}

/* GAMES GRID */
.about-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-game-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.about-game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.about-game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}

.about-game-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.about-game-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-game-benefits {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-tag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(168, 85, 247, 0.3));
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

/* BENEFITS GRID */
.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FEATURES LIST */
.about-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(10, 14, 39, 0.8);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ABOUT FOOTER */
.about-footer-card {
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.about-footer-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.about-footer-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-start-playing {
    padding: 1rem 3rem;
    border-radius: 15px;
    border: none;
    background: #fff;
    color: #3b82f6;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-start-playing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f0f9ff;
}

/* RESPONSIVE ACERCA DE */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-games-grid {
        grid-template-columns: 1fr;
    }

    .about-benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-features-list {
        grid-template-columns: 1fr;
    }

    .about-intro-card {
        padding: 2rem 1.5rem;
    }

    .about-icon-big {
        font-size: 4rem;
    }

    .about-intro-card h2 {
        font-size: 1.5rem;
    }

    .about-footer-card {
        padding: 2rem 1.5rem;
    }

    .about-footer-card h3 {
        font-size: 1.5rem;
    }

    .btn-start-playing {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-game-icon {
        font-size: 3rem;
    }

    .benefit-icon {
        font-size: 3rem;
    }

    .feature-icon {
        font-size: 2rem;
    }
}