/* --- DEĞİŞKENLER VE TEMA AYARLARI --- */
:root {
    --bg-main: #18181b;       /* Koyu Kömür Gri (Yayıncı temalarına daha uygun) */
    --bg-container: #27272a;  /* Açık Koyu Gri */
    --bg-card: #3f3f46;       /* Kart Arka Planı */
    --text-pure: #ffffff;     /* Beyaz */
    --text-muted: #a1a1aa;    /* Mat Gri */
    
    /* Yeşil Tonları */
    --kick-green: #53fc18;    /* Canlı Kick Yeşili */
    --accent-green: #22c55e;  /* Soft Yeşil Vurgu */
    --hover-green: #15803d;   /* Koyu Yeşil (Hover efekti için) */
}

/* --- GENEL SIFIRLAMA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-pure);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* --- ANA KONTEYNER --- */
.container {
    max-width: 520px;
    width: 100%;
    background-color: var(--bg-container);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- HEADER / PROFİL --- */
.profile-logo {
    width: 200px;
    height: 200px;
    border-radius: 150%;
    object-fit:contain;
    border: 3px solid var(--kick-green);
    margin-bottom: 1.2rem;
    box-shadow: 0 0 50px rgba(83, 252, 24, 0.2);
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}

.bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- SOSYAL MEDYA BUTONLARI --- */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-pure);
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #52525b;
}

/* Kick Özel Butonu */
.link-btn.kick {
    background-color: var(--kick-green);
    color: #000000;
    font-weight: 700;
}

.link-btn.kick:hover {
    background-color: #42df10;
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.3);
}

.link-btn.youtube {
    background-color: #df1010;
    color: #ffffff;
    font-weight: 700;
}

.link-btn.youtube:hover {
    background-color: #a51212;
    box-shadow: 0 8px 25px rgba(252, 24, 24, 0.3);
}

.link-btn.instagram {
    background-color: #df10df;
    color: #ffffff;
    font-weight: 700;
}

.link-btn.instagram:hover {
    background-color: rgb(199, 26, 173);
    box-shadow: 0 8px 25px rgb(172, 20, 149);
}

.link-btn.tiktok {
    background-color: #0e0e0e;
    color: #ffffff;
    font-weight: 700;
}

.link-btn.tiktok:hover {
    background-color: rgb(20, 20, 20);
    box-shadow: 0 8px 25px rgb(19, 19, 19);
}

/* Canlı Yayın Sinyali */
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 8px 25px rgb(110, 15, 15);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* --- STICKER / EMOTE SECTON --- */
.sticker-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.sticker-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.section-subtitle {
    font-size: 0.8rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sticker-card {
    background-color: var(--bg-card);
    padding: 0.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sticker-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-green);
}

.sticker-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.sticker-name {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* --- FOOTER --- */
.footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.designer-credit {
    margin-top: 0.3rem;
    color: var(--text-pure);
}

.designer-credit strong {
    color: var(--kick-green);
}

/* --- MODAL (POPUP) CSS --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 300px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-weight: 600;
}
#pandoom_imza {
    width: 100px;  /* Genişliği kendi tasarımına göre değiştirebilirsin */
    height: auto;  /* Yüksekliği 'auto' yapmak, görselin en-boy oranının bozulmasını engeller */
    margin-bottom: 20px;
}