

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

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:white;
    min-height:100vh;
}

.hero{          
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
    background:
        radial-gradient(circle at top,#59FF3920,transparent 40%),
        radial-gradient(circle at bottom,#00ff9920,transparent 40%),
        #050505;
}
/* ==========================================
   GAMETECH PREMIUM GLASS PANEL
========================================== */

.glass {

    position: relative;

    padding: 40px;

    border-radius: 25px;

    background:
    rgba(15,15,15,0.65);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

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

}



/* RGB Animated Border */

.glass::before {

    content:"";

    position:absolute;

    inset:0;

    padding:2px;

    border-radius:25px;

    background:
    linear-gradient(
        90deg,
        #ff0000,
        #00ffff,
        #00ff00,
        #ff00ff,
        #ff0000
    );

    background-size:300% 300%;

    animation:
    rgbBorder 8s linear infinite;

    z-index:-1;

}



.glass::after {

    content:"";

    position:absolute;

    inset:2px;

    border-radius:23px;

    background:#111;

    z-index:-1;

}



@keyframes rgbBorder {

    0% {

        background-position:0% 50%;

    }


    50% {

        background-position:100% 50%;

    }


    100% {

        background-position:0% 50%;

    }

}
.logo{
    width:180px;
    margin-bottom:20px;
}

h1{
    font-family:'Orbitron',sans-serif;
    font-size:52px;
    margin-bottom:10px;
}


p{
    color:#cfcfcf;
    margin-bottom:35px;
    font-size:18px;
    line-height:1.7;
}

.btn{
    display:block;
    text-decoration:none;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    margin-bottom:15px;
    transition:.3s ease;
}

.google{
    background:#59FF39;
    color:#000;
}

.facebook{
    background:#1877F2;
    color:#fff;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(89,255,57,.4);
}

.social{
    margin-top:35px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.social a{
    color:white;
    text-decoration:none;
    opacity:.8;
    transition:.3s;
}

.social a:hover{
    color:#59FF39;
    opacity:1;
}

@media(max-width:600px){

h1{
    font-size:36px;
}

.logo{
    width:140px;
}

.glass{
    padding:35px 20px;
}

p{
    font-size:16px;
}

}
/* Navigation */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 60px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.35);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(89,255,57,.15);

z-index:999;

}

.nav-logo{

display:flex;

align-items:center;

gap:15px;

font-family:Orbitron;

font-size:24px;

font-weight:bold;

color:white;

}

.nav-logo img{

width:45px;

}

.nav-links{

display:flex;

gap:35px;

}

.nav-links a{

text-decoration:none;

color:white;

font-weight:500;

transition:.3s;

}

.nav-links a:hover{

color:#59FF39;

}
/* ===========================
   EXPERIENCE SECTION
=========================== */

.experience{
    border:4px solid red;

    padding:120px 60px;

    max-width:1800px;

    margin:0 auto;

}
.experience h2{
    font-size:48px;
    color:#59FF39;
    font-family:'Orbitron',sans-serif;
    margin-bottom:15px;
}

.subtitle{
    color:#bdbdbd;
    font-size:18px;
    margin-bottom:60px;
}


.cards{

    width:fit-content;

    margin:0 auto;

    display:grid;

grid-template-columns:repeat(4,280px);    gap:40px;

}

.card{

    display:flex;

    flex-direction:column;

    align-items:center;

    height:100%;

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

    border:1px solid rgba(89,255,57,.15);

    border-radius:22px;

    padding:40px 30px;

    backdrop-filter:blur(15px);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(90deg,transparent,rgba(89,255,57,.12),transparent);

transition:.6s;

}

.card:hover::before{

left:100%;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 0 40px rgba(89,255,57,.30);

border-color:#59FF39;

}

.icon{

font-size:60px;

margin-bottom:25px;

}

.card h3{

font-size:26px;

margin-bottom:18px;

color:white;

}

.card p{

    flex:1;

    line-height:1.8;

    color:#c8c8c8;

    margin-bottom:30px;

}

.card button{

margin-top:auto;

padding:15px 28px;

border:none;

border-radius:12px;

background:#59FF39;

color:black;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.card button:hover{

transform:scale(1.05);

box-shadow:0 0 30px #59FF39;

}
.boot-screen {
    height:100vh;
    background:#050505;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
}


.boot-logo h1 {
    font-size:50px;
    animation:rgbGlow 2s infinite;
}


.loading-bar {
    width:400px;
    height:20px;
    border:2px solid cyan;
    margin-top:30px;
}


.loading-progress {
    width:0%;
    height:100%;
    background:linear-gradient(90deg,cyan,magenta,blue);
    transition:0.2s;
}


@keyframes rgbGlow {

    0% {
        text-shadow:0 0 10px cyan;
    }

    50% {
        text-shadow:0 0 30px magenta;
    }

    100% {
        text-shadow:0 0 10px cyan;
    }

}/* =======================================================
   HERO LAYOUT V2
======================================================= */

.hero{

    min-height:100vh;
    padding:120px 40px 80px;

}

.hero-layout{

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

    display:grid;

    grid-template-columns:300px 1fr 300px;

    gap:40px;

    align-items:center;

}

/* ===========================
   REVIEW PANELS
=========================== */

.reviews-panel{

    height:700px;

    background:red;

    border:5px solid yellow;

}

.google-panel{

    box-shadow:0 0 35px rgba(89,255,57,.18);

}

.facebook-panel{

    box-shadow:0 0 35px rgba(24,119,242,.20);

}

.panel-title{

    padding:22px;

    text-align:center;

    font-size:22px;

    font-family:'Orbitron',sans-serif;

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

}

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

.glass{

    margin:auto;

}

/* ===========================
   REVIEW AREA
=========================== */

.reviews-track{

    flex:1;

    padding:20px;

    overflow:hidden;

}

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

@media(max-width:1200px){

.hero-layout{

grid-template-columns:1fr;

}

.reviews-panel{

height:320px;

}

}






/* ======================================
   REVIEW CARDS
====================================== */

.review-card{

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

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

    border-radius:18px;

    padding:18px;

    margin-bottom:18px;

    backdrop-filter:blur(12px);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-5px);

    border-color:#59FF39;

    box-shadow:0 0 20px rgba(89,255,57,.30);

}

.review-card h4{

    color:white;

    margin-bottom:8px;

    font-size:18px;

}

.review-card p{

    margin:0;

    font-size:15px;

    line-height:1.5;

    color:#d0d0d0;

}

.stars{

    color:#FFD700;

    margin-bottom:10px;

    letter-spacing:2px;

}

/* ===========================
   WhatsApp Button
=========================== */

.whatsapp-btn{

    display:inline-block;

    margin-top:auto;

    padding:15px 28px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    border-radius:30px;

    border:none;

    transition:all .3s ease;

    cursor:pointer;

    box-shadow:0 0 15px rgba(37,211,102,.35);

}

.whatsapp-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(37,211,102,.7);

}