/* ==========================
RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,sans-serif;
    background:#06010d;
    color:#fff;
    overflow-x:hidden;

}

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

a{
    text-decoration:none;
}

/* ==========================
CONTAINER
========================== */

.container{

    width:min(92%,1400px);
    margin:auto;

}

/* ==========================
HEADER
========================== */

.site-header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:20px 0;
    backdrop-filter:blur(20px);

}

.site-header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    width:170px;

}

.desktop-nav{

    display:flex;
    gap:35px;
    align-items:center;

}

.desktop-nav a{

    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;

}

.desktop-nav a:hover{

    color:#d7265b;

}

.nav-cta{

    padding:12px 24px;
    border-radius:50px;
    background:linear-gradient(
    135deg,
    #d7265b,
    #8b5cf6
    );

}

/* ==========================
MOBILE MENU
========================== */

.menu-toggle{

    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;

}

.mobile-menu{

    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100vh;
    background:#12051d;
    z-index:9999;
    transition:.4s;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

}

.mobile-menu.active{

    right:0;

}

.close-menu{

    position:absolute;
    top:30px;
    right:30px;
    border:none;
    background:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;

}

.mobile-menu nav{

    display:flex;
    flex-direction:column;
    gap:30px;

}

.mobile-menu nav a{

    color:#fff;
    font-size:20px;
    text-align:center;

}

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

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

}

.hero-content{

    animation:fadeUp 1s ease;

}

.hero-badge{

    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    background:rgba(215,38,91,.15);
    border:1px solid rgba(215,38,91,.3);
    margin-bottom:24px;

}

.hero-content h1{

    font-size:clamp(
    2.4rem,
    5vw,
    4.8rem
    );

    line-height:1.1;
    margin-bottom:24px;
    max-width:700px;

}

.hero-content p{

    font-size:1.05rem;
    line-height:1.8;
    color:#d0d0d0;
    max-width:620px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.primary-btn{

    padding:16px 36px;
    border-radius:50px;

    background:linear-gradient(
    135deg,
    #d7265b,
    #8b5cf6
    );

    color:#fff;
    font-weight:600;

}

.secondary-btn{

    padding:16px 36px;
    border-radius:50px;

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

}

/* ==========================
IMAGE AREA
========================== */

.hero-image-wrapper{

    position:relative;
    animation:fadeRight 1.2s ease;

}

.hero-image{

    width:100%;
    max-width:650px;
    margin:auto;
    position:relative;
    z-index:5;

}

.hero-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(140px);

}

.glow-one{

    width:450px;
    height:450px;
    background:#d7265b;
    right:15%;
    top:15%;

}

.glow-two{

    width:350px;
    height:350px;
    background:#8b5cf6;
    right:5%;
    bottom:10%;

}

.floating-symbol{

    position:absolute;
    font-size:50px;
    color:#fff;
    z-index:20;

}

.symbol-one{

    top:20%;
    right:0;
    animation:float 4s infinite ease-in-out;

}

.symbol-two{

    bottom:10%;
    left:5%;
    animation:float 5s infinite ease-in-out;

}

.symbol-three{

    top:40%;
    left:-5%;
    animation:float 6s infinite ease-in-out;

}

/* ==========================
ANIMATIONS
========================== */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(60px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(100px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

/* ==========================
TABLET
========================== */

@media(max-width:992px){

    .hero-grid{

        grid-template-columns:1fr;
        text-align:center;

    }

    .hero-content{

        order:2;

    }

    .hero-image-wrapper{

        order:1;

    }

    .hero-content p{

        margin-left:auto;
        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

}

@media(max-width:768px){

    .desktop-nav{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .hero-section{
        padding-top:130px;
        padding-bottom:60px;
    }

    .hero-grid{
        display:flex;
        flex-direction:column;
        gap:40px;
    }

    .hero-content{
        order:1;
        text-align:center;
    }

    .hero-image-wrapper{
        order:2;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .hero-image{
        max-width:420px;
        margin:0 auto;
    }

}

@media(max-width:480px){

    .hero-content h1{

        font-size:2rem;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;
        text-align:center;

    }

}

/* ==========================
ABOUT SECTION
========================== */

.about-section{

    position:relative;
    padding:140px 0;
    overflow:hidden;

}

.about-heading{

    max-width:950px;
    margin:auto;
    text-align:center;
    margin-bottom:80px;

}

.section-tag{

    display:inline-block;
    padding:10px 18px;
    border-radius:40px;

    background:rgba(215,38,91,.12);

    border:1px solid rgba(215,38,91,.25);

    color:#fff;

    margin-bottom:25px;

}

.about-heading h2{

    font-size:clamp(
    2rem,
    4vw,
    3.5rem
    );

    line-height:1.25;
    margin-bottom:25px;

}

.about-heading p{

    max-width:850px;
    margin:0 auto 20px;

    color:#cfcfcf;

    line-height:1.9;

    font-size:1rem;

}

.about-visual{

    position:relative;
    max-width:1000px;
    margin:auto;

}

.about-image-wrapper{

    position:relative;
    width:fit-content;
    margin:auto;

}

.about-main-image{

    width:100%;
    max-width:800px;

    position:relative;

    z-index:10;

    animation:aboutFloat 8s ease-in-out infinite;

}

/* GLOWS */

.about-glow{

    position:absolute;
    border-radius:50%;
    filter:blur(140px);

}

.glow-left{

    width:350px;
    height:350px;

    background:#d7265b;

    left:15%;
    top:30%;

    opacity:.5;

}

.glow-right{

    width:350px;
    height:350px;

    background:#8b5cf6;

    right:15%;
    bottom:15%;

    opacity:.5;

}

/* FLOATING ICONS */

.floating-icon{

    position:absolute;

    z-index:20;

}

.icon-one{

    width:90px;

    top:18%;

    left:-60px;

    animation:floatIcon 5s infinite ease-in-out;

}

.icon-two{

    width:80px;

    bottom:1%;

    left:5%;

    animation:floatIcon 6s infinite ease-in-out;

}

.icon-three{

    width:100px;

    right:-50px;

    bottom:20%;

    animation:floatIcon 7s infinite ease-in-out;

}

/* ANIMATIONS */

@keyframes floatIcon{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@keyframes aboutFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

/* TABLET */

@media(max-width:992px){

    .about-section{

        padding:110px 0;

    }

    .about-heading{

        margin-bottom:60px;

    }

}

/* MOBILE */

@media(max-width:768px){

    .about-section{

        padding:90px 0;

    }

    .about-heading h2{

        font-size:2rem;

    }

    .about-heading p{

        font-size:.95rem;

        line-height:1.8;

    }

    .icon-one{

        width:65px;
        left:-20px;

    }

    .icon-two{

        width:75px;

    }

    .icon-three{

        width:70px;
        right:-15px;

    }

}

@media(max-width:480px){

    .about-heading{

        margin-bottom:50px;

    }

    .about-heading h2{

        font-size:1.8rem;

    }

}

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

.features-section{

    position:relative;
    padding:140px 0;
    overflow:hidden;

}

.features-section::before{

    content:"";

    position:absolute;

    top:-300px;
    right:-200px;

    width:800px;
    height:800px;

    background:
    radial-gradient(
    circle,
    rgba(139,92,246,.12),
    transparent 70%
    );

    pointer-events:none;

}

.features-section::after{

    content:"";

    position:absolute;

    bottom:-300px;
    left:-200px;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(215,38,91,.10),
    transparent 70%
    );

    pointer-events:none;

}

/* ==================================================
HEADING
================================================== */

.features-heading{

    max-width:900px;

    margin:0 auto 100px;

    text-align:center;

    position:relative;

    z-index:10;

}

.features-heading h2{

    font-size:clamp(
    2rem,
    4vw,
    3.8rem
    );

    line-height:1.15;

    margin-bottom:20px;

}

.features-heading p{

    max-width:760px;

    margin:auto;

    color:#cfcfcf;

    line-height:1.9;

    font-size:1rem;

}

/* ==================================================
ORBIT LAYOUT
================================================== */

.features-orbit-layout{

    position:relative;

    width:100%;

    min-height:1000px;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ==================================================
CENTER SHOWCASE
================================================== */

.feature-showcase{

    position:relative;

    width:520px;
    height:500px;

    display:flex;
    justify-content:center;
    align-items:center;

    perspective:1800px;
    -webkit-perspective:1800px;
    
    z-index:5;

}

.feature-showcase-inner{

    position:relative;

    width:100%;
    height:100%;

    transform-style:preserve-3d;
    -webkit-transform-style:preserve-3d;

    transition:transform .9s cubic-bezier(.22,.61,.36,1);

}

/* DESKTOP HOVER */

.feature-showcase:hover .feature-showcase-inner{
    transform:rotateX(180deg);
}

/* MOBILE CLICK SUPPORT */

.feature-showcase.active .feature-showcase-inner{
    transform:rotateX(180deg);
}

/* ==================================================
FRONT / BACK
================================================== */

.showcase-front,
.showcase-back{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    border-radius:32px;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;

    transform-style:preserve-3d;
    -webkit-transform-style:preserve-3d;

    overflow:hidden;
    
    

}

/* FRONT */

.showcase-front{

    z-index:2;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* BACK */

.showcase-back{

    z-index:1;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:50px;

    background:
    linear-gradient(
        180deg,
        rgba(20,20,20,.98),
        rgba(0,0,0,1)
    );

    border:1px solid rgba(176,60,255,.15);

    transform:rotateX(180deg);

}

.showcase-tag{

    display:inline-flex;

    padding:10px 18px;

    border-radius:100px;

    background:rgba(176,60,255,.12);

    border:1px solid rgba(176,60,255,.2);

    color:#b03cff;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;

}

.showcase-back h3{

    font-size:36px;
    line-height:1.1;

    margin-bottom:18px;

}

.showcase-back p{

    max-width:450px;

    color:#d4d4d4;

    line-height:1.9;

    margin-bottom:30px;

}

.showcase-front-btn{

    position:absolute;

    left:50%;
    bottom:40px;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    width:190px;
    height:58px;

    border-radius:100px;

    background:
    linear-gradient(
        90deg,
        #b03cff,
        #7c2fff
    );

    color:#fff;

    font-weight:700;

    z-index:50;

    box-shadow:
    0 15px 40px rgba(176,60,255,.25);

    transition:.3s ease;

}

.showcase-front-btn:hover{

    transform:
    translateX(-50%)
    translateY(-4px);

}

.showcase-front-btn::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:100px;

    border:1px solid rgba(255,255,255,.2);

    pointer-events:none;

}

.showcase-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:190px;
    height:58px;

    border-radius:100px;

    background:
    linear-gradient(
        90deg,
        #b03cff,
        #7c2fff
    );

    color:#fff;
    font-weight:700;

    transition:.3s;

}

.showcase-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 40px rgba(176,60,255,.25);

}

/* ==================================================
IMAGE
================================================== */

.showcase-image{

    width:100%;
    max-width:520px;

    position:relative;

    z-index:10;

    display:block;

    animation:
    showcaseFloat 7s ease-in-out infinite;

}

/* ==================================================
GLOWS
================================================== */

.showcase-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    pointer-events:none;

}

.glow-one{

    width:400px;
    height:400px;

    background:#d7265b;

    opacity:.45;

}

.glow-two{

    width:320px;
    height:320px;

    background:#8b5cf6;

    opacity:.45;

    bottom:80px;

}


/* ==================================================
FLOATING SYMBOLS
================================================== */

.floating-symbol{

    position:absolute;

    z-index:15;

}

.symbol-1{

    width:70px;

    top:8%;
    left:0;

    animation:floatSymbol 5s ease-in-out infinite;

}

.symbol-2{

    width:90px;

    top:20%;
    right:0;

    animation:floatSymbol 7s ease-in-out infinite;

}

.symbol-3{

    width:100px;

    bottom:15%;
    left:0;

    animation:floatSymbol 6s ease-in-out infinite;

}

.symbol-4{

    width:80px;

    bottom:10%;
    right:0;

    animation:floatSymbol 8s ease-in-out infinite;

}

/* ==================================================
FEATURE CARDS
================================================== */

.feature-card{

    position:absolute;

    width:320px;

    height:260px;

    perspective:1500px;

    z-index:20;

}

.feature-card-inner{

    position:relative;

    width:100%;
    height:100%;

    transform-style:preserve-3d;

    transition:
    transform .9s cubic-bezier(.4,.2,.2,1);

}

.feature-card:hover .feature-card-inner{

    transform:rotateY(180deg);

}

.feature-front,
.feature-back{

    position:absolute;

    inset:0;

    border-radius:26px;

    backface-visibility:hidden;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
    135deg,
    rgba(32,12,60,.96),
    rgba(75,0,40,.95)
    );

    box-shadow:

    inset 0 0 40px rgba(255,255,255,.02);

}

.feature-front::before,
.feature-back::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,.03),
    transparent
    );

}

.feature-front{

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    gap:20px;

}

.feature-front img{

    width:70px;

}

.feature-front h3{

    font-size:1.2rem;

    line-height:1.4;

}

.feature-back{

    transform:rotateY(180deg);

    padding:28px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:15px;

}

.feature-back img{

    width:45px;

}

.feature-back h3{

    font-size:1.1rem;

}

.feature-back p{

    color:#d8d8d8;

    line-height:1.7;

    font-size:.95rem;

}

/* ==================================================
GLOW HOVER
================================================== */

.feature-card:hover .feature-front,
.feature-card:hover .feature-back{

    box-shadow:

    0 0 30px rgba(215,38,91,.40),

    0 0 80px rgba(139,92,246,.25),

    inset 0 0 30px rgba(255,255,255,.05);

}

/* ==================================================
ORBIT POSITIONS
================================================== */

.card-1{

    top:0;
    left:5%;

}

.card-2{

    top:0;
    right:5%;

}

.card-3{

    top:38%;
    left:0;

}

.card-4{

    top:38%;
    right:0;

}

.card-5{

    bottom:0;
    left:5%;

}

.card-6{

    bottom:0;
    right:5%;

}

/* ==================================================
ANIMATIONS
================================================== */

@keyframes showcaseFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

@keyframes floatSymbol{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/* ==================================================
LAPTOP
================================================== */

@media(max-width:1300px){

    .feature-card{

        width:250px;
        height:220px;

    }

}

/* ==================================================
TABLET
================================================== */

@media(max-width:1100px){

    .features-orbit-layout{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:25px;

        min-height:auto;

    }

    .feature-showcase{

        grid-column:span 2;

        order:1;

        width:100%;
        max-width:500px;

        height:650px;

        margin:0 auto;

    }

    .feature-showcase-inner{

        width:100%;
        height:100%;

    }

    .showcase-front,
    .showcase-back{

        width:100%;
        height:100%;

    }

    .showcase-image{

        width:100%;
        max-width:500px;

    }

    .feature-card{

        position:relative;

        top:auto;
        left:auto;
        right:auto;
        bottom:auto;

        width:100%;
        max-width:420px;

        height:220px;

    }

}

/* ==================================================
MOBILE
================================================== */

@media(max-width:768px){

    .features-section{

        padding:100px 0;

    }

    .features-heading{

        margin-bottom:60px;

    }

    .features-heading h2{

        font-size:2rem;

    }

    .features-orbit-layout{

        display:flex;
        flex-direction:column;

        gap:25px;

    }

    .feature-showcase{

        order:1;

        width:100%;
        max-width:420px;

        height:560px;

        margin:0 auto;

    }

    .feature-showcase-inner{

        width:100%;
        height:100%;

    }

    .showcase-front,
    .showcase-back{

        width:100%;
        height:100%;

    }

    .showcase-front-btn{

        width:170px;
        height:52px;
    
        font-size:14px;
    
        bottom:25px;
    
    }

    .showcase-back{

        padding:30px;

    }

    .showcase-back h3{

        font-size:28px;

    }

    .showcase-back p{

        font-size:15px;
        line-height:1.8;

    }

    .showcase-btn{

        width:170px;
        height:52px;

    }

    .feature-card{

        width:100%;

        max-width:none;

        height:220px;

    }

    .showcase-image{

        width:100%;
        max-width:380px;

    }

    .symbol-1,
    .symbol-2,
    .symbol-3,
    .symbol-4{

        width:60px;

    }

}

/* ==================================================
SMALL MOBILE
================================================== */

@media(max-width:480px){

    .feature-showcase{

        max-width:320px;

        height:450px;

    }

    .showcase-back{

        padding:22px;

    }

    .showcase-front-btn{

        width:150px;
        height:48px;
        pointer-events: none;
        bottom:20px;
    
    }

    .showcase-back h3{

        font-size:22px;

        margin-bottom:12px;

    }

    .showcase-back p{

        font-size:14px;

        line-height:1.7;

        margin-bottom:20px;

    }

    .showcase-btn{

        width:150px;
        height:48px;

        font-size:14px;

    }

    .feature-card{

        height:240px;

    }

    .feature-front img{

        width:60px;

    }

    .feature-front h3{

        font-size:1.05rem;

    }

    .feature-back p{

        font-size:.9rem;

    }

    .showcase-image{

        width:100%;
        max-width:300px;

    }

}

/* ==========================================
GUARDIANS SECTION
========================================== */

.guardians-section{

    padding:140px 0;

    position:relative;

}

.guardians-heading{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.guardians-heading h2{

    font-size:clamp(
    2rem,
    4vw,
    3.4rem
    );

    margin-bottom:20px;

}

.guardians-heading p{

    color:#cfcfcf;

    line-height:1.9;

}

/* ==========================================
GRID
========================================== */

.guardian-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

}

/* ==========================================
CARD
========================================== */

.guardian-card{

    position:relative;

    min-height:620px;

    border-radius:32px;

    overflow:hidden;

    cursor:pointer;

    border:1px solid
    rgba(255,255,255,.08);

}

.guardian-image{

    position:absolute;

    inset:0;

}

.guardian-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s;

}

.guardian-card:hover .guardian-image img{

    transform:scale(1.08);

}

.guardian-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(6,1,13,.98),
        rgba(6,1,13,.25)
    );

}

/* ==========================================
CONTENT
========================================== */

.guardian-content{

    position:absolute;

    inset:0;

    z-index:5;

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.guardian-icon{

    width:80px;
    height:80px;

    margin-bottom:25px;

}

.guardian-icon img{

    width:100%;

}

.guardian-content h3{

    font-size:1.7rem;

    line-height:1.3;

}

.guardian-hidden{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:.7s ease;

}

.guardian-card:hover .guardian-hidden{

    max-height:500px;

    opacity:1;

    margin-top:25px;

}

.guardian-hidden p{

    color:#d5d5d5;

    line-height:1.8;

    margin-bottom:20px;

}

.guardian-hidden ul{

    list-style:none;

}

.guardian-hidden li{

    padding-left:28px;

    position:relative;

    margin-bottom:14px;

    color:#fff;

}

.guardian-hidden li::before{

    content:"✦";

    position:absolute;

    left:0;

    color:#d7265b;

}

/* ==========================================
HOVER GLOW
========================================== */

.guardian-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:32px;

    opacity:0;

    transition:.5s;

    box-shadow:

    0 0 40px rgba(215,38,91,.35),

    0 0 100px rgba(139,92,246,.20);

}

.guardian-card:hover::after{

    opacity:1;

}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .guardian-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .guardians-section{

        padding:100px 0;

    }

    .guardian-card{

        min-height:520px;

    }

    .guardian-content{

        padding:30px;

    }

    .guardian-content h3{

        font-size:1.4rem;

    }

    .guardian-overlay,
    .guardian-card::after{

        pointer-events:none;

    }

    .guardian-hidden{

        max-height:0;

        opacity:0;

        overflow:hidden;

        transition:
        max-height .7s ease,
        opacity .4s ease,
        margin-top .4s ease;

    }

    .guardian-card.active .guardian-hidden{

        max-height:260px;

        opacity:1;

        margin-top:25px;

        overflow-y:auto;
        overflow-x:hidden;

        padding-right:10px;

        -webkit-overflow-scrolling:touch;

        scrollbar-width:thin;

    }

    .guardian-card.active::after{

        opacity:1;

    }

}


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

.site-footer{

    position:relative;

    padding:90px 0 40px;

    overflow:hidden;

    border-top:
    1px solid rgba(255,255,255,.08);

}

.footer-glow{

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    filter:blur(120px);

    pointer-events:none;

}

.footer-glow-left{

    left:-120px;
    top:0;

    background:
    rgba(215,38,91,.18);

}

.footer-glow-right{

    right:-120px;
    bottom:0;

    background:
    rgba(139,92,246,.18);

}

/* ==========================================
TOP
========================================== */

.footer-top{

    display:grid;

    grid-template-columns:
    1.3fr 1.5fr 1fr;

    gap:60px;

    position:relative;

    z-index:5;

    padding-bottom:50px;

}

.footer-logo img{

    width:200px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#cfcfcf;

    line-height:1.9;

}

.footer-column h3{

    margin-bottom:20px;

    font-size:1.15rem;

}

.footer-small-text{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:20px;

}

.footer-column a{

    color:#ffffff;

    transition:.3s;

}

.footer-column a:hover{

    color:#d7265b;

}

/* ==========================================
RESPONSIBLE LOGOS
========================================== */

.responsible-logos{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.responsible-logos a{

    width:110px;
    height:auto;
    padding:12px;
    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:18px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

}

.responsible-logos img{

    max-width:90px;

}

/* ==========================================
LINKS
========================================== */

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column li a{

    color:#cfcfcf;

}

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

.footer-disclaimer{

    padding:35px;

    border-radius:24px;

    background:
    linear-gradient(
    135deg,
    rgba(139,92,246,.08),
    rgba(215,38,91,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

}

.age-badge{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.age-badge img{

    width:55px;

}

.age-badge span{

    font-weight:600;

}

.footer-disclaimer p{

    color:#d0d0d0;

    line-height:1.8;

}

/* ==========================================
BOTTOM
========================================== */

.footer-bottom{

    text-align:center;

    padding-top:35px;

}

.footer-bottom p{

    color:#bfbfbf;

    font-size:.95rem;

}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;

    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .site-footer{

        padding:70px 0 30px;

    }

    .footer-disclaimer{

        padding:25px;

    }

    .age-badge{

        flex-direction:column;

        align-items:flex-start;

    }

    .footer-logo img{

        width:170px;

    }

}

@media(max-width:480px){

    .responsible-logos{

        gap:10px;

    }

    .responsible-logos a{

        width:100px;
        padding:10px;
        height:auto;

    }

    .responsible-logos img{

        max-width:64px;

    }

}

/* ==========================================
GAME HERO
========================================== */

.game-hero{

    position:relative;

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:120px 20px;

}

.game-hero .container{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1400px;

    margin:0 auto;

    display:flex;

    justify-content:center;

}

.game-hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.game-hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(6,1,13,.65),
        rgba(6,1,13,.95)
    );

    z-index:1;

}

.game-hero-content{

    position:relative;

    z-index:5;

    width:100%;

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.game-hero-content .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.game-hero-content h1{

    font-size:clamp(
        3rem,
        7vw,
        6rem
    );

    line-height:1.05;

    margin:24px 0;

}

.game-hero-content p{

    max-width:720px;

    margin:0 auto 40px;

    color:#d5d5d5;

    line-height:1.9;

}

.game-hero-content .primary-btn{

    margin:0 auto;

}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .game-hero{

        min-height:75vh;

        padding:120px 30px 100px;

    }

    .game-hero-content{

        max-width:700px;

    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .game-hero{

        min-height:70vh;

        padding:120px 20px 90px;

    }

    .game-hero-content h1{

        margin:18px 0;

    }

    .game-hero-content p{

        max-width:100%;

        line-height:1.8;

        margin:0 auto 30px;

    }

}

/* ==========================================
GAME TERMINAL
========================================== */

.game-terminal-section{

    padding:120px 0;

}

.terminal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:40px;

}

.terminal-header h2{

    margin-bottom:10px;

}

.terminal-header p{

    color:#cfcfcf;

}

.fullscreen-btn{

    border:none;

    cursor:pointer;

    padding:15px 24px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #d7265b,
        #8b5cf6
    );

    color:#fff;

    font-weight:600;

}

/* ==========================================
GAME FRAME
========================================== */

.game-terminal{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    min-height:650px;

    border-radius:32px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.03);

    box-shadow:

    0 0 60px rgba(139,92,246,.15);

}

.game-terminal iframe{

    width:100%;

    height:100%;

    border:none;

    display:block;

}

/* ==========================================
FULL WIDTH OPTION
========================================== */

.game-terminal.full-width{

    width:100vw;

    margin-left:calc(50% - 50vw);

    border-radius:0;

}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .terminal-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .game-terminal{

        min-height:700px;
    }

    .game-terminal iframe{

        height:700px;

    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .game-hero{

        min-height:70vh;

    }

    .game-terminal-section{

        padding:90px 0;

    }

    .game-terminal{

        min-height:550px;

    }

    .game-terminal iframe{

        height:650px;

    }

}

@media(max-width:480px){

    .game-hero-content h1{

        font-size:2.6rem;

    }

    .game-terminal iframe{

        height:550px;

    }

}

/* ==========================================
CONTACT HERO
========================================== */

.contact-hero-section{

    position:relative;

    min-height:70vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.contact-hero-bg{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.contact-hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(6,1,13,.65),
        rgba(6,1,13,.95)
    );

}

.contact-hero-content{

    position:relative;

    z-index:5;

    max-width:850px;

    margin:0 auto;

    text-align:center;

    padding:140px 0;

}

.contact-subtitle{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(215,38,91,.12);

    border:
    1px solid rgba(215,38,91,.2);

}

.contact-hero-content h1{

    margin:25px 0;

    font-size:
    clamp(
        2.8rem,
        6vw,
        4.5rem
    );

    line-height:1.1;

}

.contact-hero-content p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    color:#d4d4d4;

}

/* ==========================================
FORM SECTION
========================================== */

.contact-form-section{

    padding:120px 0;

}

.contact-form-wrapper{

    max-width:850px;

    margin:auto;

    padding:50px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(139,92,246,.08),
        rgba(215,38,91,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

    position:relative;

    overflow:hidden;

}

.contact-form-heading{

    text-align:center;

    margin-bottom:40px;

}

.contact-form-heading p{

    color:#cfcfcf;

    margin-top:15px;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact-field{

    margin-bottom:20px;

}

.contact-field label{

    display:block;

    margin-bottom:10px;

}

.contact-field input,
.contact-field textarea{

    width:100%;

    padding:16px 18px;

    border:none;

    outline:none;

    border-radius:16px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    font-family:inherit;

}

.contact-field textarea{

    resize:vertical;

}

.contact-checkbox{

    display:flex;

    gap:12px;

    align-items:flex-start;

    margin:20px 0 30px;

}

.contact-checkbox input{

    margin-top:4px;

}

.contact-submit-btn{

    width:100%;

    border:none;

    cursor:pointer;

    padding:18px;

    border-radius:50px;

    font-size:1rem;

    font-weight:600;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #d7265b,
        #8b5cf6
    );

}

/* ==========================================
LOADING STATE
========================================== */

.contact-loading{

    display:none;

    text-align:center;

    padding:60px 20px;

}

.contact-loading.active{

    display:block;

}

.magic-loader{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:30px;

}

.magic-loader span{

    width:18px;
    height:18px;

    border-radius:50%;

    background:#d7265b;

    animation:magicPulse 1.2s infinite;

}

.magic-loader span:nth-child(2){

    animation-delay:.2s;

}

.magic-loader span:nth-child(3){

    animation-delay:.4s;

}

.contact-reset-btn{

    margin-top:25px;

    padding:16px 28px;

    border:none;

    cursor:pointer;

    border-radius:50px;

    color:#fff;

    font-weight:600;

    background:
    linear-gradient(
        135deg,
        #d7265b,
        #8b5cf6
    );

    transition:.3s;

}

.contact-reset-btn:hover{

    transform:translateY(-3px);

}

@keyframes magicPulse{

    0%,100%{

        transform:scale(1);

        opacity:.5;

    }

    50%{

        transform:scale(1.6);

        opacity:1;

    }

}

/* ==========================================
SUCCESS
========================================== */

.contact-success{

    display:none;

    text-align:center;

    padding:60px 20px;

}

.contact-success.active{

    display:block;
    gap:20px;

}

.success-icon{

    font-size:4rem;

    color:#d7265b;

    margin-bottom:20px;

}

.contact-success h3 {
    margin-bottom: 20px;
}

.contact-success p {
    line-height: 1.4;
}

/* ==========================================
INFO SECTION
========================================== */

.contact-info-section{

    padding-bottom:120px;

}

.contact-info-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.contact-info-card{

    padding:35px;

    border-radius:24px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(139,92,246,.08),
        rgba(215,38,91,.08)
    );

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.contact-info-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 0 30px rgba(215,38,91,.18);

}

.contact-info-card img{

    width:60px;

    margin:auto auto 20px;

}

.contact-info-card h3{

    margin-bottom:15px;

}

.contact-info-card p{

    color:#d2d2d2;

    line-height:1.8;

}

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

@media(max-width:992px){

    .contact-info-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-form-section{

        padding:90px 0;

    }

    .contact-form-wrapper{

        padding:30px;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-info-grid{

        grid-template-columns:1fr;

    }

    .contact-hero-content{

        padding:120px 0 100px;

    }

    .contact-hero-content h1{

        font-size:2.2rem;

    }

}

@media(max-width:480px){

    .contact-form-wrapper{

        padding:25px;

    }

    .contact-hero-content h1{

        font-size:2rem;

    }

}

/* ==========================================
POLICY HERO
========================================== */

.policy-hero-section{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;

    text-align:center;

}

.policy-hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    pointer-events:none;

}

.policy-hero-glow.glow-one{

    width:450px;
    height:450px;

    top:-100px;
    left:-100px;

    background:
    rgba(215,38,91,.18);

}

.policy-hero-glow.glow-two{

    width:450px;
    height:450px;

    top:-50px;
    right:-100px;

    background:
    rgba(139,92,246,.18);

}

.policy-hero-content{

    max-width:850px;

    margin:auto;

    position:relative;

    z-index:5;

}

.policy-subtitle{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

}

.policy-hero-content h1{

    font-size:
    clamp(
        2.8rem,
        6vw,
        5rem
    );

    margin:25px 0;

    line-height:1.1;

}

.policy-hero-content p{

    max-width:700px;

    margin:auto;

    color:#d0d0d0;

    line-height:1.9;

}

/* ==========================================
POLICY CONTENT
========================================== */

.policy-content-section{

    padding-bottom:120px;

}

.policy-content{

    max-width:950px;

    margin:auto;

    padding:50px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(139,92,246,.06),
        rgba(215,38,91,.06)
    );

    border:
    1px solid rgba(255,255,255,.08);

}

.policy-content h2{
    font-size: 22px;

    margin-top:50px;

    margin-bottom:20px;

}

.policy-content h2:first-child{

    margin-top:0;

}

.policy-content p{

    color:#d3d3d3;

    line-height:1.9;

    margin-bottom:20px;

}

.policy-content ul{

    margin:20px 0;

    padding-left:25px;

}

.policy-content li{

    color:#d3d3d3;

    margin-bottom:12px;

    line-height:1.8;

}

.policy-content h3{

    font-size:18px;

    margin-top:30px;

    margin-bottom:15px;

    color:#ffffff;

    font-weight:600;

}

@media(max-width:768px){

    .policy-content h3{

        font-size:1.1rem;

    }

}

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

@media(max-width:768px){

    .policy-hero-section{

        padding:150px 0 90px;

    }

    .policy-content{

        padding:30px;

    }

    .policy-content h2{

        font-size:1.4rem;

    }

}

@media(max-width:480px){

    .policy-content{

        padding:25px;

    }

    .policy-hero-content h1{

        font-size:2.2rem;

    }

}