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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    overflow:hidden;

    background:
    radial-gradient(
        circle at 80% 40%,
        rgba(0,255,136,.12),
        transparent 40%
    );
}

.hero-bg-glow{

    position:absolute;

    top:50%;

    right:-150px;

    transform:translateY(-50%);

    width:800px;

    height:800px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,255,136,.15),
        transparent 70%
    );

    filter:blur(50px);

    pointer-events:none;
}

.hero-container{

    display:grid;

    grid-template-columns:45% 55%;

    align-items:center;

    gap:60px;

    position:relative;

    z-index:2;
}

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

.hero-content{

    max-width:650px;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(0,255,136,.08);

    border:1px solid rgba(0,255,136,.20);

    color:var(--green);

    font-size:.9rem;

    font-weight:600;

    margin-bottom:25px;
}

.hero-content h1{

    font-size:5rem;

    font-weight:900;

    line-height:1.05;

    margin-bottom:25px;

    letter-spacing:-2px;
}

.hero-content p{

    font-size:1.15rem;

    color:var(--text-muted);

    line-height:1.9;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:35px;
}

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

.hero-trust{

    display:flex;

    flex-wrap:wrap;

    gap:20px;
}

.hero-trust div{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--text-muted);

    font-size:.95rem;
}

.hero-trust i{

    color:var(--green);
}

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

.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
}

.hero-mockup{

    width:100%;

    max-width:950px;

    position:relative;

    z-index:2;

    filter:
    drop-shadow(
        0 50px 90px rgba(0,0,0,.65)
    );

    animation:floatHero 6s ease-in-out infinite;
}

/* ==========================================
   FLOATING CARDS
========================================== */

.floating-card{

    position:absolute;

    z-index:3;

    background:rgba(17,17,17,.95);

    backdrop-filter:blur(15px);

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

    border-radius:18px;

    padding:18px 24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}

.floating-card span{

    display:block;

    color:var(--text-muted);

    font-size:.8rem;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.floating-card h3{

    color:var(--green);

    font-size:2rem;

    font-weight:800;
}

.card-one{

    top:15%;

    left:5%;

    animation:floatCard 4s ease-in-out infinite;
}

.card-two{

    bottom:12%;

    right:5%;

    animation:floatCard 5s ease-in-out infinite;
}

/* ==========================================
   STATS SECTION
========================================== */

.stats{

    padding:100px 0;

    background:
    linear-gradient(
        180deg,
        transparent,
        rgba(255,255,255,.01)
    );
}

.stats-grid{

    display:grid;

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

    gap:25px;
}

.stat-card{

    background:#111111;

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

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.3s ease;
}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,255,136,.25);

    box-shadow:
    0 15px 50px rgba(0,255,136,.08);
}

.stat-card h2{

    font-size:3rem;

    color:var(--green);

    margin-bottom:12px;

    font-weight:900;
}

.stat-card p{

    color:var(--text-muted);

    line-height:1.6;
}

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

.features{

    padding:120px 0;
}

.section-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;
}

.section-header h2{

    font-size:3rem;

    margin-bottom:15px;
}

.section-header p{

    color:var(--text-muted);

    line-height:1.8;
}

.features-grid{

    display:grid;

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

    gap:30px;
}

.feature-card{

    background:#111111;

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

    border-radius:24px;

    padding:40px;

    transition:.3s ease;
}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,255,136,.20);
}

.feature-card i{

    font-size:2rem;

    color:var(--green);

    margin-bottom:20px;
}

.feature-card h3{

    margin-bottom:15px;

    font-size:1.3rem;
}

.feature-card p{

    color:var(--text-muted);

    line-height:1.8;
}

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

@keyframes floatHero{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

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

@media(max-width:1200px){

    .hero-content h1{

        font-size:4rem;
    }
}

@media(max-width:992px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-content{

        max-width:100%;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-trust{

        justify-content:center;
    }

    .stats-grid{

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

    .features-grid{

        grid-template-columns:1fr;
    }

    .floating-card{

        display:none;
    }
}

@media(max-width:768px){

    .hero-content h1{

        font-size:3rem;
    }

    .hero-content p{

        font-size:1rem;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .section-header h2{

        font-size:2.2rem;
    }
}
.section-header{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;
}

.section-tag{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:700;
}

.section-header h2{

    font-size:3rem;

    margin-top:15px;

    margin-bottom:15px;
}
.why-us{

    padding:120px 0;
}

.why-grid{

    display:grid;

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

    gap:30px;
}

.why-card{

    background:#111;

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

    padding:40px;

    border-radius:24px;

    text-align:center;
}

.why-card i{

    color:var(--gold);

    font-size:2rem;

    margin-bottom:20px;
}
.pricing{

    padding:140px 0;
}

.pricing-grid{

    display:grid;

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

    gap:35px;

    align-items:center;
}

.pricing-card{

    background:#111111;

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

    border-radius:28px;

    padding:45px;

    position:relative;

    transition:.35s ease;
}

.pricing-card:hover{

    transform:translateY(-12px);

    border-color:rgba(255,204,0,.25);
}

.featured{

    border:2px solid var(--gold);

    transform:scale(1.05);

    box-shadow:
    0 0 40px rgba(255,204,0,.12);
}

.popular-badge{

    display:inline-block;

    background:var(--gold);

    color:#000;

    padding:8px 15px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

    margin-bottom:25px;
}

.price{

    font-size:4rem;

    font-weight:900;

    color:var(--gold);

    margin:25px 0;
}

.price span{

    font-size:1rem;

    color:var(--text-muted);
}

.plan-desc{

    color:var(--text-muted);

    margin-bottom:25px;
}

.pricing-card ul{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;
}

.pricing-card li{

    color:#d1d5db;
}

@media(max-width:992px){

    .pricing-grid{

        grid-template-columns:1fr;
    }

    .featured{

        transform:none;
    }
}

.cta-section{

    padding:120px 0;
}

.cta-box{

    text-align:center;

    padding:80px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(255,204,0,.08),
        rgba(0,255,136,.08)
    );

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

.cta-box h2{

    font-size:3rem;

    margin-bottom:20px;
}

.cta-box p{

    color:var(--text-muted);

    margin-bottom:30px;
}
/*====================================
    WINNING RECORDS
=====================================*/

.winning-records{

    padding:100px 0;

    background:#000000;

}

.record-summary{

    display:grid;

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

    gap:25px;

    margin:60px 0;

}

.summary-card{

    background:#000000;

    border:1px solid rgb(255, 196, 0);

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.summary-card:hover{

    transform:translateY(-6px);

}

.summary-card h3{

    font-size:2.8rem;

    margin-bottom:10px;

    color:#fff;

}

.summary-card span{

    color:#cbd5e1;

    font-weight:600;

}

.records-grid{

    display:grid;

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

    gap:30px;

}

.record-card{

    overflow:hidden;

    background:#00010e;

    border-radius:18px;

    transition:.3s;

    border:1px solid rgb(255, 196, 0);

}

.record-card:hover{

    transform:translateY(-8px);

}

.record-image{

    position:relative;

}

.record-image img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.record-badge{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 16px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

    color:#fff;

}

.record-badge.won{

    background:#22c55e;

}

.record-badge.lost{

    background:#ef4444;

}

.record-badge.void{

    background:#f59e0b;

}

.record-content{

    padding:25px;

}

.record-content h3{

    margin-bottom:20px;

    color:#fff;

}

.record-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

}

.record-meta strong{

    display:block;

    color:#facc15;

    margin-bottom:6px;

}

.record-meta span{

    color:#cbd5e1;

}

.record-date{

    color:#94a3b8;

}

.records-footer{

    text-align:center;

    margin-top:60px;

}

.empty-records{

    grid-column:1/-1;

    text-align:center;

    color:#94a3b8;

    padding:60px 0;

}

.empty-records i{

    font-size:3rem;

    margin-bottom:20px;

    color:#facc15;

}

@media(max-width:992px){

    .record-summary{

        grid-template-columns:1fr;

    }

    .records-grid{

        grid-template-columns:1fr;

    }

}
.records-grid{

    display:flex;

    gap:28px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    padding:10px 5px 25px;

    scrollbar-width:none;

}

.records-grid::-webkit-scrollbar{

    display:none;

}
.record-card{

    min-width:340px;

    flex:0 0 340px;

    overflow:hidden;

    background:#040504;


    border-radius:22px;

    border:1px solid rgb(255, 196, 0);

    transition:.35s;

    scroll-snap-align:start;

    cursor:pointer;

}

.record-card:hover{

    transform:translateY(-10px);

    border-color:#facc15;

    box-shadow:0 18px 45px rgba(250,204,21,.18);

}
.record-image{

    position:relative;

    overflow:hidden;

}

.record-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.45s;

}

.record-card:hover img{

    transform:scale(1.08);

}
.record-content{

    padding:24px;

}

.record-content h3{

    color:#fff;

    margin-bottom:20px;

    line-height:1.4;

    font-size:1.15rem;

}
.record-details{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.detail-item{

    display:flex;

    align-items:center;

    gap:14px;

}

.detail-item i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:#1f2937;

    color:#facc15;

    font-size:1rem;

}

.detail-item small{

    display:block;

    color:#94a3b8;

    margin-bottom:4px;

}

.detail-item strong{

    color:white;

}
.record-badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:8px 18px;

    border-radius:999px;

    color:white;

    font-weight:700;

    font-size:.78rem;

    letter-spacing:.5px;

    backdrop-filter:blur(10px);

}
.records-controls{

    display:flex;

    justify-content:flex-end;

    gap:12px;

    margin-bottom:30px;

}

.records-controls button{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#111827;

    color:#fff;

    transition:.3s;

}

.records-controls button:hover{

    background:#facc15;

    color:#111827;

}
/* ==========================================
   MOBILE OVERFLOW FIX
========================================== */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }

    .why-grid,
    .pricing-grid,
    .stats-grid,
    .record-summary,
    .hero-container {
        grid-template-columns: 1fr !important;
    }

    .why-card,
    .pricing-card,
    .record-card,
    .summary-card {
        width: 100%;
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hero-content h1 {
        word-break: break-word;
    }
}



