*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#0b0b0b;

    color:white;

    overflow-x:hidden;

}

#bg{

    position:fixed;

    inset:0;

    width:100%;
    height:100%;

    z-index:-1;

    background:#090909;

}

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 50px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:100;

}

.logo{

    font-size:28px;

    font-weight:bold;

    color:#ff2f2f;

}

nav{

    display:flex;

    gap:30px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.25s;

}

nav a:hover{

    color:#ff3d3d;

}

.hero{

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    text-align:center;

    padding:30px;

}

.hero-content{

    position:relative;

    z-index:1;

    max-width:700px;

    padding:40px 50px;

    background:rgba(15,15,15,.28);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    overflow:hidden;

}

.hero-content::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,0)
    );

    pointer-events:none;

}

.hero h1{

    font-size:72px;

    color:#ff3030;

    margin-bottom:20px;

}

.hero p{

    font-size:20px;

    opacity:.8;

    margin-bottom:30px;

}

button{

    padding:14px 34px;

    border:none;

    border-radius:12px;

    background:#ff2d2d;

    color:white;

    cursor:pointer;

    font-size:16px;

}

button:hover{

    background:#ff5151;

}

section{

    padding:120px 8%;

}

section h2{

    margin-bottom:35px;

    font-size:40px;

}

.card{

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    padding:25px;

    margin-bottom:20px;

}.card img{

    width:100%;

    border-radius:10px;

    margin-bottom:15px;

}

.card h3{

    margin-bottom:10px;

    color:#ff3d3d;

}

.card small{

    display:block;

    margin-top:15px;

    opacity:.6;

}
/* ========================= */
/* TEAM CARDS */
/* ========================= */

#teamContainer{

    display:grid;

    grid-template-columns:repeat(auto-fill,300px);

    justify-content:center;

    gap:25px;

}

.team-card{

    width:300px;

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    overflow:hidden;

    transition:.25s;

}

.team-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.45);

}

.team-image{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

}

.team-info{

    padding:18px;

}

.team-info h3{

    color:#ff3d3d;

    margin-bottom:8px;

    font-size:24px;

}

.team-info span{

    display:block;

    color:#bdbdbd;

    margin-bottom:12px;

    font-size:14px;

}

.team-info p{

    color:#d5d5d5;

    line-height:1.5;

    margin-bottom:10px;

}

.team-info a{

    display:inline-block;

    margin-right:10px;

    margin-top:10px;

    color:#ff4a4a;

    text-decoration:none;

    font-weight:bold;

}

.team-info a:hover{

    text-decoration:underline;

}
/* ===========================
   WINNERIZM TEAM V2
=========================== */

#teamContainer{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(270px,1fr));

    gap:28px;

    margin-top:40px;

}

.team-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    background:#111;

    aspect-ratio:3/4;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.35);

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.55);

}

.team-image{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.team-card:hover .team-image{

    transform:scale(1.08);

}

.team-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:22px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,0) 75%
    );

}

.team-overlay h2{

    color:#fff;

    font-size:32px;

    font-weight:800;

    margin:0;

    text-shadow:0 5px 15px rgba(0,0,0,.5);

}

.team-card::after{

    content:"";

    position:absolute;

    inset:0;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    pointer-events:none;

}

.team-card:hover::after{

    border-color:rgba(255,255,255,.25);

}

@media(max-width:768px){

#teamContainer{

grid-template-columns:1fr;

gap:20px;

}

.team-overlay h2{

font-size:25px;

}

}
/* ===========================
   TEAM DIVIDER
=========================== */

.team-divider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

    margin:80px 0;

}

.team-divider span{

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:5px;

    white-space:nowrap;

    opacity:.7;

}

.divider-line{

    width:180px;

    height:1px;

    background:rgba(255,255,255,.12);

}

@media(max-width:768px){

.team-divider{

gap:15px;

}

.divider-line{

width:70px;

}

}
#particles{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}
.team-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.team-card:hover{

    transform:translateY(-8px) scale(1.03);

    box-shadow:
        0 0 18px var(--glow),
        0 0 40px color-mix(in srgb, var(--glow) 70%, transparent),
        0 18px 45px rgba(0,0,0,.45);

}

.team-card::after{

    border:1px solid rgba(255,255,255,.08);

    transition:
        border-color .35s,
        box-shadow .35s;

}

.team-card:hover::after{

    border-color:var(--glow);

    box-shadow:
        inset 0 0 20px color-mix(in srgb, var(--glow) 45%, transparent),
        0 0 20px color-mix(in srgb, var(--glow) 60%, transparent);

}
/* =======================================
   TEAM CARD LIGHT EFFECT
======================================= */

.team-card{

    position:relative;
    overflow:hidden;

}

.card-light{

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%,-50%);

    background:radial-gradient(
        circle,
        rgba(255,255,255,.20) 0%,
        rgba(255,255,255,.10) 35%,
        rgba(255,255,255,0) 70%
    );

    opacity:0;

    transition:opacity .2s;

    z-index:5;

    mix-blend-mode:screen;

    filter:blur(20px);

}

.team-card:hover .card-light{

    opacity:1;

}

.team-image{

    position:relative;
    z-index:1;

}

.team-overlay{

    z-index:3;


}

.team-overlay{

    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;
    padding:22px;

    z-index:3;

}
.cursor-blur{
    display:none !important;
}