@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background: #050505;
    color: #ededed;

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

/* =====================================================
   AMBIENT BACKGROUND
===================================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    z-index: -2;
    pointer-events: none;

    background:
        radial-gradient(
            700px 500px at -5% -5%,
            rgba(198, 151, 55, .055),
            transparent 70%
        ),
        radial-gradient(
            700px 500px at 105% -5%,
            rgba(198, 151, 55, .045),
            transparent 70%
        ),
        radial-gradient(
            800px 600px at -5% 105%,
            rgba(198, 151, 55, .035),
            transparent 70%
        ),
        radial-gradient(
            800px 600px at 105% 105%,
            rgba(198, 151, 55, .045),
            transparent 70%
        );
}

body::after {
    content: "";
    position: fixed;
    inset: 0;

    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            transparent 35%,
            rgba(0,0,0,.42) 100%
        );
}

/* Karıncalanmayı tamamen kapat */
.noise {
    display: none !important;
}

/* =====================================================
   NAVBAR
===================================================== */

.nav {
    height: 78px;

    padding: 0 6vw;

    display: flex;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(5,5,5,.82);

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #eee;
    text-decoration: none;

    font-size: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand span {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #a8a8a8 32%,
            #3f3f3f 48%,
            #eeeeee 58%,
            #777 78%,
            #f5f5f5 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.brand small {
    margin-top: 11px;

    color: #555;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 3px;
}

.nav nav {
    display: flex;
    align-items: center;

    gap: 32px;

    margin-left: auto;
    margin-right: 35px;
}

.nav nav a {
    color: #686868;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    transition: .25s ease;
}

.nav nav a:hover {
    color: #e0e0e0;
}

.nav-btn {
    padding: 11px 16px;

    color: #a7a7a7;

    text-decoration: none;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.7px;

    border: 1px solid #303030;

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

    transition: .25s ease;
}

.nav-btn:hover {
    color: #fff;

    border-color: #686868;

    background: rgba(255,255,255,.025);
}

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

.hero {
    min-height: 690px;

    padding: 85px 8vw;

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

    align-items: center;

    position: relative;

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

/* Çok hafif üst/alt ambient */

.hero::before {
    content: "";

    position: absolute;

    left: 5%;
    right: 5%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210,165,70,.12),
            transparent
        );

    box-shadow:
        0 0 18px rgba(210,165,70,.035);

    pointer-events: none;
}

.hero-copy {
    max-width: 610px;

    position: relative;
    z-index: 2;
}

/* =====================================================
   EYEBROW
===================================================== */

.eyebrow {
    display: flex;
    align-items: center;

    color: #666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.eyebrow i {
    width: 5px;
    height: 5px;

    margin-right: 9px;

    display: inline-block;

    border-radius: 50%;

    background: #d5d5d5;

    box-shadow:
        0 0 8px rgba(255,255,255,.35);
}

/* =====================================================
   CLTR CHROME
===================================================== */

.hero h1 {
    margin-top: 30px;
    margin-bottom: 30px;

    font-size: clamp(95px, 14vw, 190px);

    line-height: .72;

    letter-spacing: -.095em;

    background:
        linear-gradient(
            180deg,

            #ffffff 0%,
            #eeeeee 9%,
            #8f8f8f 25%,
            #3b3b3b 39%,
            #fafafa 48%,
            #bcbcbc 58%,
            #4a4a4a 72%,
            #dcdcdc 84%,
            #ffffff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    filter:
        drop-shadow(0 3px 3px rgba(0,0,0,.85))
        drop-shadow(0 0 25px rgba(255,255,255,.025));
}

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

.hero-copy > p {
    max-width: 470px;

    color: #666;

    font-size: 12px;
    line-height: 1.8;
}

/* =====================================================
   BUTTONS
===================================================== */

.actions {
    display: flex;
    gap: 10px;

    margin-top: 30px;
}

.primary,
.secondary {
    min-height: 44px;

    padding: 0 17px;

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

    gap: 25px;

    text-decoration: none;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.7px;

    transition: .25s ease;
}

.primary {
    color: #080808;

    background: #e4e4e4;

    border: 1px solid #e4e4e4;
}

.primary:hover {
    background: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255,255,255,.08);
}

.secondary {
    color: #777;

    border: 1px solid #2d2d2d;

    background: rgba(255,255,255,.008);
}

.secondary:hover {
    color: #ddd;

    border-color: #555;
}

/* =====================================================
   MUSIC SIDE
===================================================== */

.hero-mark {
    width: min(100%, 520px);

    margin-left: auto;

    position: relative;
    z-index: 2;
}

/* Ambient player arkasında */

.hero-mark::before {
    content: "";

    position: absolute;

    inset: -130px;

    z-index: -1;

    background:
        radial-gradient(
            ellipse,
            rgba(190,145,50,.035),
            transparent 70%
        );

    filter: blur(55px);

    pointer-events: none;
}

.music-heading {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: #666;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
}

.music-heading i {
    width: 5px;
    height: 5px;

    display: inline-block;

    border-radius: 50%;

    background: #ccc;

    box-shadow:
        0 0 8px rgba(255,255,255,.35);
}

/* =====================================================
   MUSIC PLAYER
===================================================== */

.music-player {
    padding: 10px;

    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(24,24,24,.95),
            rgba(7,7,7,.98)
        );

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

    box-shadow:
        0 30px 80px rgba(0,0,0,.65),
        inset 0 1px 0 rgba(255,255,255,.035);
}

/* ince altın yansıma */

.music-player::before {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210,165,70,.2),
            transparent
        );
}

.music-player iframe {
    display: block;

    width: 100%;
    height: 152px;

    border: 0;
    border-radius: 11px;
}

/* =====================================================
   TRACK LIST
===================================================== */

.track-list {
    margin-top: 17px;

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

.track-title {
    padding: 14px 2px 11px;

    color: #414141;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.track {
    width: 100%;

    min-height: 62px;

    padding: 0 12px;

    display: grid;

    grid-template-columns: 35px 1fr 25px;

    align-items: center;

    text-align: left;

    color: #777;

    background: transparent;

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

    cursor: pointer;

    transition: .25s ease;
}

.track:hover {
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.025),
            transparent
        );

    color: #ccc;
}

.track.active {
    background:
        linear-gradient(
            90deg,
            rgba(190,145,50,.035),
            transparent
        );
}

.track-number {
    color: #404040;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.track.active .track-number {
    color: #9a7940;
}

.track-info {
    min-width: 0;
}

.track-name {
    overflow: hidden;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.track.active .track-name {
    color: #ddd;
}

.track-sub {
    margin-top: 5px;

    color: #444;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
}

.track-arrow {
    color: #444;

    font-size: 8px;

    text-align: right;
}

.track.active .track-arrow {
    color: #aaa;
}

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

.music-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 14px;

    color: #3d3d3d;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

/* =====================================================
   BOT + TEAM
===================================================== */

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin: 0 6vw;
}

.panel {
    min-width: 0;

    padding: 65px 5vw;

    position: relative;

    border-left: 1px solid rgba(255,255,255,.05);
}

.team-panel {
    border-right: 1px solid rgba(255,255,255,.05);
}

/* Köşe ambientleri */

.bot-panel::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -280px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190,145,50,.025),
            transparent 70%
        );

    filter: blur(45px);

    pointer-events: none;
}

.team-panel::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -280px;
    bottom: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190,145,50,.025),
            transparent 70%
        );

    filter: blur(45px);

    pointer-events: none;
}

/* =====================================================
   PANEL HEAD
===================================================== */

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.tag {
    color: #4d4d4d;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.status,
.count {
    color: #454545;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 2px;
}

.status b {
    width: 5px;
    height: 5px;

    margin-right: 7px;

    display: inline-block;

    border-radius: 50%;

    background: #ccc;

    box-shadow:
        0 0 8px rgba(255,255,255,.3);
}

/* =====================================================
   PANEL TITLES
===================================================== */

.panel h2 {
    margin-bottom: 12px;

    color: #ddd;

    font-size: 34px;
    font-weight: 800;

    letter-spacing: -1.5px;
}

.panel h2 em {
    color: #505050;

    font-style: normal;
}

.muted {
    max-width: 450px;

    color: #5a5a5a;

    font-size: 11px;
    line-height: 1.8;
}

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

.features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.features article {
    min-height: 66px;

    display: flex;
    align-items: center;

    gap: 18px;

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

    transition: .25s ease;
}

.features article:last-child {
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.features article:hover {
    padding-left: 7px;

    background:
        linear-gradient(
            90deg,
            rgba(190,145,50,.02),
            transparent
        );
}

.features article > b {
    width: 22px;

    color: #3f3f3f;

    font-size: 8px;
}

.features strong {
    display: block;

    color: #999;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.features span {
    display: block;

    margin-top: 6px;

    color: #4d4d4d;

    font-size: 9px;
}

/* =====================================================
   WIDE BUTTON
===================================================== */

.wide-btn {
    width: 100%;
    min-height: 46px;

    padding: 0 16px;

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

    color: #777;

    text-decoration: none;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.7px;

    border: 1px solid #292929;

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

    transition: .25s ease;
}

.wide-btn:hover {
    color: #080808;

    background: #ddd;

    border-color: #ddd;
}

/* =====================================================
   MEMBERS
===================================================== */

.members {
    margin-top: 30px;
}

.member {
    min-height: 76px;

    display: grid;

    grid-template-columns: 52px 1fr 25px;

    align-items: center;

    gap: 14px;

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

    transition: .25s ease;
}

.member:last-child {
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.member:hover {
    transform: translateX(5px);
}

.avatar {
    width: 48px;
    height: 48px;

    overflow: hidden;

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

    border: 1px solid #2d2d2d;

    border-radius: 50%;

    background: #0c0c0c;

    box-shadow:
        0 8px 25px rgba(0,0,0,.4);
}

.avatar img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}

.member strong {
    display: block;

    color: #aaa;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.member span {
    display: block;

    margin-top: 5px;

    color: #444;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
}

.member > b {
    color: #3d3d3d;

    font-size: 8px;

    text-align: right;
}

/* =====================================================
   DISCORD
===================================================== */

.discord {
    margin: 75px 6vw;

    padding: 65px 6vw;

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

    gap: 40px;

    position: relative;
    overflow: hidden;

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

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.018),
            rgba(255,255,255,.004)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);
}

.discord::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 400px;

    right: -300px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(195,150,55,.04),
            transparent 70%
        );

    filter: blur(50px);

    pointer-events: none;
}

.discord h2 {
    margin: 17px 0 8px;

    color: #ddd;

    font-size: clamp(38px, 5vw, 67px);
    font-weight: 800;

    line-height: .9;

    letter-spacing: -4px;
}

.discord h2 span {
    color: #555;
}

.discord p {
    color: #555;

    font-size: 11px;
}

.primary.big {
    min-width: 185px;

    position: relative;
    z-index: 2;
}

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

footer {
    min-height: 70px;

    padding: 0 6vw;

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

    color: #383838;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 2px;

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

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

@media (max-width: 850px) {

    .nav {
        padding: 0 5vw;
    }

    .nav nav {
        display: none;
    }

    .nav-btn {
        margin-left: auto;
    }

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

        padding: 70px 7vw;
    }

    .hero-mark {
        width: 100%;

        margin-top: 70px;
    }

    .split {
        grid-template-columns: 1fr;

        margin: 0;
    }

    .panel {
        border-right: 1px solid rgba(255,255,255,.05);
    }

    .discord {
        margin: 55px 5vw;

        flex-direction: column;
        align-items: flex-start;
    }

    .discord .big {
        width: 100%;
    }
}

@media (max-width: 500px) {

    .nav {
        height: 70px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        padding: 60px 6vw;
    }

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

    .actions {
        flex-direction: column;
    }

    .actions a {
        width: 100%;
    }

    .hero-mark {
        margin-top: 60px;
    }

    .panel {
        padding: 50px 7vw;
    }

    .member {
        grid-template-columns: 48px 1fr 20px;

        gap: 12px;
    }

    .avatar {
        width: 45px;
        height: 45px;
    }

    .discord {
        padding: 50px 7vw;
    }

    .discord h2 {
        font-size: 43px;
    }

    footer {
        padding: 20px 5vw;

        gap: 20px;

        flex-direction: column;
        justify-content: center;
    }
}
