/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --font-default: 'Manrope', sans-serif;
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

:root {
    --color-default: #cccccc;
    --color-primary: #22f7f9;
    --color-secondary: #B3F7F9;
    --color-bg-default: #2a2a2a;
    --color-alt: #222222;
}

:root {
    scroll-behavior: smooth;
}

:root {
    --header-offset: 70px;
}

html {
    --swiper-navigation-color: #B3F7F9;
    --swiper-pagination-color: #B3F7F9;
}

body {
    font-family: var(--font-default);
    color: var(--color-default);
    background-color: var(--color-bg-default);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

    a:hover {
        color: #f85a40;
        text-decoration: none;
    }

    a.disabled {
        color: rgb(60, 100, 100, 0.8);
        pointer-events: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

    section.fullscreen {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    section.parallax {
        background-image: url('/img/starfield.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    }

    section .card {
        text-shadow: none;
    }

.sections-bg {
    background-color: #f6f6f6;
}

.section-header {
    text-align: center;
    padding-bottom: 60px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .section-header p {
        margin-bottom: 0;
        color: #6f6f6f;
    }

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card-wrapper {
}

    .card-wrapper.section-left,
    .card-wrapper.section-right {
        margin-top: 40px;
    }

    .card-wrapper .card {
        background-color: #000;
        background-size: 100% auto;
        background-position: bottom;
        background-repeat: no-repeat;
        min-height: 250px;
        position: relative;
    }

        .card-wrapper .card h2,
        .card-wrapper .card h3 {
            text-shadow: 0 0 8px #B3F7F9, 0 0 20px #2DCFD2;
        }

        .card-wrapper .card p {
            color: #B3F7F9;
            /*text-shadow: 0 0 8px #B3F7F9, 0 0 20px #2DCFD2;*/
        }

        .card-wrapper .card .card-placeholder {
            width: 100%;
            aspect-ratio: 2 / 1;
            background: transparent;
            pointer-events: none;
        }

@media screen and (max-width: 768px) {
    .section-header {
        padding-bottom: 0;
    }

    .card-wrapper .card .card-placeholder {
        visibility: collapse;
        height: 0px !important;
    }

    .card-wrapper.section-left,
    .card-wrapper.section-right {
        margin: 0.5rem;
    }

    .card-wrapper .card {
        background-color: #333 !important;
        background-blend-mode: overlay;
        align-items: center;
        min-height: 200px;
    }

        .card-wrapper .card.p-4 {
            padding: 0.5rem !important;
        }

        .card-wrapper .card.p-5 {
            padding: 0.6rem !important;
        }

        .card-wrapper .card h2,
        .card-wrapper .card h3 {
            margin-top: 1rem;
        }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: transparent;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    box-shadow: inset 0 0 3px #B3F7F9, 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
}

    .scroll-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .scroll-top:hover {
        box-shadow: inset 0 0 10px #B3F7F9, 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
        text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
        color: #fff;
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/*--------------------------------------------------------------
# Scroll next button
--------------------------------------------------------------*/
.scroll-next {
    position: fixed;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 4px !important;
    z-index: 3 !important;
    bottom: 48px;
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: pulse 2s infinite;
    box-shadow: inset 0 0 3px #B3F7F9, 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    background-color: transparent;
}

    .scroll-next span {
        position: absolute;
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        animation: bounce 1.5s infinite;
        box-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    }

    .scroll-next:hover {
        box-shadow: inset 0 0 10px #B3F7F9, 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/*@media screen and (max-width: 768px) {
    .scroll-next {
        visibility: collapse;
    }
}*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #333;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 18px solid #fff;
        border-color: var(--color-primary) transparent var(--color-primary) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1.5s linear infinite;
        animation: animate-preloader 1.5s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper-slide img.object-fit-cover {
    pointer-events: none;
}

.swiper-button-next,
.swiper-button-prev {
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    }

.swiper-pagination span:hover {
    box-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    background-color: var(--color-bg-default);
}

    .header.sticked {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 80px;
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    }

    .header.transparent {
        background-color: transparent !important;
    }

    .header .logo img {
        max-height: 40px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 24px;
        margin: 0;
        font-weight: 600;
        letter-spacing: 0.8px;
        color: #fff;
        font-family: var(--font-primary);
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
    }

        .header .logo h1 span {
            color: #f96f59;
        }

.sticked-header-offset {
    margin-top: var(--header-offset);
}

section {
    scroll-margin-top: var(--header-offset);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar .dropdown-divider {
    height: 1px;
    margin: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none !important;
    user-select: none !important;
}

@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

        .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navbar li {
            position: relative;
        }

        .navbar > ul > li {
            white-space: nowrap;
            padding: 10px 0 10px 28px;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

        .navbar > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: #fff;
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before,
        .navbar .active:before {
            visibility: visible;
            width: 100%;
        }

        .navbar a:hover:before,
        .navbar li:hover > a:before {
            box-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #fff;
        }

        .navbar a:hover,
        .navbar li:hover > a {
            text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
        }

        .navbar .dropdown ul {
            display: block;
            position: absolute;
            left: 28px;
            top: calc(100% + 30px);
            margin: 0;
            margin-top: 17px;
            padding: 10px 0;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            background: var(--color-bg-default);
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            transition: 0.3s;
            border-radius: 0px;
        }

            .navbar .dropdown ul li {
                min-width: 200px;
            }

            .navbar .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                font-weight: 400;
                color: #ffffff;
            }

                .navbar .dropdown ul a i {
                    font-size: 12px;
                }

                .navbar .dropdown ul a:hover,
                .navbar .dropdown ul .active:hover,
                .navbar .dropdown ul li:hover > a {
                    color: #ffffff;
                    text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
                }

        .navbar .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navbar .dropdown .dropdown ul {
            top: 0;
            left: calc(100% - 30px);
            visibility: hidden;
        }

        .navbar .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: 100%;
            visibility: visible;
        }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: #f85a40;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a,
        .navbar a:focus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-primary);
            font-size: 15px;
            font-weight: 600;
            color: rgb(255 255 255);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i,
            .navbar a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover,
            .navbar .active,
            .navbar .active:focus,
            .navbar li:hover > a {
                color: #fff;
            }

        .navbar .getstarted,
        .navbar .getstarted:focus {
            background: var(--color-primary);
            padding: 8px 20px;
            border-radius: 4px;
            margin: 15px;
            color: #fff;
        }

            .navbar .getstarted:hover,
            .navbar .getstarted:focus:hover {
                color: #fff;
                background: rgba(0, 131, 116, 0.8);
            }

        .navbar .dropdown ul,
        .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            transition: all 0.5s ease-in-out;
            background-color: #f85a40;
        }

        .navbar .dropdown > .dropdown-active,
        .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    .mobile-nav-show {
        color: rgba(255, 255, 255, 0.6);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            right: 0;
        }

            .mobile-nav-active .navbar:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgb(0 0 0 / 80%);
                z-index: 9996;
            }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer a {
    text-decoration: none;
    font-weight: 500;
}

    footer a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-social a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-social a:hover {
        color: #fff;
        text-shadow: 0 0 3px #B3F7F9, 0 0 6px #B3F7F9, 0 0 8px #5AE3E6, 0 0 12px #2DCFD2;
    }

.footer-disclaimer p {
    margin-bottom: 0px;
    font-size: small;
}

footer address {
    line-height: 1.4;
    color: #ccc;
}

/*--------------------------------------------------------------
# Hero section
--------------------------------------------------------------*/
#hero {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    #hero.sticked-header-offset {
        margin-top: 0;
    }

    #hero h1 {
        font-size: 5.2rem;
    }

    #hero .lead {
        font-size: 1.8rem;
    }

.hero-logo {
    top: 38% !important;
}

    .hero-logo img {
        max-width: 640px;
    }

.hero-title {
    margin-top: 180px;
}

@media screen and (max-width: 768px) {
    #hero h1 {
        font-size: 3.2rem;
    }

    #hero .lead {
        font-size: 1.8rem;
    }

    .hero-logo {
        top: 20% !important;
    }

        .hero-logo img {
            max-width: 320px;
        }

    .hero-title {
        margin-top: 60px;
    }
}

/*--------------------------------------------------------------
# MMO section
--------------------------------------------------------------*/
.section-mmo {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    .section-mmo h1 {
        font-size: 5.2rem;
    }

    .section-mmo .lead {
        font-size: 1.8rem;
    }

    .section-mmo .card img {
        max-width: 12rem;
    }

    .section-mmo .swiper-slide .container {
    }

@media screen and (max-width: 768px) {
    .section-mmo h1 {
        font-size: 3.2rem;
    }

    .section-mmo .lead {
        font-size: 1.3rem;
    }

    .section-mmo .card img {
        max-width: 8rem;
    }
}


/*--------------------------------------------------------------
# RTS section
--------------------------------------------------------------*/
.section-rts {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    .section-rts h1 {
        font-size: 5.2rem;
    }

    .section-rts .lead {
        font-size: 1.8rem;
    }

@media screen and (max-width: 768px) {
    .section-rts h1 {
        font-size: 3.2rem;
    }

    .section-rts .lead {
        font-size: 1.3rem;
    }

    .section-rts .card img {
        max-width: 8rem;
    }
}

/*--------------------------------------------------------------
# P2E section
--------------------------------------------------------------*/
.section-p2e {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    .section-p2e h1 {
        font-size: 5.2rem;
    }

    .section-p2e .lead {
        font-size: 1.8rem;
    }

@media screen and (max-width: 768px) {
    .section-p2e h1 {
        font-size: 3.2rem;
    }

    .section-p2e .lead {
        font-size: 1.3rem;
    }

    .section-p2e .card img {
        max-width: 8rem;
    }
}

/*--------------------------------------------------------------
# Tycoon section
--------------------------------------------------------------*/
.section-tycoon {
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
}

    .section-tycoon h1 {
        font-size: 5.2rem;
    }

    .section-tycoon .lead {
        font-size: 1.8rem;
    }

@media screen and (max-width: 768px) {
    .section-tycoon h1 {
        font-size: 3.2rem;
    }

    .section-tycoon .lead {
        font-size: 1.3rem;
    }

    .section-tycoon .card img {
        max-width: 8rem;
    }
}

/*--------------------------------------------------------------
# Article Page
--------------------------------------------------------------*/
.article-background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.article {
    position: relative;
    z-index: 0;
    padding: 2rem;
}

    .article h1 {
        color: white;
        text-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 60px #2DCFD2;
    }

    .article .lead {
        color: white;
        text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    }

    .article .info {
        color: var(--color-primary);
    }

        .article .info span {
            color: #0f0;
            text-shadow: 0 0 2px #B3F7F9, 0 0 4px #B3F7F9, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
        }

    .article h2 {
        color: #ddd;
        text-shadow: 0 0 2px #2b4c4d, 0 0 4px #2b4c4d, 0 0 6px #5AE3E6, 0 0 8px #2DCFD2;
    }

    .article p {
        color: #ccc;
    }

    .article strong {
        color: #fff;
    }

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.tcw-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.03);
    color: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05), inset 0 -1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(2px);
}

    .tcw-newsletter .form-control:focus {
        background-color: rgba(255, 255, 255, 0.06);
        border-color: rgba(179, 247, 249, 0.5);
        box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.4), 0 0 4px rgba(179, 247, 249, 0.2);
        outline: none;
    }

    .tcw-newsletter .form-control::placeholder {
        color: #bbb;
        opacity: 1; /* Asegura que el color se aplique completamente */
    }

/*--------------------------------------------------------------
# Timeline
--------------------------------------------------------------*/

.circle {
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 50%;
    background-color: #ED8D8D;
    color: #4D4545;
    max-height: 50px;
    z-index: 2;
}

.timeline-section.row {
    display: flex;
}

    .timeline-section.row .col-2 {
        display: inline-flex;
        align-self: stretch;
        align-items: center;
        justify-content: center;
        position: relative;
    }

        .timeline-section.row .col-2::after {
            content: '';
            position: absolute;
            border-left: 3px solid #ED8D8D;
            z-index: 1;
        }

        .timeline-section.row .col-2.bottom::after {
            height: 50%;
            left: 50%;
            top: 50%;
        }

        .timeline-section.row .col-2.full::after {
            height: 100%;
            left: 50%;
        }

        .timeline-section.row .col-2.top::after {
            height: 50%;
            left: 50%;
            top: 0;
        }

.timeline-section.justify-content-end .col-2.full::after {
    left: calc(50% - 3px);
}


.timeline div {
    padding: 0;
    height: 40px;
}

.timeline hr {
    border-top: 3px solid #ED8D8D;
    margin: 0;
    top: 17px;
    position: relative;
}

.timeline .col-2 {
    display: flex;
    overflow: hidden;
}

.timeline .corner {
    border: 3px solid #ED8D8D;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.timeline .top-right {
    left: 50%;
    top: -50%;
}

.timeline .left-bottom {
    left: -50%;
    top: calc(50% - 3px);
}

.timeline .top-left {
    left: -50%;
    top: -50%;
}

.timeline .right-bottom {
    left: 50%;
    top: calc(50% - 3px);
}

/*--------------------------------------------------------------
# Modal Overlay
--------------------------------------------------------------*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto; /* <- esto permite scroll si el contenido crece */
    padding: 2rem; /* espacio para scroll en móviles */
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    max-height: 90vh; /* <- para que no exceda la pantalla */
    overflow-y: auto; /* <- contenido scrolleable */
}

.close-button {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hidden {
    display: none;
}

/*--------------------------------------------------------------
# Clean Layout
--------------------------------------------------------------*/
body.clean-layout {
}

.clean-layout {
}

    .clean-layout .layout-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .clean-layout .layout-content {
        display: flex;
        flex: 1;
    }

    .clean-layout footer {
    }

/*--------------------------------------------------------------
# Error Pages
--------------------------------------------------------------*/
.error-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

    .error-content .accordion {
        cursor: pointer;
        margin-top: 2rem;
        padding: 1rem;
        background-color: rgba(255,255,255,0.1);
        border-radius: 6px;
    }

    .error-content .accordion-content {
        display: none;
        margin-top: 1rem;
        text-align: left;
    }

    .error-content .accordion.open .accordion-content {
        display: block;
    }

/*--------------------------------------------------------------
# Common Effects
--------------------------------------------------------------*/
/*** Glass Blur ***/
.glass-blur {
    background-color: rgba(255, 255, 255, 0.05); /* Ajusta opacidad según claridad deseada */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* opcional: borde tenue */
}

    .glass-blur.card {
        background-color: rgba(255, 255, 255, 0.05); /* Ajusta opacidad según claridad deseada */
    }

@media screen and (max-width: 768px) {
    .glass-blur.card {
        background-color: rgba(255, 255, 255, 0.05) !important;
        background-blend-mode: initial;
    }
}

/*** Button Glow ***/
.btn-glow {
    --bs-btn-color: #f8f9fa;
    --bs-btn-bg: rgba(179, 247, 249, 0.7);
    --bs-btn-border-color: rgba(179, 247, 249, 0.9);
    --bs-btn-hover-bg: rgba(160, 237, 245, 0.8);
    --bs-btn-hover-border-color: rgba(160, 237, 245, 0.9);
    --bs-btn-focus-shadow-rgb: 179, 247, 249;
    --bs-btn-active-bg: rgba(141, 225, 234, 0.8);
    --bs-btn-active-border-color: rgba(141, 225, 234, 1);
    --bs-gradient: linear-gradient(135deg, rgba(0,255,255,0.2), rgba(0,128,255,0.3));
    color: var(--bs-btn-color);
    background: var(--bs-gradient);
    border: 1px solid var(--bs-btn-border-color);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 5px rgba(179, 247, 249, 0.3), 0 0 10px rgba(90, 227, 230, 0.2);
    transition: all 0.3s ease-in-out;
}

    .btn-glow:hover {
        background: linear-gradient(135deg, rgba(160, 237, 245, 0.8), rgba(45, 207, 210, 0.6));
        border-color: var(--bs-btn-hover-border-color);
        box-shadow: 0 0 8px #B3F7F9, 0 0 16px #5AE3E6, 0 0 32px #2DCFD2;
    }

    .btn-glow:focus,
    .btn-glow:focus-visible {
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.4);
    }

/*** Button Outline Glow ***/
.btn-outline-glow {
    --bs-btn-color: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
    --bs-btn-hover-border-color: #f8f9fa;
    --bs-btn-focus-shadow-rgb: 179, 247, 249; /* color base del glow */
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #f8f9fa;
    --bs-btn-active-border-color: #f8f9fa;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f8f9fa;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #f8f9fa;
    --bs-gradient: none;
    box-shadow: inset 0 0 3px rgba(179, 247, 249, 0.4), 0 0 4px rgba(179, 247, 249, 0.5), 0 0 8px rgba(90, 227, 230, 0.3);
    transition: box-shadow 0.2s ease-in-out;
}

    .btn-outline-glow:hover {
        box-shadow: 0 0 10px #B3F7F9, 0 0 20px #B3F7F9, 0 0 40px #5AE3E6, 0 0 80px #2DCFD2;
    }

    .btn-outline-glow:focus,
    .btn-outline-glow:focus-visible {
        box-shadow: inset 0 0 3px rgba(179, 247, 249, 0.4), 0 0 4px rgba(179, 247, 249, 0.5), 0 0 8px rgba(90, 227, 230, 0.3);
    }

/*** Highlights ***/
.highlight {
    animation: btnHighlight 6s ease-in-out infinite;
}

.btn-glow.highlight {
    position: relative;
    overflow: hidden;
}

    .btn-glow.highlight::after {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100% );
        transform: skewX(-20deg);
        animation: btnGlowHighlight 6s ease-in-out infinite;
        pointer-events: none;
    }

.btn-outline-glow.highlight {
    animation: btnOutlineHighlight 6s ease-in-out infinite;
}

@keyframes btnHighlight {
    0%, 83% {
        box-shadow: 0 0 4px rgba(179, 247, 249, 0.4), 0 0 8px rgba(90, 227, 230, 0.3), 0 0 12px rgba(45, 207, 210, 0.2);
    }

    92% {
        box-shadow: 0 0 8px rgba(179, 247, 249, 0.6), 0 0 16px rgba(90, 227, 230, 0.5), 0 0 32px rgba(45, 207, 210, 0.3), 0 0 48px rgba(45, 207, 210, 0.2);
    }

    100% {
        box-shadow: 0 0 4px rgba(179, 247, 249, 0.4), 0 0 8px rgba(90, 227, 230, 0.3), 0 0 12px rgba(45, 207, 210, 0.2);
    }
}

@keyframes btnGlowHighlight {
    0%, 83% {
        left: -60%;
    }

    92% {
        left: 50%;
    }

    100% {
        left: 120%;
    }
}

@keyframes btnOutlineHighlight {
    0%, 83% {
        box-shadow: inset 0 0 3px rgba(179, 247, 249, 0.4), 0 0 4px rgba(179, 247, 249, 0.5), 0 0 8px rgba(90, 227, 230, 0.3);
    }

    92% {
        box-shadow: inset 0 0 6px rgba(179, 247, 249, 0.6), 0 0 12px rgba(179, 247, 249, 0.7), 0 0 24px rgba(90, 227, 230, 0.5), 0 0 48px rgba(45, 207, 210, 0.3);
    }

    100% {
        box-shadow: inset 0 0 3px rgba(179, 247, 249, 0.4), 0 0 4px rgba(179, 247, 249, 0.5), 0 0 8px rgba(90, 227, 230, 0.3);
    }
}

/*** CRT Scanlines ***/
.crt-overlay {
    position: relative;
    overflow: hidden;
    isolation: isolate; /* para que el ::after solo afecte dentro */
}

    .crt-overlay::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
        background: repeating-linear-gradient( to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1) 1px, transparent 2px, transparent 4px );
        animation: crt-scanlines 2s linear infinite;
    }

@keyframes crt-scanlines {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 4px;
    }
}
