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

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:white;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

main{
    padding-top:90px;
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    min-height:95px;

    padding:18px 0;

}

/* LOGO */

.logo{

    position:relative;

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

  

    font-size:46px;

    white-space:nowrap;



    font-weight:900;

    letter-spacing:6px;

    text-transform:uppercase;

    background:linear-gradient(
        90deg,
        #ffffff,
        #00ff99,
        #00e1ff,
        #ffffff
    );

    background-size:300% 300%;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:
    logoGradient 6s ease infinite,
    logoFloat 3s ease-in-out infinite;

    cursor:pointer;

    transition:0.4s ease;

    filter:
    drop-shadow(0 0 10px rgba(0,255,153,0.35));

}



/* GLOW */

.logo::before{

    content:"";

    position:absolute;

    inset:-10px;

    background:radial-gradient(
        circle,
        rgba(0,255,153,0.18),
        transparent 70%
    );

    filter:blur(20px);

    z-index:-1;

    animation:pulseGlow 3s ease-in-out infinite;

}



/* HOVER */

.logo:hover{

    transform:scale(1.05);

    filter:
    drop-shadow(0 0 20px rgba(0,255,153,0.8));

}



/* GRADIENT MOVE */

@keyframes logoGradient{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}



/* FLOAT */

@keyframes logoFloat{

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

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

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

}



/* GLOW PULSE */

@keyframes pulseGlow{

    0%{
        opacity:0.5;
        transform:scale(1);
    }

    50%{
        opacity:1;
        transform:scale(1.08);
    }

    100%{
        opacity:0.5;
        transform:scale(1);
    }

}





nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.btn-dark,
.btn-green{

    position:relative;

    overflow:hidden;

    border:none;

    padding:14px 28px;

    border-radius:16px;

    cursor:pointer;

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

    font-size:15px;

    font-weight:700;

    letter-spacing:0.5px;

    transition:0.4s ease;

    text-transform:uppercase;

    backdrop-filter:blur(12px);

}



/* DARK BUTTON */

.btn-dark{

    background:rgba(255,255,255,0.05);

    color:white;

    border:1px solid rgba(255,255,255,0.08);

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

}



/* GREEN BUTTON */

.btn-green{

    background:linear-gradient(
        135deg,
        #00ff99,
        #00cc77
    );

    color:black;

    box-shadow:
    0 0 20px rgba(0,255,153,0.35),
    0 0 40px rgba(0,255,153,0.15);

}



/* HOVER */

.btn-dark:hover,
.btn-green:hover{

    transform:translateY(-4px) scale(1.03);

}



/* GREEN HOVER */

.btn-green:hover{

    box-shadow:
    0 0 30px rgba(0,255,153,0.7),
    0 0 60px rgba(0,255,153,0.3);

}



/* LIGHT EFFECT */

.btn-dark::before,
.btn-green::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition:0.7s;

}

.btn-dark:hover::before,
.btn-green:hover::before{

    left:120%;

}

.btn-dark{
    background:#181818;
    color:white;
}

.btn-green{
    background:#00ff99;
    color:black;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:radial-gradient(circle at top left,#00ff9940,transparent 30%), #050505;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#121212;
    padding:12px 20px;
    border-radius:999px;
    margin-bottom:30px;
    color:#00ff99;
}

.hero h1{
    font-size:70px;
    margin-bottom:25px;
}

.hero p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.big-btn{
    padding:18px 35px;
}

.glass-card{
    background:rgba(255,255,255,0.05);
    padding:50px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.05);
}

.bonus-price{
    font-size:50px;
    color:#00ff99;
    font-weight:800;
    margin:20px 0;
}

.full-btn{
    width:100%;
    margin-top:30px;
}

.cards-section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:50px;
}

.section-title p{
    color:#888;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card{
    background:#101010;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#00ff99;
}

.card img{
    width:100%;
    height:310px;
    object-fit:cover;
}

.card-content{
    padding:30px;
}

.bonus-box{
    display:inline-block;
    margin:20px 0;
    background:#00ff99;
    color:black;
    padding:10px 18px;
    border-radius:10px;
    font-weight:800;
}

.card p{
    color:#aaa;
    margin-bottom:25px;
}

.card button{
    margin-top: 18px;
    width:100%;
    border:none;
    padding:16px;
    border-radius:14px;
    background:#00ff99;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:900px){

    .hero-content{
        grid-template-columns:1fr;
    }

    nav{
        display:none;
    }

    .hero h1{
        font-size:45px;
    }

}

@media(max-width:600px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:20px 0;
        gap:20px;
    }

    .hero{
        padding-top:180px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}

/* SOCIAL TOP AREA */

.top-social-area{

    width:100%;

    background:#081122;

    padding:140px 0 30px;

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

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

}

.social-buttons{

    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

}

.social-btn{

    min-width:220px;

    height:58px;

    padding:0 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    border-radius:18px;

    background:#0b1120;

    border:1px solid rgba(255,255,255,0.08);

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

    font-size:16px;

    font-weight:700;

    color:#fff;

    text-transform:uppercase;

    white-space:nowrap;

    transition:0.4s ease;

    box-sizing:border-box;

     text-decoration:none;

}



/* ICON */

.social-btn i{

    font-size:18px;

    flex-shrink:0;

}



/* HOVER */

.social-btn:hover{

    transform:translateY(-4px);

    border-color:#00ff99;

    box-shadow:
    0 0 25px rgba(0,255,153,0.18);

}



/* TELEGRAM */

.telegram:hover{

    background:linear-gradient(
        135deg,
        #0088cc,
        #00bfff
    );

}



/* INSTAGRAM */

.instagram:hover{

    background:linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );

}



/* BUSINESS */

.business:hover{

    background:linear-gradient(
        135deg,
        #ff9800,
        #ff5722
    );

}



/* ROBOT */

.bot:hover{

    background:linear-gradient(
        135deg,
        #00ff99,
        #00c853
    );

}

.social-btn:hover{

    transform:translateY(-5px) scale(1.03);

    box-shadow:0 0 25px rgba(0,255,153,0.3);

    border-color:#00ff99;

}

.telegram:hover{
    background:#0088cc;
}

.instagram:hover{
    background:#d62976;
}

.business:hover{
    background:#ff9800;
}

.bot:hover{
    background:#00c853;
}


/* CIRCLE AREA */

.circle-slider{

    width:100%;

    background:#020817;

    padding:140px 0 40px;

    overflow:hidden;

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

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

}

.circle-track{

    width:90%;
    max-width:1400px;

    margin:auto;

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

    flex-wrap:wrap;

    gap:35px;

}

.circle-item{

    width:95px;
    height:95px;

    border-radius:50%;

    overflow:hidden;

    position:relative;

    border:3px solid #00ff99;

    cursor:pointer;

    transition:0.4s;

    animation:floatItem 3s ease-in-out infinite;

    box-shadow:
    0 0 20px rgba(0,255,153,0.35),
    0 0 40px rgba(0,255,153,0.15);

}

.circle-item:nth-child(2){
    animation-delay:0.4s;
}

.circle-item:nth-child(3){
    animation-delay:0.8s;
}

.circle-item:nth-child(4){
    animation-delay:1.2s;
}

.circle-item:nth-child(5){
    animation-delay:1.6s;
}

.circle-item:nth-child(6){
    animation-delay:2s;
}

.circle-item:nth-child(7){
    animation-delay:2.4s;
}

.circle-item img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.circle-item:hover{

    transform:scale(1.12);

    border-color:white;

    box-shadow:
    0 0 30px #00ff99,
    0 0 60px rgba(0,255,153,0.5);

}



/* FLOAT EFFECT */

@keyframes floatItem{

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

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

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

}



/* MOBILE */

@media(max-width:768px){

    .circle-track{

        gap:20px;

    }

    .circle-item{

        width:75px;
        height:75px;

    }

}

.circle-item{

    width:95px;
    height:95px;

    border-radius:50%;

    overflow:hidden;

    border:3px solid #00ff99;

    cursor:pointer;

    transition:0.4s;

    flex-shrink:0;

    box-shadow:0 0 20px rgba(0,255,153,0.25);

}

.circle-item img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.circle-item:hover{

    transform:scale(1.15);

    box-shadow:0 0 35px rgba(0,255,153,0.7);

}



/* ANIMATION */

@keyframes scrollSlider{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}



/* MOBILE */

@media(max-width:768px){

    .social-buttons{

        flex-direction:column;
        align-items:center;

    }

    .social-btn{

        width:90%;
        justify-content:center;

    }

    .circle-item{

        width:75px;
        height:75px;

    }

}

/* ICONS */

.social-btn i{

    font-size:20px;

    transition:0.4s;

}

.social-btn:hover i{

    transform:scale(1.2) rotate(5deg);

}

.btn-dark,
.btn-green{

    text-shadow:
    0 0 10px rgba(255,255,255,0.15);

    -webkit-font-smoothing:antialiased;

}



/* BUTTON TEXT EFFECT */

.btn-green{

    color:#04150d;

    font-weight:800;

    letter-spacing:1px;

}

.btn-dark{

    color:white;

    font-weight:700;

}

/* SECTION */

.recommended-section{

    width:90%;
    max-width:1400px;

    margin:120px auto;

}



/* TITLE */

.section-heading{

    display:flex;
    align-items:center;

    gap:16px;

    margin-bottom:40px;

}

.section-heading h2{

    color:#f5e6c8;

    font-size:36px;

    font-weight:800;

    letter-spacing:4px;

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

}

.line-glow{

    width:8px;
    height:45px;

    border-radius:999px;

    background:linear-gradient(
        180deg,
        #ffcf5a,
        #ff4d6d
    );

    box-shadow:
    0 0 20px rgba(255,180,0,0.8);

}



/* GRID */

.recommend-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:28px;

}



/* CARD */

.recommend-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #111827,
        #0b1020
    );

    border-radius:28px;

    padding:40px 30px;

    border:1px solid rgba(255,255,255,0.06);

    transition:0.45s ease;

    text-align:center;

    box-shadow:
    0 0 30px rgba(0,0,0,0.5);

}



/* HOVER */

.recommend-card:hover{

    transform:translateY(-10px);

    border-color:#ffcf5a;

    box-shadow:
    0 0 40px rgba(255,200,0,0.18);

}



/* GLOW */

.card-glow{

    position:absolute;

    width:250px;
    height:250px;

    background:radial-gradient(
        circle,
        rgba(255,207,90,0.18),
        transparent 70%
    );

    top:-120px;
    right:-120px;

}



/* LOGO */

.site-logo{

    width:170px;

    object-fit:contain;

    margin-bottom:30px;

    filter:drop-shadow(0 0 12px rgba(255,255,255,0.1));

}



/* TEXT */

.recommend-card h3{

    color:white;

    font-size:26px;

    margin-bottom:15px;

    font-weight:800;

}

.recommend-card p{

    color:#8b93a7;

    margin-bottom:28px;

    line-height:1.6;

}



/* GOLD BUTTON */

.gold-btn{

    width:100%;

    border:none;

    padding:18px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #ffcf5a,
        #e0a82e
    );

    color:#111;

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

    font-size:18px;

    font-weight:900;

    letter-spacing:3px;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 0 25px rgba(255,200,0,0.3);

}

.gold-btn:hover{

    transform:translateY(-4px) scale(1.03);

    box-shadow:
    0 0 40px rgba(255,200,0,0.5);

}



/* VIP */

.second-title{

    margin-top:90px;

}

.vip-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(380px,1fr));

    gap:30px;

}

.vip-card{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #151827,
        #0c1020
    );

    border-radius:30px;

    padding:45px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.06);

    transition:0.4s;

}

.vip-card:hover{

    transform:translateY(-10px);

    border-color:#ff2e6d;

    box-shadow:
    0 0 50px rgba(255,0,90,0.2);

}

.vip-badge{

    position:absolute;

    top:18px;
    right:18px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:#ff2e6d;

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

    font-size:13px;

    font-weight:800;

    color:white;

    box-shadow:
    0 0 25px rgba(255,0,90,0.5);

    animation:vipPulse 2s infinite;

}



/* PULSE */

@keyframes vipPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}



/* VIP LOGO */

.vip-logo{

    width:200px;

    margin-bottom:25px;

}



/* VIP TEXT */

.vip-card h3{

    font-size:28px;

    margin-bottom:16px;

    color:white;

}

.vip-card p{

    color:#9ca3af;

    margin-bottom:30px;

}



/* PINK BUTTON */

.pink-btn{

    width:100%;

    border:none;

    padding:20px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #ff2e6d,
        #d10050
    );

    color:white;

    font-size:20px;

    font-weight:900;

    letter-spacing:3px;

    cursor:pointer;

    transition:0.4s;

    box-shadow:
    0 0 30px rgba(255,0,90,0.35);

}

.pink-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 45px rgba(255,0,90,0.5);

}



/* MOBILE */

@media(max-width:768px){

    .section-heading h2{

        font-size:24px;

    }

    .vip-grid{

        grid-template-columns:1fr;

    }

}

.header-socials{

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

}



/* HEADER SOCIAL BUTTON */

.header-socials .social-btn{

    padding:14px 22px;

    border-radius:14px;

    font-size:13px;

}

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(2,6,23,0.92);

    backdrop-filter:blur(18px);

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

}

/* SIDE ADS */

.side-ads{

    position:fixed;

    top:50%;

    transform:translateY(-50%);

    z-index:999;

}



/* LEFT */

/* ADS */

.side-ads{

    position:fixed;

    z-index:9999;

}



/* LEFT */

.left-ads{

    left:15px;

    top:150px;

}



/* RIGHT */

.right-ads{

    right:15px;

    top:150px;

}



/* BOX */

.ad-box{

    width:180px;

    height:720px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    background:#020617;

    transition:0.45s ease;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 0 40px rgba(0,0,0,0.6);

}



/* IMAGE */

.ad-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:0.7s ease;

}



/* OVERLAY */

.ad-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.35)
    );

}



/* HOVER */

.ad-box:hover{

    transform:
    translateY(-8px)
    scale(1.03);

    box-shadow:
    0 0 45px rgba(0,255,153,0.2);

}

.ad-box:hover img{

    transform:scale(1.08);

}



/* NEON BORDER */

.ad-box::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:32px;

    background:linear-gradient(
        180deg,
        #00ff99,
        #00bfff,
        #ff2e6d
    );

    z-index:-1;

    opacity:0.75;

}



/* MOBILE */

@media(max-width:1450px){

    .side-ads{

        display:none;

    }

}


/* ADS */

.side-ads{

    position:fixed;

    z-index:9999;

    animation:adsFloat 4s ease-in-out infinite;

}



/* LEFT */

.left-ads{

    left:14px;

    top:305px;

}

.right-ads{

    right:14px;

    top:305px;

}



/* FLOAT */

@keyframes adsFloat{

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

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

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

}



/* BOX */

.ad-box{

    width:210px;

    height:700px;

    overflow:hidden;

    border-radius:30px;

    position:relative;

    background:#0b1120;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.45s ease;

    box-shadow:
    0 0 35px rgba(0,0,0,0.55);

}



/* IMAGE */

.ad-box img{

    width:120%;

    height:100%;

    object-fit:contain;

    object-position:center;

    background:#020617;

    padding:1px;

    display:block;

}



/* IMAGE HOVER */

.ad-box:hover img{

    transform:scale(1.08);

    filter:
    brightness(1)
    contrast(1.12)
    saturate(1.2);

}



/* BOX HOVER */

.ad-box:hover{

    transform:translateY(-10px) scale(1.03);

    border-color:#00ff99;

    box-shadow:
    0 0 45px rgba(0,255,153,0.22),
    0 0 90px rgba(0,255,153,0.08);

}



/* PREMIUM GLOW BORDER */

.ad-box::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:32px;

    background:linear-gradient(
        180deg,
        #00ff99,
        #00bfff,
        #ff2e6d,
        #00ff99
    );

    background-size:100% 300%;

    animation:borderFlow 5s linear infinite;

    z-index:-1;

    opacity:0.85;

}



/* SHINE */

.ad-box::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:80%;

    height:300%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform:rotate(25deg);

    animation:shineMove 4s linear infinite;

}



/* BORDER FLOW */

@keyframes borderFlow{

    0%{
        background-position:0% 0%;
    }

    100%{
        background-position:0% 300%;
    }

}



/* SHINE MOVE */

@keyframes shineMove{

    0%{
        top:-140%;
    }

    100%{
        top:140%;
    }

}



/* MOBILE */

@media(max-width:1450px){

    .side-ads{

        display:none;

    }

}

.site-logo{

    width:180px;
    height:80px;

    object-fit:contain;

}

@media (max-width:768px){

    .site-logo{

        width:35vw;
        max-width:120px;
        height:auto;

    }

}

/* BOSS AVATAR */

.boss-avatar{
    width:80px;
    height:80px;

    border-radius:50%;
    overflow:hidden;

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

    border:3px solid #00ff99;

    box-shadow:
    0 0 15px rgba(0,255,153,.6),
    0 0 35px rgba(0,255,153,.25);

    animation: bossFloat 3s ease-in-out infinite;

    flex-shrink:0; /* 🔥 mobilde ezilmesin */
}

.boss-avatar img{
    width:100% !important;
    height:100% !important;

    object-fit:cover !important;

    display:block !important;
}

/* Parlayan halka */

.boss-avatar::before{

    content:"";

    position:absolute;

    inset:-4px;

    border-radius:50%;

    border:2px solid rgba(0,255,153,.5);

    animation:bossPulse 2s infinite;

}

/* Yukarı aşağı hareket */

@keyframes bossFloat{

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

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

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

}

/* Halka animasyonu */

@keyframes bossPulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.25);
        opacity:0;
    }

}

/* ================================= */
/* MOBİL DÜZENLEME */
/* ================================= */

@media (max-width:768px){

    /* HEADER */

    header{
        position:static !important;
        height:auto !important;
    }

    .navbar{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        gap:15px !important;
        padding:15px 10px !important;
    }

    /* LOGO */

    .logo{
        font-size:38px !important;
        letter-spacing:2px !important;
        margin-bottom:10px !important;
        text-align:center !important;
    }

    /* SOSYAL BUTONLAR */

    .header-socials{
        width:95% !important;
        margin:0 auto !important;

        display:grid !important;
        grid-template-columns:1fr 1fr !important;

        gap:10px !important;
    }

    .header-socials .social-btn{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        padding:10px 6px !important;

        font-size:10px !important;

        text-align:center !important;
    }

    /* DAİRE ALANI */

    .circle-slider{
        margin-top:35px !important;
        padding:20px 0 !important;
    }

    .circle-track{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;

        gap:12px !important;
        margin-top:10px !important;
    }

    .circle-item{
        width:60px !important;
        height:60px !important;
    }

    /* BOSS AVATAR */

    .boss-avatar{
        width:50px !important;
        height:50px !important;
    }

    /* KART LOGOLARI */

    .site-logo{
        width:70px !important;
        height:auto !important;
        object-fit:contain !important;
    }

}

@media (max-width:768px){

    /* Sosyal butonlar ortalansın */

    .header-socials{

        display:grid !important;

        grid-template-columns:1fr 1fr !important;

        gap:10px !important;

        width:95% !important;

        margin:0 auto !important;

        justify-content:center !important;

        align-items:center !important;

    }

    .header-socials .social-btn{

        display:flex !important;

        justify-content:center !important;

        align-items:center !important;

        text-align:center !important;

    }

    /* Logo ile butonlar arasındaki boşluk */

    .logo{

        margin-bottom:10px !important;

    }

    /* Header altındaki siyah boşluğu kaldır */

    .circle-slider{

        margin-top:0 !important;

        padding-top:15px !important;

    }

    /* Header'ın altındaki gereksiz boşluk */

    .navbar{

        padding-bottom:10px !important;

        margin-bottom:0 !important;

    }

}

@media (max-width:768px){

    header{
        margin-bottom:0 !important;
    }

    .navbar{
        margin-bottom:0 !important;
        padding-bottom:0 !important;
    }

    .circle-slider{
        margin-top:0 !important;
        padding-top:10px !important;
    }

}

.circle-track{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    background:rgba(0,0,0,0.85);

    border-bottom:none !important; /* 🔥 virgül çizgisini yok eder */

    backdrop-filter: blur(10px);
}

@media (max-width:768px){

    /* GENEL TAŞMA FIX */
    html, body{
        overflow-x:hidden !important;
    }

    *{
        box-sizing:border-box;
    }

    /* HEADER */
    header{
        width:100% !important;
    }

    .navbar{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;

        padding:10px !important;
        gap:12px !important;
    }

    /* LOGO TAŞMA FIX */
    .logo{
        font-size:26px !important;
        text-align:center !important;
        white-space:normal !important;
        word-break:break-word !important;
    }

    /* SOSYAL BUTONLAR */
    .header-socials{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;

        width:100% !important;
    }

    .social-btn{
        width:100% !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        padding:12px !important;
        font-size:12px !important;

        text-align:center !important;
    }

    /* CIRCLE ALAN */
    .circle-track{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:10px !important;
    }

    .circle-item{
        width:60px !important;
        height:60px !important;
        flex-shrink:0 !important;
    }

    .circle-item img{
        width:100% !important;
        height:100% !important;
        object-fit:cover !important;
        display:block !important;
    }

    /* HEADER ALT BOŞLUK FIX */
    .circle-slider{
        margin-top:0 !important;
        padding-top:10px !important;
    }
}


@media (max-width:768px){
    .logo{
        font-size:20px !important;
        letter-spacing:1px !important;
        margin-bottom:10px !important;
        text-align:center !important;
    }
}

/* ===== CLEAN MOBILE FIX ===== */
@media (max-width:768px){

html,body{
    overflow-x:hidden !important;
}

.container{
    width:95% !important;
}

header{
    position:static !important;
}

main{
    padding-top:0 !important;
}

.navbar{
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    gap:12px !important;
    min-height:auto !important;
}

.logo{
    font-size:22px !important;
    letter-spacing:1px !important;
    white-space:normal !important;
    text-align:center !important;
    word-break:break-word !important;
}

.header-socials{
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    gap:10px !important;
}

.social-btn{
    width:100% !important;
    justify-content:center !important;
    font-size:12px !important;
}

.circle-track{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:10px !important;
}

.circle-item{
    width:60px !important;
    height:60px !important;
}

.circle-item img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}

.hero-content{
    grid-template-columns:1fr !important;
}

.hero h1{
    font-size:36px !important;
}

}

/* MOBİL HEADER FIX */
@media (max-width:768px){

    header{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        width:100% !important;
        height:auto !important;
        padding:10px 0 !important;
    }

    .navbar{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        gap:10px !important;
        padding:10px !important;
    }

    .logo{
        display:block !important;
        width:100% !important;
        font-size:20px !important;
        letter-spacing:0 !important;
        text-align:center !important;
        white-space:normal !important;
        line-height:1.2 !important;
        margin:0 auto 10px auto !important;
    }

}

.join-popup{

    display:none;

    position:fixed;

    inset:0;

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

    backdrop-filter:blur(6px);

    z-index:999999;

    justify-content:center;

    align-items:center;

}

.popup-content{

    width:420px;

    max-width:90%;

    background:#081122;

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

    border-radius:25px;

    padding:30px;

    text-align:center;

    position:relative;

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

}

.popup-content h3{

    color:#fff;

    margin-bottom:25px;

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

}

.popup-sites{

    display:flex;

    justify-content:center;

    gap:20px;

}

.popup-site{

    width:140px;

    height:90px;

    border-radius:15px;

    overflow:hidden;

    transition:.3s;

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

}

.popup-site:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 25px rgba(0,255,153,.3);

}

.popup-site img{

    width:100%;

    height:100%;

    object-fit:contain;

    background:#111827;

}

.close-popup{

    position:absolute;

    right:18px;

    top:10px;

    font-size:28px;

    color:#fff;

    cursor:pointer;

}

.big-logo{
    width:280px !important;
    height:140px !important;
    object-fit:contain;
}
.live-counter{
    background:#102d2a;
    padding:6px 14px;
    border-radius:20px;
    border:1px solid #00ffcc;
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    backdrop-filter:none !important;
    filter:none !important;
}

#sayi{
    color:#00ffcc;
    font-weight:900;
    text-shadow:none !important;
    filter:none !important;
}