/* Favicon styles */
#favicon {
    width: 32px;
    height: 32px;
    display: block;
}

/* Additional favicon sizes for different devices */
link[rel="icon"] {
    width: 32px;
    height: 32px;
}

/* Force favicon visibility */
head link[rel="icon"] {
    display: block !important;
    visibility: visible !important;
}
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    background: url('assets/profile.png') no-repeat center center;
    background-size: contain;
}

/* Hide default cursor completely */
* {
    cursor: none !important;
}

/* Force hide on all possible elements */
html, body, div, span, p, a, button, input, textarea, select, option, img, video, audio, canvas, svg, path, rect, circle, ellipse, line, polygon, polyline, text, tspan, use, g, symbol, defs, clipPath, mask, pattern, linearGradient, radialGradient, stop, animate, animateTransform, animateMotion, animateColor, set, mpath, keypath, keyTimes, keySplines, keyPoints, foreignObject, desc, title, metadata, use, switch, view, textPath, altGlyph, altGlyphDef, altGlyphItem, glyph, glyphRef, missingGlyph, hkern, vkern, font, font-face, font-face-src, font-face-uri, font-face-format, font-face-name, definition-src, base, basefont, col, colgroup, datalist, fieldset, legend, optgroup, option, param, template, blockquote, cite, code, del, em, i, ins, kbd, q, s, samp, small, strike, strong, sub, sup, u, var, bdo, br, embed, hr, img, map, object, param, source, track, wbr, area, caption, col, colgroup, table, tbody, td, tfoot, th, thead, tr, article, aside, details, dialog, figcaption, figure, footer, header, main, menu, menuitem, nav, section, summary, address, bdi, bdo, blockquote, center, command, del, dir, div, dl, dt, em, embed, fieldset, font, form, h1, h2, h3, h4, h5, h6, hr, i, img, ins, isindex, kbd, keygen, label, legend, li, map, menu, meta, meter, noframes, noscript, object, ol, optgroup, option, output, p, param, pre, progress, q, rp, rt, ruby, s, samp, script, select, small, source, span, strike, strong, style, sub, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, track, tt, u, ul, var, video, wbr, link, meta, style, script, noscript, template, slot {
    cursor: none !important;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('assets/cursor.png'), auto;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #FFD700;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    
    /* Neon Glow Efekti - Canlı Turuncu/Altın */
    color: #fff;
    text-shadow: 
        0 0 10px #FF6600,
        0 0 20px #FF6600,
        0 0 40px #FF6600,
        0 0 80px #FF6600,
        0 0 120px #FFD700,
        4px 4px 10px rgba(0, 0, 0, 0.9);
    
    /* Animasyonlu parlama */
    animation: neonPulse 2s ease-in-out infinite;
    
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

/* Neon nabız atış animasyonu */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px #FF6600,
            0 0 20px #FF6600,
            0 0 40px #FF6600,
            0 0 80px #FF6600,
            0 0 120px #FFD700,
            4px 4px 10px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 
            0 0 20px #FF6600,
            0 0 40px #FF6600,
            0 0 80px #FF6600,
            0 0 120px #FF6600,
            0 0 200px #FFD700,
            4px 4px 10px rgba(0, 0, 0, 0.9);
    }
}

/* Hover - Daha yoğun parlama */
.main-title:hover {
    text-shadow: 
        0 0 20px #FF6600,
        0 0 40px #FF6600,
        0 0 80px #FF6600,
        0 0 120px #FF6600,
        0 0 200px #FFD700,
        0 0 300px #FFD700,
        4px 4px 10px rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    letter-spacing: 12px;
}

/* Alt çizgi - Neon animasyonlu */
.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6600, #FFD700, #FF6600, transparent);
    border-radius: 50%;
    box-shadow: 0 0 20px #FF6600, 0 0 40px #FFD700;
}

/* Links Section */
.links-section {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Link Buttons */
.link-button {
    position: relative;
    border-radius: 30px;
    padding: 20px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.link-button:hover::before {
    left: 100%;
}

.link-button a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* YouTube Button */
.youtube-btn {
    border: 3px solid #FF0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(255, 0, 0, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    border-color: #FF3333;
}

/* Three Column Section */
.three-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

/* Discord Button */
.discord-btn {
    border: 3px solid #7289DA;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2), rgba(114, 137, 218, 0.1));
    overflow: visible;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
}

.discord-btn:hover {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.4), rgba(114, 137, 218, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
    border-color: #8FA0FF;
}

/* Ads Button */
.ads-btn {
    border: 3px solid #FF6600;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.1));
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.ads-btn:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.4), rgba(255, 102, 0, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
    border-color: #FF8533;
}

.email-text {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
    border: 3px solid #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    overflow: visible;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.4), rgba(37, 211, 102, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    border-color: #128C7E;
}

/* Social Media Icons Container */
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 25px;
    border: 2px solid #FF6600;
    border-radius: 15px;
    margin: 10px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 102, 0, 0.05);
    position: relative;
    /* EKLENEN KOD: Sunucular bölümünün üstünde kalmasını sağlar */
    z-index: 10;
}

.social-icon {
    position: relative;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.social-icon:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.social-icon-custom {
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

/* Social Accounts Dropdown */
.social-accounts {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid #FF6600;
    border-radius: 15px;
    padding: 15px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.social-icon:hover .social-accounts,
.social-accounts:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.account-item {
    padding: 12px 16px;
    margin: 8px 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.2) 100%);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.account-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.account-item:hover::before {
    left: 100%;
}

.account-item a {
    color: #FFD700;
    text-decoration: none;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.account-item:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, rgba(255, 102, 0, 0.4) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    border-color: #FFD700;
}

.account-item:hover a {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Additional Button */
.additional-btn {
    border: 3px solid #000;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.additional-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.follower-count {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #FFD700;
}

/* Servers Section */
.servers-section {
    text-align: center;
    padding: 20px;
    border: 3px solid #FF6600;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1; /* Sosyal medya dropdown'larının altında kalması için */
}

.servers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.servers-section:hover::before {
    left: 100%;
}

.servers-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #FFD700;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    position: relative;
}

.servers-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 1px;
}

.servers-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 4px 8px;
    margin: 2px 0;
}

.server-item {
    display: inline-block;
    transition: transform 0.3s ease;
}

.server-item img {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: contain; /* Kırpılmayı önleyen sihirli kod */
    background-color: rgba(0, 0, 0, 0.2); /* Kenarlarda kalan boşluklar için hafif bir arkaplan */
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.server-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
    border: 2px solid #FF6600;
}

/* Responsive sizing for different screen sizes */
@media (max-width: 768px) {
    .server-item img {
        width: 144px;
        height: 144px;
    }
}

@media (max-width: 480px) {
    .server-item img {
        width: 110px;
        height: 110px;
    }
}

/* Dynamic sizing based on server count */
.servers-container[data-count="1"] .server-item img {
    width: 220px;
    height: 220px;
}

.servers-container[data-count="2"] .server-item img {
    width: 200px;
    height: 200px;
}

.servers-container[data-count="3"] .server-item img {
    width: 180px;
    height: 180px;
}

.servers-container[data-count="4"] .server-item img {
    width: 160px;
    height: 160px;
}

.servers-container[data-count="5"] .server-item img {
    width: 140px;
    height: 140px;
}

.servers-container[data-count="6+"] .server-item img {
    width: 120px;
    height: 120px;
}

/* Ana Taşıyıcıyı güncelliyoruz */
.video-overlay-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* KRİTİK DÜZELTME: Görsel aktif olsa bile fareyi asla algılamasın */
    pointer-events: none !important;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

/* Aktif olduğunda da pointer-events none kalmalı */
.video-overlay-fullscreen.active {
    opacity: 1;
    visibility: visible;
    pointer-events: none !important; /* Burayı da kontrol et, auto olmamalı */
}

/* Çerçeveyi kaldırıp tam boy yapıyoruz (Sol / Discord için) */
.video-overlay-fullscreen .video-container {
    position: absolute; 
    top: 0;
    left: 0;
    height: 100vh; /* Tam ekran yüksekliği */
    width: 35%; /* Eski haline yakın ideal boyut */
    max-width: none; /* Maksimum genişlik limitini kaldır */
    background: transparent; /* Arka planı ŞEFFAF yapar */
    box-shadow: none !important; /* ÇERÇEVE GÖLGESİNİ KALDIRIR */
    border-radius: 0 !important; /* OVAL KÖŞELERİ KALDIRIR */
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-overlay-fullscreen.active .video-container {
    transform: translateX(0); /* Ekrana girdiğinde tam sola sıfır yanaşır */
}

/* Sol Taraf (Discord) Ayarı */
.video-overlay-fullscreen.slide-left .video-container {
    left: 0; /* Tam sola yapıştır */
    right: auto; /* Sağı serbest bırak */
    transform: translateX(-100%);
}

.video-overlay-fullscreen.slide-left.active .video-container {
    transform: translateX(0); /* Ekrana girdiğinde tam sola sıfır yanaşır */
}

/* Sağ Taraf (WhatsApp) Ayarı */
.video-overlay-fullscreen.slide-right .video-container {
    left: auto; /* Solu serbest bırak */
    right: 0; /* Tam sağa yapıştır */
    transform: translateX(100%);
}

.video-overlay-fullscreen.slide-right.active .video-container {
    transform: translateX(0); /* Ekrana girdiğinde tam sağa sıfır yanaşır */
}

/* Videonun ve Resmin İçerideki Duruşu */
.video-overlay-fullscreen .video-container video,
.video-overlay-fullscreen .video-container img {
    height: 100vh;
    width: 100%; 
    object-fit: contain; /* Resmi ASLA kesmez, kutuya orantılı sığdırır */
    object-position: center bottom; /* Karakterin ayakları ekranın en altına bassın */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Aktif olduğunda opaklığı aç */
.video-overlay-fullscreen.active .video-container video,
.video-overlay-fullscreen.active .video-container img {
    opacity: 1;
}

/* 1. ÜST BUTON İÇERİKLERİNİ TAM ORTALAMA VE Z-INDEX AYARI */
.link-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2; /* Yazının blurlu ikonun üstünde kalması için */
}

.email-text {
    position: relative;
    z-index: 2; /* Reklam mailinin üstte kalması için */
    text-align: center;
}

/* 2. BLURLU VE TRANSPARAN ARKA PLAN İKONLARI (WATERMARK) */
.discord-btn, .ads-btn, .whatsapp-btn {
    position: relative;
    overflow: hidden; /* Dışa taşan bluru keser */
}

.discord-btn::after {
    content: '\f392'; /* FontAwesome Discord Kodu */
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    font-size: 110px;
    color: rgba(255, 255, 255, 0.06); /* Saydam beyaz */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(3px); /* Blur/Bulanıklık efekti */
    z-index: 0;
    pointer-events: none;
}

.ads-btn::after {
    content: '\f641'; /* FontAwesome Ad Kodu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 110px;
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

.whatsapp-btn::after {
    content: '\f232'; /* FontAwesome WhatsApp Kodu */
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    font-size: 110px;
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

/* 3. SOSYAL MEDYA İKONLARINI ÜSTTEKİ BUTONLAR GİBİ YAPMA */
.social-icons-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0;
    border: none;
    background: none;
    max-width: 100%;
    margin: 15px 0 25px 0;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    padding: 20px 10px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    position: relative;
    cursor: pointer;
}

.social-label {
    font-size: 1rem;
    font-family: 'Orbitron', 'Arial', sans-serif;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Instagram Kutusu Tasarımı */
.instagram-btn {
    border-color: #E1306C;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(225, 48, 108, 0.1));
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}
.instagram-btn:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.4), rgba(225, 48, 108, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

/* Kick Kutusu Tasarımı */
.kick-btn {
    border-color: #53FC18;
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.2), rgba(83, 252, 24, 0.1));
    box-shadow: 0 4px 15px rgba(83, 252, 24, 0.3);
}
.kick-btn:hover {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.4), rgba(83, 252, 24, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.5);
}

/* TikTok Kutusu Tasarımı */
.tiktok-btn {
    border-color: #00f2fe;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(0, 242, 254, 0.1));
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.tiktok-btn:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.4), rgba(0, 242, 254, 0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

/* Dropdown Menünün Yeni Konumu (Kutular Büyüdüğü İçin) */
.social-accounts {
    top: calc(100% + 10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .three-column-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-icons-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .social-icon {
        font-size: 1.5rem;
    }
    
    .links-section {
        max-width: 100%;
    }

    .social-icons-container {
        grid-template-columns: 1fr; /* Mobilde üç kutuyu alt alta dizer */
        gap: 10px;
    }

    /* BURASI YENİ: Sunucuları alt alta indirmek yerine yan yana dizer ve kaydırma ekler */
    .servers-container {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch; /* Telefonda yağ gibi kaysın diye */
    }
    
    .server-item {
        flex-shrink: 0; /* Sıkışıp bozulmalarını engeller */
    }
    
    .server-item img {
        width: 130px !important;
        height: 130px !important;
    }
}

@media (max-width: 480px) {
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .link-button a {
        font-size: 0.9rem;
    }
}

/* YouTube Widget (Sol Taraf) */
.yt-widget-container {
    position: fixed;
    top: 80px;      /* Yukarıdan boşluk */
    left: 40px;     /* Soldan boşluk */
    width: 320px;
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #FF0000;
    border-radius: 15px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 40;
    backdrop-filter: blur(10px);
}

.yt-widget-container:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    border-color: #FF3333;
}

.yt-widget-thumbnail {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.yt-widget-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yt-widget-container:hover .yt-widget-thumbnail img {
    transform: scale(1.1);
}

.yt-widget-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.yt-widget-container:hover .yt-widget-play {
    background: #FF0000;
    transform: translate(-50%, -50%) scale(1.15);
}

.yt-widget-info h3 {
    color: #fff;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-shadow: none; /* Logonun gölgesinden etkilenmemesi için */
}

.yt-widget-badge {
    display: inline-block;
    background: #FF0000;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    letter-spacing: 1px;
}

/* YouTube Widget Mobil Uyumluluk */
@media (max-width: 1300px) {
    .yt-widget-container {
        position: relative !important; /* Sabitliği iptal et, akışa dahil et */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important; /* Mobilde tam genişlik */
        max-width: 500px; /* Çok da genişlemesin */
        margin: 10px auto 20px auto !important; /* Ortala ve boşluk bırak */
        display: block !important; /* Mobilde görünür yap */
    }
    
    .yt-widget-thumbnail {
        height: 200px; /* Mobilde videonun daha net görünmesi için yüksekliği artırıyoruz */
    }
    
    .yt-widget-info h3 {
        font-size: 16px; /* Başlığı mobilde biraz büyüt */
    }
}
