:root {
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --card-bg: rgba(43, 45, 49, 0.7);
    /* Şeffaf siyah/gri (Glassmorphism etkisi) */
    --status-online: #23a559;
    --status-idle: #f0b232;
    --status-dnd: #f23f43;
    --status-offline: #80848e;
}

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

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    /* Modern ve şık yazı tipi */
    color: var(--text-primary);
    overflow: hidden;
    /* Videonun sayfayı kaydırmasını engeller */
    background-color: #111;
}

/* Background Video Styles */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Videonun tüm ekranı kaplamasını sağlar */
    z-index: 1;
}

/* Gerçekçi Eski TV (CRT) Efekti */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vignette (Köşeleri Karartma) ve Scanlines (TV Çizgileri) */
    background:
        radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.8) 120%),
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.2) 1px,
            transparent 1px,
            transparent 3px);
    z-index: 2;
    pointer-events: none;
}

/* Eski TV Karıncalanması (Noise) ve Titreme (Flicker) */
.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* TV Statik Gürültüsü (Noise SVG Generator) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    animation: flicker 0.15s infinite;
    pointer-events: none;
}

@keyframes flicker {
    0% {
        opacity: 0.01;
    }

    50% {
        opacity: 0.04;
    }

    100% {
        opacity: 0.01;
    }
}

/* Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    opacity: 0;
    /* Başlangıçta gizli */
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.content-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Animasyonu kaldırdım çünkü content-wrapper'in fade-in transition'ı yeterli */
}

/* Click to Enter Ekranı */
#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 50;
    /* Her şeyin üstünde */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.enter-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.5;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* İsmin parlaması (Glow Effect) */
.glow-name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.2);
    margin-bottom: -5px;
}

/* Konum kısmı */
.location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.location i {
    font-size: 0.8rem;
}

/* Profil Header (Üst Kısım) */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.avatar-wrapper-main {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.avatar-wrapper-main:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.avatar-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 540px;
    margin-top: 10px;
}

@media (max-width: 540px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-primary);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.bento-card:hover::before {
    left: 200%;
    transition: left 0.7s ease-in-out;
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

/* Icon Container */
.bento-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Kutu Renkleri */
.discord-bg { background-color: #5865F2; }
.kick-bg { background-color: #53fc18; color: #000; }
.steam-bg { background: linear-gradient(to bottom right, #111d2e, #174268); }
.ig-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tiktok-bg { background-color: #000; border: 1px solid rgba(255,255,255,0.2); }
.yt-bg { background-color: #FF0000; }
.bynogame-bg { background-color: #f7931e; }
.empty-bg { background-color: rgba(255, 255, 255, 0.1); color: rgba(255,255,255,0.4); border: 1px dashed rgba(255,255,255,0.3); box-shadow: none; }

.empty-card {
    opacity: 0.6;
    cursor: default;
}

.empty-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.empty-card:hover .bento-icon {
    transform: none;
}

/* Content Container */
.bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* for text truncation */
    flex: 1;
}

.bento-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Kick Yayında Badge */
.status-badge.live {
    background-color: #53fc18;
    color: #000;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(83, 252, 24, 0.4);
    animation: pulse-kick 2s infinite;
}

@keyframes pulse-kick {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 252, 24, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(83, 252, 24, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(83, 252, 24, 0);
    }
}

/* Hakkımda Overlay (Grid üstüne açılır) */
.about-overlay {
    display: none;
    width: 100%;
    max-width: 540px;
    /* Bento kartlarla aynı arka plan, daha fazla blur */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    backdrop-filter: blur(24px) saturate(130%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    padding: 30px 28px;
    animation: aboutOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-overlay.active {
    display: block;
}

@keyframes aboutOpen {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-overlay-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.about-overlay-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.about-bg {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.iletisim-bg {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.about-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: 500;
}


/* Ses Kontrol Container */
.volume-container {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 50;
}

/* Ses Kontrol Butonu Update */
.volume-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3), 
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-primary);
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
}

.volume-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.volume-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4), 
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.volume-btn:hover::before {
    left: 200%;
    transition: left 0.7s ease-in-out;
}

.volume-btn i {
    position: relative;
    z-index: 1;
}

/* Ses Ayarı Barı (Slider) */
.volume-slider-wrapper {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, padding 0.4s ease;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2), 
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    border-radius: 20px;
    height: 36px;
    padding: 0;
}

.volume-container:hover .volume-slider-wrapper {
    width: 120px;
    opacity: 1;
    padding: 0 15px;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    cursor: pointer;
    transition: transform 0.2s;
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Sayfa Açılış Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sistem Butonu Rengi */
.system-bg { background-color: #3b82f6; }

/* Sistem Paneli */
.system-panel {
    position: fixed;
    top: 0;
    right: -400px; /* Initially hidden */
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(30, 30, 40, 0.95) 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    padding: 25px;
    color: var(--text-primary);
}

.system-panel.active {
    right: 0;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #fff;
}

.panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.not-ready-badge {
    background: rgba(255, 0, 0, 0.1);
    border: 1px dashed rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.sys-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.sys-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.sys-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sys-desc {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Sistem Alt Menü Butonları */
.sys-menu-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sys-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.sys-menu-btn i:first-child {
    font-size: 1.2rem;
}

.sys-menu-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.sys-menu-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: none;
}

/* Toast Bildirim Sistemi (Sağ Alt) */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(87, 203, 222, 0.4);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(87, 203, 222, 0.15);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-family: inherit;
    min-width: 280px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    background: rgba(87, 203, 222, 0.2);
    color: #57cbde;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #57cbde;
}

.toast-message {
    font-size: 0.88rem;
    color: #cbd5e1;
}

/* Masaüstünde mobil bildirim alanı gizli */
#mobile-toast-zone {
    display: none;
}

/* =========================================
   MOBİL UYUMLULUK (RESPONSIVE DESIGN)
   ========================================= */
@media (max-width: 768px) {

    /* KAYDIRMA SORUNU: body/html fixed height'i kaldır, scroll aç */
    body,
    html {
        overflow: auto !important;
        height: auto !important;
    }

    .content-wrapper {
        height: auto !important;
        min-height: 100vh;
        justify-content: flex-start;
        overflow: visible;
        padding: 30px 0 60px 0;
    }

    /* Genel Container Küçültme */
    .profile-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Avatar ve İsim (Resim Yarım Gözükme Sorununa Çözüm) */
    .avatar-wrapper-main {
        width: 30vw;
        height: 30vw;
        max-width: 110px;
        max-height: 110px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .avatar-main {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .glow-name {
        font-size: 1.7rem;
    }

    .location {
        font-size: 0.8rem;
    }

    /* Bento Grid: TEK SÜTUN ZORUNLU */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    /* Tüm span 2 kartları tek sütuna çek */
    .bento-grid > * {
        grid-column: span 1 !important;
    }

    /* Ziyaretçi sayacı satırı güncelle */
    div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    .bento-card {
        padding: 14px 16px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .bento-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }

    .bento-title {
        font-size: 0.9rem;
    }

    .bento-stat {
        font-size: 0.78rem;
    }

    /* Hakkımda Kartı */
    .about-card {
        padding: 15px 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Masaüstü fixed toast container mobilde gizle */
    #toast-container {
        display: none !important;
    }

    /* Mobil bildirim alanı - sayfanın en altında, sayfa akışında */
    #mobile-toast-zone {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 15px 0 10px 0;
        box-sizing: border-box;
    }

    /* Mobilde toast'lar fixed değil, normal akışta gözükür */
    #mobile-toast-zone .toast-notification {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s ease;
        width: 100%;
        min-width: unset;
        box-sizing: border-box;
    }

    #mobile-toast-zone .toast-notification.show {
        transform: translateY(0);
        opacity: 1;
    }

    /* Sistem Paneli (Bütün Ekranı Kapla) */
    .system-panel {
        width: 100%;
        right: -100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
}