body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    
    /* ANA ARKA PLAN KODU BURASI */
    background-color: #050505; /* En alt siyah katman */
    background-image: 
        radial-gradient(circle at 50% -20%, #1a1a2e 0%, transparent 50%), /* Üstten vuran loş ışık */
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),   /* Yatay çizgiler */
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px); /* Dikey çizgiler */
    background-size: 100% 100%, 40px 40px, 40px 40px; /* Grid aralığı 40px */
    
    /* Sayfa geçişlerinde veya gece modunda yumuşak geçiş için */
    transition: background 1s ease;
    min-height: 100vh;
}

/*.container {
    max-width: 420px;
    margin: 120px auto;
    text-align: center;
}*/

.container {
    width: 420px;
    flex-shrink: 0;
    text-align: center;
    margin-top: -70px;
}
.subtitle {
    color: #aaa;
    margin-bottom: 20px;
}

.desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

button {
    padding: 12px 30px;
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #2b2b2b;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.hidden {
    display: none !important;
}

.modal {
    background-color: #141414;
    padding: 30px;
    border: 1px solid #333;
    width: 320px; /* Genişliği biraz artırabilirsin */
    border-radius: 12px;
    
    /* İÇERİĞİ MERKEZLEMEK İÇİN */
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.modal h3 {
    margin-bottom: 20px;
}

.modal input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: white;
    border-radius: 8px;
    text-align: center; /* Yazılan yazıyı da ortalar */
    
    /* TAŞMAYI ÖNLEMEK İÇİN KRİTİK SATIR */
    box-sizing: border-box; 
}

.modal button {
    width: 100%;
    /* Butonun da kutu modelini düzeltelim */
    box-sizing: border-box;
}

.logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    user-select: none;
}

.daily-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 20px auto;
}

.day-inside {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;   /* eskisi küçüktü */
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}


.daily-ring svg {
    transform: rotate(-90deg);
}

.daily-ring circle {
    fill: none;
    stroke-width: 10; /* biraz kalınlaştırdık */
}

.daily-ring .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.daily-ring .progress {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-linecap: round;
    stroke-dasharray: 452;
    stroke-dashoffset: 452;
    transition: stroke-dashoffset 0.5s linear;
}

.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;
    background-color: #9b6cff; /* açık mor */
    border: none;
    border-radius: 4px;

    color: white;
    font-size: 15px;
    cursor: pointer;
}

.reset-btn img {
    width: 16px;
    height: 16px;
}

.reset-btn:hover {
    background-color: #8a5af0;
}

.panic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;
    background-color: #c0392b; /* net kırmızı */
    border: none;
    border-radius: 4px;

    color: white;
    font-size: 15px;
    cursor: pointer;
}

.panic-btn img {
    width: 16px;
    height: 16px;
}

.panic-btn:hover {
    background-color: #a93226;
}

#welcome {
    color: #FF7F00;
}

.panel-logo {
    margin-bottom: 10px;
}

.panel-logo img {
    width: 90px;  
    height: auto;       
    opacity: 0.85;      
    filter: grayscale(20%);
}

.reset-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* ARKAPLAN KARARTMA */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.reset-overlay.hidden {
    display: none;
}

.reset-box {
    width: 320px;
    background: #121212;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
}

.reset-box h3 {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
}

.reset-box p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 16px;
}

.reset-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1e1e1e;
    color: #fff;
    box-sizing: border-box; /* BU KRİTİK */
}

.reset-actions {
    display: flex;
    gap: 10px;
}

.cancel-btn {
    flex: 1;
    background: #2a2a2a;
    color: #bbb;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

.confirm-btn {
    flex: 1;
    background: #8b5cf6;
    border: none;
    border-radius: 8px;
    padding: 10px;
    color: white;
}

.info-box {
    background: rgba(70, 120, 255, 0.15); /* kapalı mavi */
    border-radius: 10px;
    padding: 12px;
    margin: 14px 0 16px;
    text-align: left;
}

.info-title {
    color: #facc15; /* sarı */
    font-size: 13px;
    font-weight: 600;
    text-align: center;   /* ORTA */
    margin-bottom: 8px;
}

.info-list {
    margin: 0;
    padding-left: 16px;
    font-size: 13px;
    opacity: 0.85;
}

.info-list li {
    margin-bottom: 4px;
}

#important {
    color: rgb(145, 27, 27);
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

/* görünür hali */
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* renk varyantları (ileriye dönük) */
.toast.warn {
    background: rgba(220, 38, 38, 0.95); /* kırmızı */
}

.toast.info {
    background: rgba(37, 99, 235, 0.95); /* mavi */
}

.toast.hidden {
    display: none;
}

.landing-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.main-logo {
    font-size: 14px;
    letter-spacing: 6px;
    color: #8b5cf6; /* Mor tonun */
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle span {
    color: #8b5cf6;
    font-weight: 500;
}

/* Özellik Kartları */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #efefef;
}

.feature-card p {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* Buton Güzelleştirme */
.main-btn {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

.desc-small {
    font-size: 12px;
    color: #444;
    margin-top: 15px;
}

/* Modal Düzenleme */
.modal p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.modal input {
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
}

/* Responsive (Mobil için) */
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
}

.level-container {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.level-rank {
    font-size: 14px;
    font-weight: 700;
    color: #8b5cf6; /* Senin mor rengin */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.level-bar-bg {
    width: 100%;
    height: 6px;
    background: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.level-bar-fill {
    width: 0%; /* JS ile değişecek */
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #d8b4fe);
    transition: width 0.5s ease;
}

.next-level {
    font-size: 11px;
    color: #666;
}

.panic-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.panic-box {
    width: 90%;
    max-width: 350px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #c0392b;
    text-align: center;
}

.panic-header {
    color: #c0392b;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

.panic-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.action-item {
    background: #252525;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.action-item:hover {
    background: #333;
    transform: translateY(-3px);
}

.action-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.action-item span {
    font-size: 12px;
    display: block;
    color: #eee;
}

.close-panic-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #444;
    color: #777;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

.best-record {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.record-label {
    color: #aaa;
}

.record-value {
    color: #facc15; /* Altın sarısı rekoru temsil etsin */
    font-weight: bold;
    margin-left: 5px;
}

.onboarding-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #333;
}

#stepInput {
    width: 100%;
    background: #252525;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 10px;
    color: white;
    margin-top: 20px;
    outline: none;
}

#stepInput:focus {
    border-color: #8b5cf6;
}

/* Gece Nöbeti Teması */
body.night-watch {
    background-color: #050000 !important; /* Daha derin, saf siyah */
    
    /* Mor ışık yerine üstten vuran tehditkar kırmızı bir ışık ve kırmızı grid */
    background-image: 
        radial-gradient(circle at 50% -20%, #3d0000 0%, transparent 50%), /* Kan kırmızısı loş ışık */
        linear-gradient(rgba(255, 0, 0, 0.015) 1px, transparent 1px),      /* Çok hafif kırmızı yatay çizgiler */
        linear-gradient(90deg, rgba(255, 0, 0, 0.015) 1px, transparent 1px) !important; /* Çok hafif kırmızı dikey çizgiler */
    
    background-size: 100% 100%, 40px 40px, 40px 40px;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1); /* Geçişi biraz daha yavaş ve dramatik yaptık */
}

body.night-watch .daily-ring .progress {
    stroke: #ff4d4d !important; /* Ring kırmızıya döner */
    filter: drop-shadow(0 0 8px #ff0000);
}

body.night-watch .level-rank {
    color: #ff4d4d !important;
}

body.night-watch .level-bar-fill {
    background: linear-gradient(90deg, #ff4d4d, #b30000) !important;
}

/* Gece Modu Uyarı Kartı */
.night-warning {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #ff4d4d;
    display: none; /* Sadece gece çıkacak */
}

body.night-watch .night-warning {
    display: block;
}

.dashboard-bottom {
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label { font-size: 11px; color: #777; display: block; margin-bottom: 5px; }
.stat-value { font-size: 18px; font-weight: bold; color: #8b5cf6; }

.heatmap-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.heatmap-section-side {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.heatmap-grid-side {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Yan panelde 7 gün (haftalık) düzeni daha iyi durur */
    gap: 5px;
    margin-top: 10px;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 sütunlu şık bir görünüm */
    gap: 8px;
    margin: 15px 0;
}

.day-square {
    width: 100%;
    aspect-ratio: 1/1;
    background: #1a1a1a; /* Boş kutu */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.day-square.level-success { 
    background: #2ecc71; /* BAŞARILI - YEŞİL */
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

.day-square.level-fail { 
    background: #e74c3c; /* SIFIRLANDI - KIRMIZI */
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.3);
}


.day-square.level-current { 
    background: #3498db; /* AKTİF GÜN - MAVİ */
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.6);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.heatmap-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-box {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Renkleri mevcut sistemle eşliyoruz */
.legend-box.current {
    background: #3498db; /* Mavi */
    box-shadow: 0 0 5px #3498db;
}

.legend-box.success {
    background: #2ecc71; /* Yeşil */
}

.legend-box.fail {
    background: #e74c3c; /* Kırmızı */
}

.legend-box.future {
    background: rgba(255, 255, 255, 0.1); /* Gri */
}

.legend-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.box { width: 10px; height: 10px; border-radius: 2px; }
.level-0 { background: #1a1a1a; }

/*.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}*/

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 0;
}


.side-panel {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Kart tasarımlarını yan panele uyduralım */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .side-panel { width: 100%; max-width: 420px; }
}

/*.left-panel {
    width: 280px;         
    flex-shrink: 0;
    opacity: 0;            
    pointer-events: none;  
}*/

.left-panel {
    width: 280px;
    flex-shrink: 0;
    /*margin-top: 150px;*/
}

.shield-card {
    background: #111;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.shield-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.shield-section {
    margin-bottom: 16px;
}

.shield-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.shield-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* sperm */

#sperm-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.sperm {
    position: absolute;
    bottom: -40px;

    width: 14px;
    height: 22px;
    background: white;
    border-radius: 50% 50% 45% 45%;

    animation: swimUp 6s linear forwards;
}


.sperm::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;

    width: 2px;
    height: 20px;
    background: white;

    transform: translateX(-50%);
    border-radius: 2px;
}

@keyframes swimUp {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-60vh) translateX(10px) rotate(10deg);
    }
    100% {
        transform: translateY(-120vh) translateX(-10px) rotate(-10deg);
        opacity: 0;
    }
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;
    background-color: #677799; /* net kırmızı */
    border: none;
    border-radius: 4px;

    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.toggle-btn img {
    width: 16px;
    height: 16px;
}

.toggle-btn:hover {
    background-color: #506288;
}

.grand-actions {
    display: flex;
    justify-content: center; /* Ortalar */
    gap: 12px;
    margin: 30px auto;
    width: 100%;
    max-width: 520px; /* Sayaçla benzer genişlikte olması için */
    margin-top: 55px;
}

.grand-btn {
    flex: 1;
    height: 160px; /* Boyu uzun dikdörtgen yapısı */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
}

.grand-btn:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.grand-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.grand-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.grand-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grand-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

.section-divider {
    border: 0;
    height: 1px;
    width: 80%; /* Tam genişlik yerine %80 yaparak daha estetik durmasını sağlıyoruz */
    margin: 40px auto; /* Üstten ve alttan 40px boşluk bırakarak butonları ferahlatır */
    background-image: linear-gradient(to right, 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0)); /* Ortası hafif gri, uçları silik çizgi */
}


.logoPng {
    width: 100px;
    height: 100px;
    margin: auto;
    margin-top: -30px;
}

.logoPnggg {
    position: fixed;
    width: 70px;
    height: 70px;
    margin-left: 20px;
    margin-top: 7px;
    cursor: pointer;
    z-index: 1001; /* Menünün üstünde veya altında kalma durumuna göre ayarla */
    transition: transform 0.2s;
}

.logoPnggg:active { transform: scale(0.9); }

/* Yan Menü Ana Yapı */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px; /* Başlangıçta ekranın dışında */
    width: 280px;
    height: 100%;
    background: #141414;
    border-right: 1px solid rgba(139, 92, 246, 0.3);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}

/* Menü Açıkken Gelecek Klas */
.side-menu.active {
    left: 0;
}

/* Menü İçeriği */
.menu-header {
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.menu-header h3 { color: #8b5cf6; margin: 0; letter-spacing: 2px; font-size: 18px; }

.close-menu-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
}

.menu-links {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.menu-links li { margin-bottom: 15px; }

.menu-links a {
    text-decoration: none;
    color: #eee;
    font-size: 16px;
    display: block;
    padding: 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.menu-links a:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.menu-footer {
    margin-top: auto;
    padding: 20px;
    font-size: 11px;
    color: #444;
    text-align: center;
}

/* Arka Plan Karartması */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
}

.site-footer {
    text-align: center;
    /*padding: 40px 20px;*/
    opacity: 0.4; /* Çok parlamasın, göz yormasın */
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-sub {
    margin-top: 5px;
    font-style: italic;
    color: #8b5cf6; /* Senin mor tonun */
}

#adblock-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.98);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  backdrop-filter: blur(8px);
}

.warning-card {
  max-width: 400px;
  padding: 40px;
  border: 1px solid #333;
  border-radius: 20px;
  background: #1a1a1a;
}

.refresh-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.refresh-btn:hover {
  background: #ff6b81;
}

/*.right-ad {
  position: fixed;
  right: 0;
  margin-right: 145px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 600px;
  z-index: 9999;
}*/

.native-ad-card {
  background: #111;
  border-radius: 12px;
  padding: 16px;
  margin: 20px 0;
  border: 1px solid #222;
}

.native-ad-card * {
  color: #ddd !important;
  font-family: inherit !important;
}

.dashboard-preview {
    margin: 100px auto;
    max-width: 1100px; /* 900px'den 1100px'e çıkardık */
    padding: 0 15px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem; /* Başlığı biraz daha büyüttük */
    font-weight: 800;
}

.preview-text {
    max-width: 700px; /* Yazı genişliğini daraltıp görseli öne çıkardık */
    margin: 0 auto 50px;
}

.preview-text p {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.preview-image-container {
    position: relative;
    border-radius: 25px; /* Daha yumuşak köşeler */
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.15);
    /* Hafif eğim (isteğe bağlı, kaldırmak istersen perspective satırlarını silebilirsin) */
    transform: perspective(1200px) rotateX(2deg); 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.preview-image-container:hover {
    transform: perspective(1200px) rotateX(0deg) scale(1.02); /* Üzerine gelince biraz büyür */
    border-color: rgba(139, 92, 246, 0.4);
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 80%);
    z-index: -1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .preview-image-container {
        transform: none !important;
        border-radius: 15px;
    }
}

.sperm-control-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* Bilgi İkonu Ana Yapı */
.info-wrapper {
    position: relative;
    cursor: help;
}

.info-icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-family: serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.info-wrapper:hover .info-icon {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

/* Bilgi Kutucuğu (Tooltip) */
.info-tooltip {
    position: absolute;
    bottom: 30px; /* Butonun üstünde açılması için */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ccc;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 100;
}

/* Hover durumunda göster */
.info-wrapper:hover .info-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Küçük Ok İşareti */
.info-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.x-social-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4); /* Saydam beyaz */
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-decoration: none;
}

.x-social-link:hover {
    color: rgba(255, 255, 255, 0.8); /* Üzerine gelince biraz daha belirginleşir */
    transform: translateY(-2px); /* Hafif bir yükselme efekti */
}

.x-social-link svg {
    width: 18px; /* Kibar görünmesi için küçük boyut */
    height: 18px;
}

.x-sticky-link, .instagram-sticky-link, .youtube-sticky-link {
    position: fixed;
    bottom: 25px; /* Yerden yüksekliği biraz artırdım */
    right: 25px;
    opacity: 0.4; /* Saydamlık */
    color: white;
    z-index: 999;
    transition: all 0.3s ease;
}

.x-sticky-link svg, .instagram-sticky-link svg, .youtube-sticky-link svg {
    width: 22px;  /* Boyut burada büyütüldü */
    height: 22px;
}

.x-sticky-link:hover, .instagram-sticky-link:hover, .youtube-sticky-link:hover {
    opacity: 0.9;
    transform: scale(1.1); /* Üzerine gelince hafif büyür */
}

.instagram-sticky-link {
    right: 60px; /* Aralarında 35px boşluk bırakır */
}

.youtube-sticky-link {
    right: 95px; /* Instagram'ın yanına */
}

/* Alt taraftaki Sosyal Medya İkonları için Mobil Düzenleme */
@media (max-width: 768px) {
    .x-sticky-link, .instagram-sticky-link, .youtube-sticky-link {
        bottom: 15px; /* Mobilde biraz daha aşağı alalım */
        opacity: 0.6; /* Mobilde görünürlüğü biraz artıralım */
    }

    .x-sticky-link svg, .instagram-sticky-link svg, .youtube-sticky-link svg {
        width: 18px;  /* İkon boyutlarını biraz küçültelim */
        height: 18px;
    }

    /* İkonların birbirine olan mesafesini ayarlayalım */
    .x-sticky-link {
        right: 15px;
    }

    .instagram-sticky-link {
        right: 45px; /* Aradaki boşluk */
    }

    .youtube-sticky-link {
        right: 75px; /* Aradaki boşluk */
    }
}

/* Çok küçük ekranlar için (iPhone SE vb.) */
@media (max-width: 480px) {
    .x-sticky-link, .instagram-sticky-link, .youtube-sticky-link {
        bottom: 10px;
    }
    
    /* Eğer mobil menü veya başka bir butonla çakışırsa sol tarafa da alabilirsin */
}

@media (max-width: 768px) {
    /* Menü açma butonu (Logo) mobilde biraz küçülsün ve konumu düzeltilsin */
    .logoPnggg {
        width: 55px;
        height: 55px;
        margin-left: 15px;
        margin-top: 10px;
    }

    /* Yan menü genişliği mobilde ekranın %85'ini kaplasın */
    .side-menu {
        width: 80%;
        left: -100%; /* Başlangıçta tam gizle */
    }

    .side-menu.active {
        left: 0;
    }

    /* Menü başlığı ve kapatma butonu */
    .menu-header {
        padding: 25px 20px;
    }

    .menu-header h3 {
        font-size: 16px;
    }

    .close-menu-btn {
        font-size: 35px; /* Mobilde daha kolay tıklansın */
    }

    /* Linklerin tıklama alanlarını büyütelim (Touch-friendly) */
    .menu-links {
        padding: 10px 15px;
    }

    .menu-links li {
        margin-bottom: 8px;
    }

    .menu-links a {
        padding: 18px 15px; /* Tıklama alanını genişlettik */
        font-size: 18px;     /* Okunabilirliği artırdık */
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Menü altındaki slogan yazısı */
    .menu-footer {
        padding: 30px 20px;
        font-size: 13px;
        opacity: 0.3;
    }
}

/* Çok küçük ekranlar için ince ayar */
@media (max-width: 480px) {
    .side-menu {
        width: 85%;
    }
    
    .menu-links a {
        font-size: 16px;
        padding: 15px 12px;
    }
}

@media (max-width: 768px) {
    /* Menü linklerinin listesini ferahlatıyoruz */
    .menu-links {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 12px; /* Butonlar arasına boşluk */
    }

    .menu-links li {
        margin-bottom: 0; /* Gap kullandığımız için margin'i sıfırladık */
        width: 100%;
    }

    /* Butonların kendisi */
    .menu-links a {
        display: flex;
        align-items: center;
        padding: 20px 18px; /* Tıklama alanını dikeyde ciddi artırdık */
        font-size: 18px;    /* Yazı boyutunu büyüttük */
        font-weight: 600;   /* Daha okunaklı olması için kalınlaştırdık */
        border-radius: 15px; /* Daha modern, yuvarlak köşeler */
        background: rgba(255, 255, 255, 0.05); /* Hafif belirgin bir arka plan */
        border: 1px solid rgba(139, 92, 246, 0.2); /* Senin morundan ince bir sınır */
        transition: trans   form 0.1s ease, background 0.2s;
    }

    /* İkonlar ve yazı arası boşluk */
    .menu-links a::before {
        margin-right: 15px;
        font-size: 22px; /* Emoji/İkon boyutunu artırdık */
    }

    /* Delete Account butonu için özel stil (Daha dikkat çekici/tehlikeli) */
    .menu-links a[onclick*="deleteAccount"] {
        border-color: rgba(239, 68, 68, 0.3); /* Kırmızımsı bir kenarlık */
        color: #ff4d4d; /* Yazı rengini kırmızıya yakın yaptık */
    }

    /* Tıklama hissi (Active state) */
    .menu-links a:active {
        transform: scale(0.97); /* Basıldığında hafifçe içeri çöksün */
        background: rgba(139, 92, 246, 0.1);
    }
}

.privcytermsWarn a:hover {
  color: #000; /* veya istediğin renk */
}