
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#050505;
color:white;
overflow-x:hidden;
}

/* Blur Arka Plan */

.background-blur{
position:fixed;
border-radius:50%;
filter:blur(150px);
z-index:-1;
}

.blur1{
width:300px;
height:300px;
background:white;
opacity:.08;
top:100px;
left:-100px;
}

.blur2{
width:400px;
height:400px;
background:white;
opacity:.06;
right:-100px;
bottom:-100px;
}

/* Navbar */

.navbar{
width:100%;
height:90px;

padding:0 8%;

display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:38px;
font-weight:700;
letter-spacing:4px;

color:white;

text-shadow:
0 0 10px white,
0 0 25px white;
}

.menu{
display:flex;
list-style:none;
gap:40px;
}

.menu a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:500;
letter-spacing:1px;
transition:.3s;
}

.menu a:hover{
text-shadow:
0 0 8px white,
0 0 20px white;
}

/* Hero */

.hero{
width:100%;
height:calc(100vh - 90px);

padding:0 8%;

display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
}

/* Sol Taraf */

.left{
max-width:600px;
}

.tag{
display:inline-block;

padding:8px 18px;

border:1px solid rgba(255,255,255,.2);

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

border-radius:30px;

margin-bottom:25px;
}

.left h1{
font-size:72px;
line-height:80px;

margin-bottom:20px;

text-shadow:
0 0 15px white;
}

.left p{
font-size:17px;
line-height:32px;
opacity:.8;
margin-bottom:40px;
}

.buttons{
display:flex;
gap:15px;
}

.btn-primary{
padding:14px 35px;
border:none;
border-radius:12px;

background:white;
color:black;

font-weight:600;
cursor:pointer;
}

.btn-secondary{
padding:14px 35px;

border:1px solid rgba(255,255,255,.2);

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

color:white;

border-radius:12px;
cursor:pointer;
}

/* Sağ Taraf */

.slider-card{

width:700px;
height:450px;

overflow:hidden;

border-radius:25px;

background:rgba(255,255,255,.04);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.1);

box-shadow:
0 0 40px rgba(255,255,255,.1);
}

.slider-track{
display:flex;
width:300%;
height:100%;

animation:slide 15s infinite;
}

.slider-track img{
width:100%;
object-fit:cover;
}

/* Animasyon */

@keyframes slide{

0%,25%{
transform:translateX(0);
}

33%,58%{
transform:translateX(-33.33%);
}

66%,91%{
transform:translateX(-66.66%);
}

100%{
transform:translateX(0);
}

}/* LOS SANTOS BACKGROUND */

.city-bg{
position:fixed;
left:0;
bottom:0;

width:100%;
height:100%;

background:
linear-gradient(
to top,
rgba(0,0,0,0.95),
rgba(0,0,0,0.75)
),

url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000");

background-size:cover;
background-position:center;

opacity:.35;

z-index:-2;
}

/* KARAKTER GRID */

.crew-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:25px;
}

/* KART */

.character-card{

width:280px;
height:340px;

position:relative;

overflow:hidden;

border-radius:25px;

background:rgba(255,255,255,.04);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.1);

transition:.4s;

cursor:pointer;
}

.character-card:hover{

transform:
translateY(-10px)
scale(1.03);

box-shadow:
0 0 25px rgba(255,255,255,.15);
}

.character-card img{

width:100%;
height:100%;

object-fit:cover;
}

/* BİLGİ */

.card-info{

position:absolute;

left:0;
bottom:0;

width:100%;

padding:20px;

background:
linear-gradient(
to top,
rgba(0,0,0,.95),
transparent
);
}

.card-info h3{

font-size:22px;
margin-bottom:5px;

text-shadow:
0 0 10px white;
}

.card-info span{

font-size:14px;
opacity:.7;
letter-spacing:2px;
}.btn-primary,
.btn-secondary{
    transition:0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-2px);
    box-shadow:
    0 0 15px rgba(255,255,255,0.25),
    0 0 35px rgba(255,255,255,0.12);
}/* EKİBİ KEŞFET GLASS + GLOW FIX */
.btn-primary{
    text-decoration:none;
    display:inline-block;
}

/* hover glow upgrade */
.btn-primary:hover{
    box-shadow:
    0 0 18px rgba(255,255,255,0.35),
    0 0 45px rgba(255,255,255,0.15);
}

/* smooth click feel */
.btn-primary:active{
    transform:scale(0.98);
}/* ===== CREW FIX FINAL ===== */

.crew-wrapper{
    padding:60px 8%;
}

/* HERO */
.crew-hero{
    position:relative;
    width:100%;
    height:480px;

    border-radius:25px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);
}

.crew-hero img{
    width:100%;
    height:100%;
    object-fit:cover;

    filter:brightness(0.55) contrast(1.1);
}

/* overlay */
.crew-hero-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:60px;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        transparent
    );
}

.crew-hero-overlay h1{
    font-size:58px;
    letter-spacing:2px;
}

.crew-hero-overlay p{
    margin-top:10px;
    color:rgba(255,255,255,0.7);
}

/* TEXT SECTION */
.crew-text{
    margin-top:60px;
    max-width:1100px;
    text-align: center;
    margin-left: 250px;
    
}

.crew-text h2{
    font-size:34px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.crew-text p{
    color:rgba(255,255,255,0.7);
    line-height:32px;
    margin-bottom:20px;
}.logo img{
    height:80px;
    width:auto;

    object-fit:contain;

    cursor:pointer;

    filter:drop-shadow(0 0 10px rgba(255,255,255,0.25));
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}.logo{
    display:flex;
    align-items:center;
    height:100%;
}

.navbar{
    align-items:center;
}

/* 🔥 kesin hizalama fix */
.logo img{
    height:80px;
    width:auto;
    display:block;

    filter:drop-shadow(0 0 10px rgba(255,255,255,0.25));
    transition:0.3s ease;

    transform: translateY(1px);
}

.logo img:hover{
    transform: translateY(1px) scale(1.05);
}.hero-logo img{
    width:200px;   /* NOS yazısı ile aynı görsel ağırlık */
    height:auto;

    display:block;

    margin:10px 0 20px 0;

    filter:drop-shadow(0 0 20px rgba(255,255,255,0.25));

    transition:0.3s ease;
}

.hero-logo img:hover{
    transform:scale(1.03);
}.discord-float{
    position:fixed;
    bottom:25px;
    left:25px;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(185, 183, 183, 0.05);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:50%;

    cursor:pointer;

    transition:0.3s ease;

    z-index:999;
}

.discord-float img{
    width:28px;
    height:28px;

    filter:drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.discord-float:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px rgba(255,255,255,0.15);
}/* ===== GALLERY PAGE ===== */

.gallery-page{
    padding:120px 8%;
}

.gallery-title{
    font-size:48px;
    margin-bottom:40px;
    letter-spacing:3px;
    text-shadow:0 0 15px rgba(255,255,255,0.12);
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

/* ITEM */
.gallery-item{
    height:180px;
    border-radius:16px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.3s ease;
}

/* IMAGE */
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    filter:brightness(0.85);
    transition:0.3s ease;
}

/* HOVER */
.gallery-item:hover{
    transform:scale(1.04);
    box-shadow:0 0 20px rgba(255,255,255,0.12);
}

/* RESPONSIVE */
@media(max-width:1100px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:700px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}/* ===== LIGHTBOX ===== */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.9);
    backdrop-filter:blur(10px);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;
}

.lightbox img{
    max-width:85%;
    max-height:85%;

    border-radius:12px;

    box-shadow:0 0 40px rgba(255,255,255,0.15);
    animation:zoomIn 0.2s ease;
}

@keyframes zoomIn{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;

    font-size:40px;
    color:white;

    cursor:pointer;

    transition:0.3s;
}

.lightbox-close:hover{
    transform:scale(1.2);
}.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;

    will-change:transform;
}.characters-page{
    padding:120px 8%;
}

.characters-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.char-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s;
    text-align:center;
}

.char-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,255,255,0.1);
}

.char-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.char-card h3{
    margin-top:10px;
}

.char-card span{
    opacity:0.7;
    font-size:13px;
    margin-bottom:15px;
    display:block;
}

/* MODAL */
.char-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.char-box{
    width:60%;
    padding:40px;
    background:rgba(20,20,20,0.9);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
}

.char-box h2{
    margin-bottom:15px;
}

.char-box p{
    line-height:28px;
    opacity:0.85;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    cursor:pointer;
}/* CHAR MODAL SCROLL FIX */
.char-box {
    width: 60%;
    max-height: 80vh; /* yüksekliği sınırla */
    padding: 40px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow-y: auto; /* dikey scroll ekle */
}

.char-box::-webkit-scrollbar {
    width: 8px;
}

.char-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.char-box p {
    line-height: 28px;
    opacity: 0.85;
    margin-bottom: 0;
}.char-box {
    max-height: 80vh;
    overflow-y: auto;
}.btn-secondary {
    padding: 14px 35px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(5px);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none; /* Bu satır çizgiyi kaldırır */
    display: inline-block; /* Daha düzgün tıklanabilir alan için */
    text-align: center;
}@media(max-width:900px){

.navbar{
padding:0 5%;
}

.menu{
display:none; /* şimdilik menüyü gizliyoruz */
}

.hero{
flex-direction:column;
height:auto;
padding-top:40px;
}

.left{
max-width:100%;
text-align:center;
}

.left p{
font-size:15px;
line-height:28px;
}

.buttons{
justify-content:center;
flex-wrap:wrap;
}

.right{
width:100%;
}

.crew-grid{
grid-template-columns:1fr;
}

.character-card{
width:100%;
}

.hero-logo img{
margin:0 auto 20px auto;
}

}/* ===== APPLICATION SAFE ===== */

.application-page{
    padding:120px 8%;
    display:flex;
    justify-content:center;
}

.application-wrapper{
    width:100%;
    max-width:600px;
}

.form-title{
    text-align:center;
    font-size:38px;
    margin-bottom:30px;
}

/* FORM BOX */
.application-form{
    display:flex;
    flex-direction:column;
    gap:15px;

    padding:30px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
}

/* INPUTS */
.application-form input,
.application-form textarea{
    padding:12px;
    border-radius:10px;

    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);

    color:white;
    outline:none;
}

/* TEXTAREA */
.application-form textarea{
    min-height:140px;
    resize:none;
}

/* BUTTON FIX */
.application-form .btn-primary{
    margin-top:10px;
    text-align:center;
}.application-form select{
    padding:12px;
    border-radius:10px;

    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);

    color:white;
    outline:none;

    appearance:none; /* default oku kaldırır */
    cursor:pointer;
}

/* option yazıları */
.application-form select option{
    background:#111;
    color:white;
}/* SELECT WRAPPER */
.select-wrapper{
    position:relative;
    width:100%;
}

/* SELECT */
.select-wrapper select{
    width:100%;
    padding:12px;
    border-radius:10px;

    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.04);

    color:white;
    outline:none;

    appearance:none;
    cursor:pointer;
}

/* OK İKONU */
.select-wrapper::after{
    content:"▼";
    position:absolute;

    right:15px;
    top:50%;
    transform:translateY(-50%);

    font-size:12px;
    color:rgba(255,255,255,0.6);

    pointer-events:none;
}

/* hover efekti */
.select-wrapper:hover::after{
    color:white;
}.notification{
    position:fixed;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    padding:15px 30px;
    background:rgba(20,20,20,0.95);
    color:white;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
    transition:0.5s;
    z-index:9999;
}

.notification.show{
    top:30px;
}.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.4s;
    z-index: 9999;
}

/* ===== PREMIUM GLASS NOTIFICATION (WHITE GLOW VERSION) ===== */

.notification {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    border-radius: 14px;

    font-size: 14px;
    color: rgba(255,255,255,0.9);

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
        0 0 25px rgba(255,255,255,0.08),
        inset 0 0 10px rgba(255,255,255,0.05);

    transition: all 0.45s cubic-bezier(.22,.61,.36,1);
    opacity: 0;
    z-index: 9999;
}

/* SHOW */
.notification.show {
    top: 25px;
    opacity: 1;
}

/* SUCCESS (YEŞİL DEĞİL → NEON GLASS MAVİ/BEYAZ) */
.notification.success {
    border: 1px solid rgba(56,189,248,0.35);
    box-shadow:
        0 0 25px rgba(56,189,248,0.25),
        0 0 60px rgba(255,255,255,0.08),
        inset 0 0 10px rgba(255,255,255,0.05);
}

/* ERROR */
.notification.error {
    border: 1px solid rgba(239,68,68,0.35);
    box-shadow:
        0 0 25px rgba(239,68,68,0.2),
        inset 0 0 10px rgba(255,255,255,0.05);
}

/* ICON */
.notification .icon {
    font-weight: bold;
    opacity: 0.9;

}

/* AKTİF */
.notification.show {
    top: 25px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* SUCCESS → BEYAZ NEON */
.notification.success {
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow:
        0 0 25px rgba(255,255,255,0.35),
        0 0 60px rgba(255,255,255,0.15),
        inset 0 0 10px rgba(255,255,255,0.1);
}

/* ERROR */
.notification.error {
    border: 1px solid rgba(239,68,68,0.4);
    box-shadow:
        0 0 20px rgba(239,68,68,0.25),
        inset 0 0 10px rgba(239,68,68,0.1);
}
.navbar {
    display: flex;
    align-items: center;
}

.menu {
    margin-left: 40px; /* logodan biraz boşluk */
}

.auth-buttons {
    margin-left: 20px; /* menüye yaklaşır */
}.user-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* kullanıcı */
.user-name {
    font-size: 14px;
    color: #e2e8f0;
    opacity: 0.8;
}

/* çıkış butonu */
.logout-btn {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;

    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.logout-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* login butonları */
.auth-links a {
    font-size: 14px;
    color: #38bdf8;
    text-decoration: none;
}/* ===== GLOBAL THEME UPGRADE ===== */
:root{
--glass-bg: rgba(255,255,255,0.04);
--glass-border: rgba(255,255,255,0.1);
--glass-strong: rgba(255,255,255,0.08);

--text-soft: rgba(255,255,255,0.7);

--glow-soft: 0 0 20px rgba(255,255,255,0.08);
--glow-strong: 0 0 40px rgba(255,255,255,0.15);


}

/* ===== GENEL GLASS STANDARD ===== */
.glass{
background: var(--glass-bg);
backdrop-filter: blur(5px);
border:1px solid var(--glass-border);
box-shadow: var(--glow-soft);
}

/* ===== BUTTON UPGRADE ===== */
.btn-primary{
background: white;
color:black;
border-radius:12px;
transition:0.3s;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:
0 0 20px rgba(255,255,255,0.4),
0 0 50px rgba(255,255,255,0.2);
}

.btn-secondary{
background: var(--glass-bg);
border:1px solid var(--glass-border);
backdrop-filter: blur(5px);
}

.btn-secondary:hover{
transform:translateY(-2px);
box-shadow: var(--glow-soft);
}

/* ===== FORM (EN ÖNEMLİ DÜZENLEME) ===== */
.application-form{
background: var(--glass-bg);
border:1px solid var(--glass-border);
backdrop-filter: blur(5px);
box-shadow: var(--glow-soft);
}

/* INPUT */
.application-form input,
.application-form textarea,
.application-form select{
background: rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
color:white;
transition:0.25s;
}

/* FOCUS EFFECT */
.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus{
border:1px solid rgba(255,255,255,0.25);
box-shadow:
0 0 10px rgba(255,255,255,0.15);
}

/* ===== SELECT FIX ===== */
.select-wrapper::after{
color: rgba(255,255,255,0.5);
}

.select-wrapper:hover::after{
color:white;
}

/* ===== CARD UPGRADE ===== */
.character-card,
.char-card,
.gallery-item{
background: var(--glass-bg);
border:1px solid var(--glass-border);
backdrop-filter: blur(10px);
transition:0.3s;
}

.character-card:hover,
.char-card:hover,
.gallery-item:hover{
box-shadow: var(--glow-strong);
}

/* ===== MODAL FIX ===== */
.char-box{
background: rgba(10,10,10,0.85);
backdrop-filter: blur(5px);
border:1px solid var(--glass-border);
box-shadow: var(--glow-strong);
}

/* ===== NOTIFICATION FULL UYUMLU ===== */
.notification{
background: var(--glass-bg);
backdrop-filter: blur(1px);
border:1px solid var(--glass-border);


box-shadow:
    0 0 20px rgba(255,255,255,0.08),
    inset 0 0 10px rgba(255,255,255,0.05);


}

/* SUCCESS */
.notification.success{
border:1px solid rgba(255,255,255,0.4);
box-shadow:
0 0 25px rgba(255,255,255,0.35),
0 0 60px rgba(255,255,255,0.15);
}

/* ERROR */
.notification.error{
border:1px solid rgba(239,68,68,0.4);
box-shadow:
0 0 20px rgba(239,68,68,0.25);
}

/* ===== TEXT RENK DENGESİ ===== */
p,
span{
color: var(--text-soft);
}

/* ===== HERO FIX ===== */
.crew-hero-overlay{
background:linear-gradient(
to right,
rgba(0,0,0,0.85),
rgba(0,0,0,0.4),
transparent
);
}

/* ===== EXTRA PREMIUM FEEL ===== */
.slider-card{
box-shadow:
0 0 50px rgba(255,255,255,0.1);
}

/* ===== DISCORD BUTON UYUM ===== */
.discord-float{
background: var(--glass-bg);
border:1px solid var(--glass-border);
}

.discord-float:hover{
box-shadow: var(--glow-soft);
}
.profile-menu{
    position: relative;
    margin-left: auto;
}

.profile-btn{
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
}

.dropdown{
    position: absolute;
    right: 0;
    top: 45px;

    background: rgba(20,20,20,0.95);
    backdrop-filter: blur(5px);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;

    min-width: 160px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.dropdown a{
    padding: 12px;
    text-decoration: none;
    color: white;
    font-size: 14px;

    transition: 0.2s;
}

.dropdown a:hover{
    background: rgba(255,255,255,0.08);
}

.hidden{
    display: none;
}.user-menu {
    position: relative;
    margin-left: auto;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.dropdown {
    position:absolute;
    right:0;
    top:50px;
    width:180px;

    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(5px);
    border-radius:12px;

    border:1px solid rgba(255,255,255,0.08);

    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}

.dropdown a {
    padding:12px;
    color:white;
    text-decoration:none;
    font-size:13px;
}

.dropdown a:hover {
    background: rgba(255,255,255,0.06);
}

.dropdown.show {
    display:flex;
}.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
}

/* MENU ORTALAMA */
.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 25px;
    list-style: none;
}

/* LOGO SOLDA SABİT */
.logo {
    display: flex;
    align-items: center;
}

/* AUTH SAĞDA */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}.logo img {
    transition: 0.3s;
    cursor: pointer;
}

.logo img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;

    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}.discord-icon {
    width: 55px;
    height: 55px;
    transition: 0.3s;
}

.discord-float:hover .discord-icon {
    transform: scale(1.1);
}.discord-icon {
    width: 60px;
    height: 60px;
}/* 🚀 PRO GALERİ */

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* 🔍 hover zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX PRO */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;

    transform: scale(0.9);
    opacity: 0;
    transition: all 0.25s ease;
}

.lightbox.show img {
    transform: scale(1);
    opacity: 1;
}

/* OK TUŞLARI */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.nav-btn:hover {
    opacity: 0.7;
}.rules-container {
    max-width: 900px;
    margin: auto;
}

.rule {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    transition: 0.25s;
}

.rule:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* HEADER */
.rule-header {
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    position: relative;
}

/* NEON ÇİZGİ */
.rule-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #00f0ff;
    transition: 0.3s;
}

.rule:hover .rule-header::after {
    width: 100%;
}

/* CONTENT */
.rule-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.rule-content p {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.85;
}/* NOS RULES SAFE */

.nos-rule {
    margin-bottom: 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.2s;
}

.nos-rule:hover {
    background: rgba(255,255,255,0.06);
}

.nos-title {
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
}

.nos-content {
    display: none;
    padding: 0 15px 15px;
    font-size: 14px;
    opacity: 0.85;
}

.nos-rule.active .nos-content {
    display: block;
}.rules-page{
    max-width:900px;
    margin:120px auto;
    padding:20px;
}

.rules-title{
    text-align:center;
    margin-bottom:30px;
}

.rule-box{
    margin-bottom:15px;
    padding:18px;
    border-radius:12px;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition:0.2s;
}

.rule-box:hover{
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
}

.rule-box h3{
    margin-bottom:10px;
    font-size:16px;
}

.rule-box p{
    font-size:14px;
    opacity:0.85;
    margin-bottom:5px;
}.rule-check{
    margin-top:15px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
    opacity:0.9;
}

.rule-check input{
    width:16px;
    height:16px;
    cursor:pointer;
}

.rule-check label{
    cursor:pointer;
}.youtube-float{
    position:fixed;
    bottom:95px; /* 25 + 55 + 15 boşluk */
    left:25px;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.1);
    border-radius:50%;

    cursor:pointer;
    transition:0.3s ease;

    z-index:999;
}

.youtube-float:hover{
    transform:scale(1.1);
    box-shadow:0 0 20px rgba(104, 0, 0, 0.3);
}.youtube-icon{
    width:28px;
    height:28px;
    fill:rgb(0, 0, 0);
    filter:drop-shadow(0 0 8px rgb(255, 254, 254));
}

.auth-btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: 0.25s;
}

.auth-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.char-card {
    will-change: transform;
}

.gallery-item {
    will-change: transform;
}.profile-container{
    max-width:600px;
    margin:120px auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* GENEL KART */
.profile-card{
    padding:25px;
    border-radius:14px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.08);

    transition:0.3s;
}

.profile-card:hover{
    box-shadow:0 0 25px rgba(255,255,255,0.1);
}

/* ÜST KART */
.main-card{
    text-align:center;
}

.nos-tag{
    margin-top:10px;
    display:inline-block;
    padding:6px 14px;

    border-radius:8px;

    background:#0f172a;
    color:#22c55e;

    font-weight:600;

    box-shadow:0 0 10px rgba(34,197,94,0.5);
}

/* KARAKTER */
.character-card h3{
    margin-bottom:15px;
}

.char-story{
    margin-top:15px;
    font-size:14px;
    color:#cbd5e1;
    line-height:1.5;
}.edit-input{
    width:100%;
    padding:10px;
    margin-bottom:10px;

    border:none;
    border-radius:8px;

    background:rgba(255,255,255,0.05);
    color:#fff;
}

.save-btn{
    padding:10px;
    border:none;
    border-radius:8px;
    cursor:pointer;

    background:#00ffae;
    color:#000;
    font-weight:600;
}

/* ALT FLEX */
.character-flex{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.char-left{
    flex:1;
}

.char-right{
    width:200px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}

.char-right img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
}.nos-tag{
    margin-top:10px;
    font-weight:600;
    color:#38bdf8;
}.notification.success {
    border-top-color: rgba(34,197,94,0.8);
}.notification.success {
    border-top-color: rgba(233, 233, 233, 0.8);
}