/* =========================================================
   Portal Theme - Modern & Clean Design
   ESUNUS Chat 2026
   ========================================================= */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --border: rgba(255,255,255,0.08);
    --glass: rgba(255,255,255,0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Global overflow fix */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.portal-page {
    min-height: 100vh;
    background: var(--darker);
    font-family: var(--font);
    color: var(--light);
    overflow-x: hidden;
    width: 100%;
}

/* =========================================================
   MODERN MARQUEE DUYURU
   ========================================================= */
.portal-marquee {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.15) 50%, rgba(236,72,153,0.15) 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    z-index: 100;
}

.marquee-track {
    display: flex;
    align-items: center;
    height: 45px;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    flex-shrink: 0;
}

.marquee-item i {
    font-size: 1rem;
}

.marquee-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.portal-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Gradient edges for smooth fade */
.portal-marquee::before,
.portal-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.portal-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--darker) 0%, transparent 100%);
}

.portal-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--darker) 100%);
}

.portal-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(99,102,241,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.1) 0%, transparent 50%);
    z-index: 0;
}

/* =========================================================
   Floating Avatars Background
   ========================================================= */
.floating-avatars-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-avatar {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatAvatar 20s ease-in-out infinite;
    will-change: transform;
}

.floating-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.15);
}

/* Float Animation - Smooth wandering movement */
@keyframes floatAvatar {
    0% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(30px, -40px) scale(1.05);
    }
    40% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    60% {
        transform: translate(40px, 30px) scale(1.1);
    }
    80% {
        transform: translate(-30px, -20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Alternative float patterns for variety */
.floating-avatar:nth-child(odd) {
    animation-name: floatAvatarAlt;
}

@keyframes floatAvatarAlt {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-40px, 30px) rotate(5deg) scale(1.08);
    }
    50% {
        transform: translate(20px, -30px) rotate(-3deg) scale(0.92);
    }
    75% {
        transform: translate(35px, 20px) rotate(4deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Slower drift for some avatars */
.floating-avatar:nth-child(3n) {
    animation-name: floatAvatarSlow;
    filter: blur(2px);
}

@keyframes floatAvatarSlow {
    0% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-50px) translateX(30px);
    }
    66% {
        transform: translateY(30px) translateX(-40px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Rising avatars */
.floating-avatar:nth-child(5n) {
    animation-name: floatAvatarRise;
    filter: blur(1px);
}

@keyframes floatAvatarRise {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

.portal-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Header */
.portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.portal-logo {
    position: relative;
    display: inline-block;
}

.portal-logo img { 
    height: 36px;
    filter: drop-shadow(0 0 3px rgba(99, 102, 241, 0.2));
    animation: logoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.portal-logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}

/* Subtle glow animation */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(99, 102, 241, 0.15));
        opacity: 0.92;
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
        opacity: 1;
    }
}

/* Live Indicator Centered Container */
.portal-live-indicator-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.portal-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Live Indicator */
.portal-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
    border: 1px solid rgba(16,185,129,0.25);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.portal-live-indicator .live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.portal-live-indicator .live-count {
    font-weight: 700;
    color: var(--success);
    font-size: 1rem;
    min-width: 35px;
    text-align: center;
}

.portal-live-indicator .live-text {
    color: var(--gray-light);
    font-weight: 500;
}

.portal-nav-desktop {
    display: flex;
    gap: 8px;
}

.portal-nav-desktop a {
    color: var(--gray);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.portal-nav-desktop a:hover {
    color: var(--light);
    background: var(--glass);
}

.portal-nav-mobile {
    display: none;
    gap: 6px;
}

.portal-nav-mobile a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.2s;
}

.portal-nav-mobile a:hover {
    background: var(--primary);
    color: white;
}

.portal-lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--glass);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.portal-lang-btn img { width: 20px; border-radius: 2px; }

/* =========================================================
   DJ ON AIR BANNER - New Design
   ========================================================= */
.dj-onair-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dj-onair-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 14px;
    padding: 6px 14px;
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    min-width: 320px;
    overflow: hidden;
}

/* Arka Plan Ses Dalgası - Boydan Boya, Alttan Yukarı */
.dj-sound-wave-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    padding: 0 10px;
}

.dj-sound-wave-bg .dj-sound-bar {
    width: 4px;
    background: linear-gradient(to top, #f97316, #fdba74);
    border-radius: 2px 2px 0 0;
    animation: soundWaveUp 0.6s ease-in-out infinite alternate;
    transform-origin: bottom;
}

.dj-sound-wave-bg .dj-sound-bar:nth-child(1) { animation-delay: 0s; height: 15%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(2) { animation-delay: 0.05s; height: 25%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(3) { animation-delay: 0.1s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(4) { animation-delay: 0.08s; height: 55%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(5) { animation-delay: 0.15s; height: 45%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(6) { animation-delay: 0.12s; height: 30%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(7) { animation-delay: 0.2s; height: 50%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(8) { animation-delay: 0.18s; height: 65%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(9) { animation-delay: 0.25s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(10) { animation-delay: 0.22s; height: 25%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(11) { animation-delay: 0.3s; height: 50%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(12) { animation-delay: 0.28s; height: 60%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(13) { animation-delay: 0.35s; height: 35%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(14) { animation-delay: 0.32s; height: 20%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(15) { animation-delay: 0.4s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(16) { animation-delay: 0.38s; height: 55%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(17) { animation-delay: 0.45s; height: 70%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(18) { animation-delay: 0.42s; height: 45%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(19) { animation-delay: 0.5s; height: 30%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(20) { animation-delay: 0.48s; height: 20%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(21) { animation-delay: 0.55s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(22) { animation-delay: 0.52s; height: 55%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(23) { animation-delay: 0.6s; height: 50%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(24) { animation-delay: 0.58s; height: 35%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(25) { animation-delay: 0.65s; height: 20%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(26) { animation-delay: 0.62s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(27) { animation-delay: 0.7s; height: 55%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(28) { animation-delay: 0.68s; height: 65%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(29) { animation-delay: 0.75s; height: 40%; }
.dj-sound-wave-bg .dj-sound-bar:nth-child(30) { animation-delay: 0.72s; height: 25%; }

@keyframes soundWaveUp {
    0% { 
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    100% { 
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Canlı Yayın Badge - Küçük */
.dj-live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.95);
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.dj-live-icon {
    width: 5px;
    height: 5px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 5px #3b82f6;
    animation: liveIconPulse 1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes liveIconPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 5px #3b82f6;
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 2px #3b82f6;
    }
}

.dj-live-text {
    font-size: 0.55rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* DJ Avatar */
.dj-onair-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0891b2;
    box-shadow: 0 2px 10px rgba(8,145,178,0.3);
    position: relative;
    z-index: 1;
}

.dj-onair-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DJ Bilgileri */
.dj-onair-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
    z-index: 1;
}

.dj-onair-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: #0891b2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dj-onair-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

/* Süre - Küçük */
.dj-onair-time {
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(6,182,212,0.3);
    position: relative;
    z-index: 1;
}

.dj-onair-time i {
    font-size: 0.55rem;
}

/* Sağ Taraf - Süre ve Canlı Yayın */
.dj-onair-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    margin-left: auto;
    position: relative;
    z-index: 1;
    align-self: flex-end;
    margin-bottom: -4px;
}

.dj-onair-time i {
    font-size: 1rem;
}

/* Kapatma Butonu */
.dj-onair-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: #ef4444;
    border: 2px solid #fff;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    z-index: 999;
}

.dj-onair-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.dj-onair-close i {
    line-height: 1;
}

.dj-onair-close:hover {
    background: #ef4444;
    transform: scale(1.1);
}

/* Ses Dalgası Animasyonu */
/* soundWaveUp is defined above */

/* Responsive */
@media (max-width: 600px) {
    .dj-onair-banner {
        left: 10px;
        right: 10px;
        transform: none;
        bottom: 10px;
    }
    
    .dj-onair-container {
        min-width: auto;
        padding: 10px 15px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .dj-onair-gif {
        width: 50px;
        height: 50px;
    }
    
    .dj-onair-name {
        font-size: 1.1rem;
    }
    
    .dj-onair-time {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* OLD ON AIR - Keep for compatibility */
.portal-onair {
    display: none;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    padding: 10px 32px;
}

.onair-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.onair-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
}

.onair-live-badge .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.onair-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
}

.onair-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.onair-name { font-weight: 600; }

.onair-duration {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.onair-listen-btn {
    background: white;
    color: var(--danger);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Main Content */
.portal-main {
    display: grid;
    grid-template-columns: minmax(420px, 520px) 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px;
    align-items: start;
}

/* Login Card - EXTENDED */
.portal-login-section { 
    position: relative;
    overflow: hidden;
}

/* Site Sahipleri - Premium Effects */
.site-owners-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 8px;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.site-owners-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    padding-top: 30px;
}

/* Login kartından inen ana çizgi - 2 kişi için */
.dual-owner .site-owners-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.6), rgba(251, 191, 36, 0.4));
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
    z-index: 20;
}

/* Yatay bağlantı çizgisi - 2 kişi için */
.dual-owner .site-owners-container::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.4), rgba(99, 102, 241, 0.6), rgba(251, 191, 36, 0.4));
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
    z-index: 20;
}

/* === TEK SİTE SAHİBİ STİLLERİ === */
.single-owner .site-owners-container {
    gap: 0;
}

/* Tek dikey çizgi - ortada */
.single-owner .site-owners-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.6), rgba(251, 191, 36, 0.5));
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    z-index: 20;
}

/* Yatay çizgi yok - tek kişi için */
.single-owner .site-owners-container::after {
    display: none;
}

/* Tek kart için bağlantı çizgisi */
.single-owner .site-owner-card::before {
    top: -22px;
    height: 22px;
}

.single-owner .site-owner-card::after {
    top: -26px;
}

/* Merkez Moving Head - tek kişi için */
.moving-head-center {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    border-radius: 50%;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        inset 0 2px 4px rgba(255,255,255,0.1),
        inset 0 -3px 6px rgba(0,0,0,0.4);
    z-index: 5;
    border: 2px solid #333;
    pointer-events: none;
    animation: movingHeadCenter 5s ease-in-out infinite;
}

.moving-head-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, 
        #ffffff 0%, 
        #f0f8ff 20%,
        #87ceeb 40%,
        #4169e1 70%,
        #1e3a5f 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(135, 206, 235, 0.9),
        0 0 25px rgba(65, 105, 225, 0.6),
        0 0 40px rgba(255, 255, 255, 0.4),
        inset 0 0 6px rgba(255,255,255,0.9);
    animation: lensGlow 2s ease-in-out infinite;
    pointer-events: none;
}

.moving-head-center::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 180px;
    height: 220px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.8) 0%,
        rgba(135,206,235,0.5) 10%,
        rgba(255,255,255,0.3) 25%,
        rgba(135,206,235,0.2) 45%,
        rgba(255,255,255,0.08) 70%,
        transparent 100%
    );
    clip-path: polygon(47% 0%, 53% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    transform-origin: top center;
    filter: blur(1px);
    animation: spotlightCenter 5s ease-in-out infinite;
}

@keyframes movingHeadCenter {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(15deg); }
    50% { transform: translateX(-50%) rotate(-15deg); }
    75% { transform: translateX(-50%) rotate(10deg); }
}

@keyframes spotlightCenter {
    0%, 100% { 
        transform: translateX(-50%) rotate(0deg); 
        opacity: 0.8;
    }
    25% { 
        transform: translateX(-50%) rotate(15deg); 
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) rotate(-15deg); 
        opacity: 0.9;
    }
    75% { 
        transform: translateX(-50%) rotate(10deg); 
        opacity: 1;
    }
}

.site-owner-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    position: relative;
    min-width: 100px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(251, 191, 36, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    animation: cardGlow 4s ease-in-out infinite;
}

/* Kartlara bağlanan dikey çizgiler */
.site-owner-card::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.5), rgba(251, 191, 36, 0.3));
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.2);
}

/* Bağlantı noktası (küçük daire) */
.site-owner-card::after {
    content: '';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.site-owner-card:nth-child(1) {
    animation-delay: 0s;
}

.site-owner-card:nth-child(2) {
    animation-delay: 2s;
}

/* Kart üzerine ışık geldiğinde parlama */
@keyframes cardGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(251, 191, 36, 0.15);
    }
    25% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(251, 191, 36, 0.2);
    }
    50% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(251, 191, 36, 0.15);
    }
    75% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            0 0 50px rgba(255, 255, 255, 0.4),
            0 0 80px rgba(251, 191, 36, 0.25);
    }
}

.site-owner-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 255, 255, 0.5),
        0 0 80px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.8);
}

/* Moving Head Spot Işıkları - Modern Tasarım */
.moving-head-left,
.moving-head-right {
    position: absolute;
    top: -25px;
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    border-radius: 50%;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        inset 0 2px 4px rgba(255,255,255,0.1),
        inset 0 -3px 6px rgba(0,0,0,0.4);
    z-index: 5;
    border: 2px solid #333;
    pointer-events: none;
}

/* Lens - İç kısım */
.moving-head-left::before,
.moving-head-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, 
        #ffffff 0%, 
        #f0f8ff 20%,
        #87ceeb 40%,
        #4169e1 70%,
        #1e3a5f 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(135, 206, 235, 0.8),
        0 0 20px rgba(65, 105, 225, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 0 5px rgba(255,255,255,0.8);
    animation: lensGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lensGlow {
    0%, 100% { 
        box-shadow: 
            0 0 10px rgba(135, 206, 235, 0.8),
            0 0 20px rgba(65, 105, 225, 0.5),
            0 0 30px rgba(255, 255, 255, 0.3),
            inset 0 0 5px rgba(255,255,255,0.8);
    }
    50% { 
        box-shadow: 
            0 0 15px rgba(135, 206, 235, 1),
            0 0 30px rgba(65, 105, 225, 0.7),
            0 0 50px rgba(255, 255, 255, 0.5),
            inset 0 0 8px rgba(255,255,255,1);
    }
}

.moving-head-left {
    left: calc(50% - 140px);
    animation: movingHeadLeft 5s ease-in-out infinite;
}

.moving-head-right {
    right: calc(50% - 140px);
    animation: movingHeadRight 5s ease-in-out infinite;
}

/* Işık Huzmeleri - Volumetrik efekt */
.moving-head-left::after,
.moving-head-right::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 150px;
    height: 200px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.7) 0%,
        rgba(135,206,235,0.4) 10%,
        rgba(255,255,255,0.25) 25%,
        rgba(135,206,235,0.15) 45%,
        rgba(255,255,255,0.05) 70%,
        transparent 100%
    );
    clip-path: polygon(47% 0%, 53% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    transform-origin: top center;
    filter: blur(1px);
}

.moving-head-left::after {
    animation: spotlightLeft 5s ease-in-out infinite;
}

.moving-head-right::after {
    animation: spotlightRight 5s ease-in-out infinite;
}

/* Sol Moving Head Animasyonu - Yumuşak hareket */
@keyframes movingHeadLeft {
    0%, 100% { transform: rotate(-25deg); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    60% { transform: rotate(20deg); }
    80% { transform: rotate(-15deg); }
}

/* Sağ Moving Head Animasyonu */
@keyframes movingHeadRight {
    0%, 100% { transform: rotate(25deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(5deg); }
    60% { transform: rotate(-20deg); }
    80% { transform: rotate(15deg); }
}

/* Sol Spot Işık Huzmesi Animasyonu */
@keyframes spotlightLeft {
    0%, 100% { 
        transform: translateX(-50%) rotate(-25deg); 
        opacity: 0.5;
        filter: blur(1px);
    }
    20% { 
        transform: translateX(-50%) rotate(10deg); 
        opacity: 0.9;
        filter: blur(0px);
    }
    40% { 
        transform: translateX(-50%) rotate(-5deg); 
        opacity: 0.6;
        filter: blur(1px);
    }
    60% { 
        transform: translateX(-50%) rotate(20deg); 
        opacity: 1;
        filter: blur(0px);
    }
    80% { 
        transform: translateX(-50%) rotate(-15deg); 
        opacity: 0.7;
        filter: blur(1px);
    }
}

/* Sağ Spot Işık Huzmesi Animasyonu */
@keyframes spotlightRight {
    0%, 100% { 
        transform: translateX(-50%) rotate(25deg); 
        opacity: 0.5;
        filter: blur(1px);
    }
    20% { 
        transform: translateX(-50%) rotate(-10deg); 
        opacity: 0.9;
        filter: blur(0px);
    }
    40% { 
        transform: translateX(-50%) rotate(5deg); 
        opacity: 0.6;
        filter: blur(1px);
    }
    60% { 
        transform: translateX(-50%) rotate(-20deg); 
        opacity: 1;
        filter: blur(0px);
    }
    80% { 
        transform: translateX(-50%) rotate(15deg); 
        opacity: 0.7;
        filter: blur(1px);
    }
}

/* Aktif Üyeler */
.active-users-section {
    margin-top: 24px;
}

/* Modern Floating Particles - Gradient Bubbles */
.login-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(168, 85, 247, 0.3));
    filter: blur(40px);
    animation: particleFloat 15s ease-in-out infinite;
    opacity: 0;
}

/* Particle sizes and positions */
.particle-1 {
    width: 200px;
    height: 200px;
    left: -10%;
    top: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(59, 130, 246, 0.2));
}

.particle-2 {
    width: 150px;
    height: 150px;
    right: -5%;
    top: 20%;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.2));
}

.particle-3 {
    width: 180px;
    height: 180px;
    left: 50%;
    top: -10%;
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.2));
}

.particle-4 {
    width: 220px;
    height: 220px;
    left: 10%;
    bottom: -10%;
    animation-delay: 9s;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.2));
}

.particle-5 {
    width: 160px;
    height: 160px;
    right: 15%;
    bottom: 15%;
    animation-delay: 12s;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(239, 68, 68, 0.2));
}

.particle-6 {
    width: 140px;
    height: 140px;
    left: 30%;
    top: 50%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(99, 102, 241, 0.2));
}

.particle-7 {
    width: 190px;
    height: 190px;
    right: 25%;
    top: 30%;
    animation-delay: 5s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.2));
}

.particle-8 {
    width: 170px;
    height: 170px;
    left: 60%;
    bottom: 20%;
    animation-delay: 8s;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.2));
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -80px) scale(1.2);
        opacity: 0.4;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-20px, -120px) scale(0);
        opacity: 0;
    }
}

.login-card {
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 
        0 0 80px rgba(99, 102, 241, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 100px rgba(99, 102, 241, 0.25),
        0 25px 70px rgba(0, 0, 0, 0.5);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.login-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Tabs */
.login-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 4px;
    background: var(--glass);
    border-radius: var(--radius-sm);
}

.login-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-tab:hover { color: var(--light); }

.login-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* Forms */
.login-form { display: none; }
.login-form.active { display: block; }

.input-group {
    position: relative;
    margin-bottom: 16px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 46px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.2s;
}

.input-group input::placeholder { color: var(--gray); }

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.select-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.select-row select {
    flex: 1;
    padding: 16px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-family: var(--font);
    font-size: 1rem;
    cursor: pointer;
}

.select-row select option { background: var(--dark); }

/* Buttons */
.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}

.btn-register {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    transition: all 0.2s;
}

.btn-register:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.recovery-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
}

.recovery-link:hover { color: var(--primary); }

.recaptcha-wrap {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

/* Login Users Section - Desktop */
.login-users-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-users-block h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-users-block h4 i { color: var(--success); }

.login-users-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Eski .login-user gizle */
.login-user {
    display: none;
}

/* =========================================================
   AKTİF ÜYELER SECTION - Login Kartı Dışında
   ========================================================= */

/* =========================================================
   SİTE SAHİPLERİ - Premium Effects
   ========================================================= */

/* Animated gradient border */
/* Owner avatar stilleri */
.owner-avatar-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    margin: 0 auto 6px;
}

.owner-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 191, 36, 0.5);
}

.owner-crown {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #fbbf24;
    font-size: 14px;
    animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.owner-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.owner-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.owner-stars i {
    font-size: 8px;
}

.owner-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.site-owner-card:hover::after {
    opacity: 1;
}

.site-owner-card:hover {
    transform: translateY(-5px) scale(1.08);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 
        0 10px 40px rgba(251, 191, 36, 0.3),
        0 0 0 1px rgba(251, 191, 36, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.owner-avatar-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    
    /* Avatar pop-in animation */
    animation: avatarPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.site-owner-card:nth-child(1) .owner-avatar-wrapper {
    animation-delay: 0.5s;
}

.site-owner-card:nth-child(2) .owner-avatar-wrapper {
    animation-delay: 0.7s;
}

@keyframes avatarPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
    60% {
        transform: scale(1.2) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Pulsing ring around avatar */
.owner-avatar-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #fbbf24,
        #f59e0b,
        #8b5cf6,
        #6366f1,
        #fbbf24
    );
    animation: rotateBorder 3s linear infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

.owner-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(251, 191, 36, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.site-owner-card:hover .owner-avatar {
    border-color: rgba(251, 191, 36, 1);
    filter: brightness(1.1);
}

/* Crown with glow pulse + entrance */
.owner-crown {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px rgba(251, 191, 36, 0.8),
        0 0 30px rgba(251, 191, 36, 0.4);
    animation: 
        crownPulse 2s ease-in-out infinite,
        crownDrop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
    z-index: 2;
}

.site-owner-card:nth-child(1) .owner-crown {
    animation-delay: 0s, 0.7s;
}

.site-owner-card:nth-child(2) .owner-crown {
    animation-delay: 0s, 0.9s;
}

@keyframes crownDrop {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg) scale(0);
    }
    60% {
        transform: translateY(5px) rotate(-10deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes crownPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }
    50% { 
        transform: scale(1.15);
        box-shadow: 0 0 25px rgba(251, 191, 36, 1);
    }
}

.owner-crown i {
    color: #000;
    font-size: 0.65rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.owner-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(251, 191, 36, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}

/* Stars with twinkle effect + entrance */
.owner-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.owner-stars i {
    font-size: 0.6rem;
    filter: drop-shadow(0 0 4px currentColor);
    animation: starTwinkle 1.5s ease-in-out infinite;
}

/* Cascade entrance for stars */
.site-owner-card .owner-stars i {
    animation: starTwinkle 1.5s ease-in-out infinite, starCascade 0.5s ease-out both;
}

.site-owner-card:nth-child(1) .owner-stars i:nth-child(1) { animation-delay: 0s, 0.8s; }
.site-owner-card:nth-child(1) .owner-stars i:nth-child(2) { animation-delay: 0.2s, 0.85s; }
.site-owner-card:nth-child(1) .owner-stars i:nth-child(3) { animation-delay: 0.4s, 0.9s; }
.site-owner-card:nth-child(1) .owner-stars i:nth-child(4) { animation-delay: 0.6s, 0.95s; }
.site-owner-card:nth-child(1) .owner-stars i:nth-child(5) { animation-delay: 0.8s, 1s; }

.site-owner-card:nth-child(2) .owner-stars i:nth-child(1) { animation-delay: 0s, 1s; }
.site-owner-card:nth-child(2) .owner-stars i:nth-child(2) { animation-delay: 0.2s, 1.05s; }
.site-owner-card:nth-child(2) .owner-stars i:nth-child(3) { animation-delay: 0.4s, 1.1s; }
.site-owner-card:nth-child(2) .owner-stars i:nth-child(4) { animation-delay: 0.6s, 1.15s; }
.site-owner-card:nth-child(2) .owner-stars i:nth-child(5) { animation-delay: 0.8s, 1.2s; }

@keyframes starCascade {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0) rotate(180deg);
    }
    60% {
        transform: translateY(3px) scale(1.3) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

/* Badge with shine effect */
.owner-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 
        0 2px 8px rgba(251, 191, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.owner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 2s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}


.active-users-section {
    background: rgba(27, 27, 47, 0.95);
    border-radius: 16px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.active-users-section h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-users-section h4 i {
    color: var(--primary);
}

.active-users-section.dj-section {
    margin-top: 12px;
}

/* Grid 8 kişiyi yan yana göster */
.active-users-section .members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

/* =========================================================
   ACTIVE USERS - Premium Dikey Kartlar (Resim Referansı)
   ========================================================= */
/* Aktif Üyeler Carousel Container */
.active-users-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.active-users-grid {
    display: flex;
    gap: 15px;
    padding: 5px 0;
    animation: scrollCarousel 25s linear infinite;
    width: max-content;
}

.active-users-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.active-user-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.active-user-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.active-user-card-inner {
    position: relative;
    width: 75px;
    height: 105px;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #0a0a15;
}

/* Cinsiyet bazlı çerçeve renkleri */
.active-user-card.female .active-user-card-inner {
    border: 3px solid #ec4899;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4), 0 8px 25px rgba(0,0,0,0.3);
}

.active-user-card.male .active-user-card-inner {
    border: 3px solid #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4), 0 8px 25px rgba(0,0,0,0.3);
}

.active-user-card:hover .active-user-card-inner {
    box-shadow: 0 0 25px rgba(255,255,255,0.2), 0 15px 35px rgba(0,0,0,0.4);
}

/* Profil resmi wrapper - tam kaplasın */
.active-user-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a15;
    display: block;
}

.active-user-avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

.active-user-card:hover .active-user-avatar {
    transform: scale(1.05);
}

/* Yeşil çevrimiçi noktası - sol üstte */
.online-dot {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #0d0d1a;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.online-dot.large {
    width: 12px;
    height: 12px;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px rgba(34, 197, 94, 1);
        transform: scale(1.1);
    }
}

/* Rütbe badge'i - kartın alt kısmında, içinde */
.active-user-badge {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    text-align: center;
    letter-spacing: 0.3px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    z-index: 10;
    max-width: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badge renkleri rütbeye göre */
.active-user-badge.badge-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.active-user-badge.badge-gold {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.active-user-badge.badge-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.active-user-badge.badge-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.active-user-badge.badge-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.active-user-badge.badge-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.active-user-badge.badge-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.active-user-badge.badge-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.active-user-name {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* Hidden class - artık kullanılmıyor, carousel var */
.active-user-card.hidden {
    display: flex;
}

/* Fade animation for rotation */
.active-user-card.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.active-user-card.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.8); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* =========================================================
   ACTIVE USER MODAL
   ========================================================= */
.active-user-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-user-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.active-user-modal {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 30px;
    max-width: 320px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transform: scale(0.8) rotateY(-30deg);
    transition: transform 0.4s ease;
}

.active-user-modal-overlay.active .active-user-modal {
    transform: scale(1) rotateY(0);
}

.active-user-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.active-user-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.active-user-modal-content {
    text-align: center;
}

.active-user-modal-avatar {
    position: relative;
    width: 120px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 60px;
    overflow: hidden;
    border: 4px solid #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.active-user-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active-user-modal-avatar .online-dot {
    top: 12px;
    right: 12px;
}

.active-user-modal-info h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.active-user-modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.active-user-modal-status {
    color: #22c55e;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.active-user-modal-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* =========================================================
   ONLINE MEMBERS - Dönen Efektli Kartlar
   ========================================================= */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
    gap: 10px;
    justify-items: center;
}

.member-card {
    position: relative;
    border-radius: 12px;
    padding: 8px 6px;
    width: 75px;
    min-height: 95px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-card:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.member-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px dashed #fff;
    transition: transform 0.6s ease;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
    position: relative;
    z-index: 5;
}

/* Dönen Işık Efekti */
.avatar-container::before,
.avatar-container::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0,255,255,0.5), rgba(255,255,255,0.3), transparent);
    z-index: 4;
    animation: spinLight 2s linear infinite;
}

.avatar-container::after {
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(0,255,255,0.5), transparent);
}

/* Hover'da 360° dönme */
.member-card:hover .member-avatar {
    transform: rotateY(360deg) scale(1.05);
}

/* Rütbe Badge - Avatar Altında */
.status-badge {
    font-size: 6px;
    font-weight: bold;
    padding: 2px 6px;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 4px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* İsim - En Altta */
.member-name {
    font-size: 8px;
    margin-top: 3px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Cinsiyet Renkleri - Arka Plan */
.member-card.male {
    background: linear-gradient(180deg, #1e3c72 0%, #2a5298 100%);
    border: 2px solid #3b82f6;
}

.member-card.female {
    background: linear-gradient(180deg, #c2185b 0%, #e91e63 50%, #f06292 100%);
    border: 2px solid #ec4899;
}

/* Orbit Efektleri */
.member-card::before,
.member-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    filter: blur(6px);
    opacity: 0.2;
    pointer-events: none;
}

.member-card::before {
    background: #00fff7;
    top: -5px;
    left: -5px;
    animation: orbitBefore 3s linear infinite;
}

.member-card::after {
    background: #ffffff;
    bottom: -5px;
    right: -5px;
    animation: orbitAfter 3s linear infinite;
}

@keyframes orbitBefore {
    0%   { transform: rotate(0deg) translateX(12px); }
    100% { transform: rotate(360deg) translateX(12px); }
}

@keyframes orbitAfter {
    0%   { transform: rotate(360deg) translateX(12px); }
    100% { transform: rotate(0deg) translateX(12px); }
}

/* =========================================================
   Active User Modal
   ========================================================= */
.user-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.user-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.user-modal {
    background: linear-gradient(145deg, #1b1b2f 0%, #0f0f1a 100%);
    border-radius: 20px;
    padding: 25px;
    max-width: 280px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 30px rgba(0,255,255,0.1);
    transform: scale(0.8) rotateY(90deg);
    transition: transform 0.5s ease;
    text-align: center;
}

.user-modal-overlay.active .user-modal {
    transform: scale(1) rotateY(0deg);
}

.user-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.user-modal-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.user-modal-avatar {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.user-modal-glow {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(0,255,255,0.5), rgba(255,255,255,0.3), transparent);
    animation: spinLight 2s linear infinite;
}

.user-modal-avatar img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #fff;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.user-modal-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.user-modal-rank {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #fff;
}

.user-modal-bio {
    color: var(--gray);
    font-size: 0.8rem;
}

.login-dj-grid {
    display: flex;
    gap: 10px;
}

.login-dj {
    position: relative;
}

.login-dj img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.login-dj.onair img { border-color: var(--danger); }

.login-dj .live-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: white;
    font-size: 0.5rem;
    padding: 2px 5px;
    border-radius: 6px;
    font-weight: 700;
}

/* Hero Section */
.portal-hero-section {
    order: 2;
    padding: 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.feature-item span { font-size: 0.9rem; }

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* =========================================================
   DJ Section - Sağ Tarafta (Hero Altında)
   ========================================================= */
.hero-dj-section {
    margin-top: 30px;
    background: rgba(27, 27, 47, 0.6);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.hero-dj-section h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dj-section h4 i {
    color: var(--accent);
}

.hero-dj-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-dj {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-dj img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border);
    object-fit: cover;
    transition: transform 0.3s, border-color 0.3s;
}

.hero-dj:hover img {
    transform: scale(1.1);
    border-color: var(--primary);
}

.hero-dj.onair img {
    border-color: var(--danger);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}

.hero-dj .live-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 6px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 6px;
    animation: pulse 1.5s infinite;
}

.hero-dj-name {
    font-size: 9px;
    color: var(--gray-light);
    text-align: center;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile Community Section - ABOVE hero text */
.mobile-community-section {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-block {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.mobile-block h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-block h4 i { color: var(--success); font-size: 0.7rem; }

.mobile-users-row, .mobile-dj-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mobile-user img, .mobile-dj img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--border);
}

.mobile-user.male img { border-color: #3b82f6; }
.mobile-user.female img { border-color: #ec4899; }

.mobile-dj { position: relative; }
.mobile-dj img { border-radius: 50%; }
.mobile-dj.onair img { border-color: var(--danger); }

.mobile-dj .live-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--darker);
    animation: pulse 1s infinite;
}

/* Mobile Team Carousel */
.mobile-team-container, .mobile-news-container {
    overflow: hidden;
}

.mobile-team-track, .mobile-news-track {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
}

.mobile-team-item {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.mobile-team-item img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.team-crown-mini {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
}

/* Sections */
.portal-section {
    padding: 40px 32px;
    border-top: 1px solid var(--border);
}

/* =========================================================
   MAKALELER / HABERLER - Yeni Tasarım
   ========================================================= */
.news-section-new {
    background: var(--darker);
    padding: 50px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-section-header {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.news-section-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.news-section-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* News Carousel Styles - 3 Kart Yan Yana */
.news-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.news-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.news-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.news-carousel-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 10px;
}

.news-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.9);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-carousel-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(99, 102, 241, 0.5);
}

.news-prev { left: 0; }
.news-next { right: 0; }

.news-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

/* Sayfa Numaraları (1, 2, 3, 4...) */
.news-pagination-numbers {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.news-pagination-numbers .page-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-pagination-numbers .page-num:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.news-pagination-numbers .page-num.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

/* 3 veya daha az haber varsa okları gizle */
.news-carousel-wrapper.no-arrows {
    padding: 0 20px;
}

/* Dikey Haber Kartı - Üstte Resim, Ortada Açıklama, Altta Buton */
.news-card-vertical {
    background: rgba(30, 41, 59, 0.9);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.news-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(99, 102, 241, 0.4);
}

.news-card-vertical .news-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-card-vertical .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-vertical:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-vertical .news-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 3rem;
}

.news-card-vertical .news-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    animation: pulse 2s infinite;
}

.news-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body .news-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99, 102, 241, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.news-card-body .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body .news-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body .news-date {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-vertical .news-card-footer {
    padding: 0 20px 20px;
}

.news-card-vertical .news-read-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.news-card-vertical .news-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .news-carousel-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-carousel-slide {
        grid-template-columns: 1fr;
    }
    .news-carousel-wrapper {
        padding: 0 40px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card-new {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.news-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.news-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card-new:hover .news-card-image img {
    transform: scale(1.05);
}

.news-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #eab308 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.news-card-content {
    padding: 18px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.category-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date i {
    font-size: 0.75rem;
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.news-read-btn:hover {
    background: var(--primary);
}

.news-read-btn i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.news-read-btn:hover i {
    transform: translateX(3px);
}

/* Sayfalama */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
}

/* Hidden news cards */
.news-card-new.hidden {
    display: none;
}

/* =========================================================
   MAKALE YAN PANEL (Side Panel)
   ========================================================= */
.news-sidepanel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.news-sidepanel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.news-sidepanel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    max-width: 90vw;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 10001;
}

.news-sidepanel-overlay.active .news-sidepanel {
    right: 0;
}

.sidepanel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.sidepanel-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.sidepanel-content {
    padding: 0;
}

.sidepanel-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sidepanel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidepanel-image.no-image::after {
    content: 'MAKALE';
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    font-weight: 900;
}

.sidepanel-body {
    padding: 30px;
}

.sidepanel-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sidepanel-category::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.sidepanel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.sidepanel-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sidepanel-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.85rem;
}

.sidepanel-meta i {
    color: var(--primary);
}

.sidepanel-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section-new {
        padding: 30px 16px;
    }
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 20px;
}

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

.section-header h3 i { color: var(--primary); }

/* Fade Carousel - NO SCROLL */
.fade-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.fade-track {
    position: relative;
    min-height: 140px;
}

.fade-slide {
    display: none;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-slide.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dots */
.fade-dots, .mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* =========================================================
   3D ORBIT TEAM CAROUSEL 
   ========================================================= */
.team-orbit-section {
    padding: 60px 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.03) 50%, transparent 100%);
}

.team-orbit-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-orbit-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-orbit-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--light), var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-orbit-header h3 i {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

/* 3D Orbit Container */
.team-orbit-container {
    position: relative;
    width: 100%;
    height: 320px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.team-orbit-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.team-orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Individual Member Card */
.member-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 170px;
    margin-left: -60px;
    margin-top: -85px;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.member-card:hover {
    z-index: 100 !important;
}

/* =========================================================
   Member Modal
   ========================================================= */
.member-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.member-modal {
    background: linear-gradient(145deg, #1a1f35 0%, #0f1225 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.member-modal-overlay.active .member-modal {
    transform: scale(1) translateY(0);
}

.member-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.member-modal-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.member-modal-content {
    padding: 30px;
    text-align: center;
}

.member-modal-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.member-modal-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(99,102,241,0.5);
    box-shadow: 0 10px 40px rgba(99,102,241,0.3);
}

.member-modal-crown {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.member-modal-status {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

.member-modal-status.offline {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    box-shadow: 0 4px 15px rgba(107,114,128,0.4);
}

.member-modal-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.member-modal-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.member-modal-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.modal-detail-item i {
    color: var(--primary);
}

.member-modal-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Modal Rank Colors */
.member-modal[data-rank="admin"] .member-modal-avatar img {
    border-color: #fbbf24;
}
.member-modal[data-rank="admin"] .member-modal-role {
    background: linear-gradient(135deg, #1e40af, #fbbf24);
}

.member-modal[data-rank="supermod"] .member-modal-avatar img {
    border-color: #f97316;
}
.member-modal[data-rank="supermod"] .member-modal-role {
    background: linear-gradient(135deg, #1e3a5f, #f97316);
}

.member-modal[data-rank="mod"] .member-modal-avatar img {
    border-color: #10b981;
}
.member-modal[data-rank="mod"] .member-modal-role {
    background: linear-gradient(135deg, #134e4a, #10b981);
}

.member-modal[data-rank="vip"] .member-modal-avatar img {
    border-color: #a855f7;
}
.member-modal[data-rank="vip"] .member-modal-role {
    background: linear-gradient(135deg, #581c87, #a855f7);
}

/* Responsive Modal */
@media (max-width: 480px) {
    .member-modal {
        max-width: 340px;
    }
    
    .member-modal-content {
        padding: 20px;
    }
    
    .member-modal-avatar {
        width: 100px;
        height: 100px;
    }
    
    .member-modal-info h2 {
        font-size: 1.3rem;
    }
    
    .member-modal-details {
        flex-direction: column;
        gap: 10px;
    }
}

.member-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    border-radius: 16px;
    overflow: visible;
}

/* Card Front */
.member-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.4),
        0 0 20px rgba(99,102,241,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Card Border Gradient - More vivid colors like the image */
.member-card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(180deg, 
        var(--member-color-top, #1e3a5f) 0%, 
        var(--member-color-mid, #0d1f33) 50%,
        var(--member-color-bottom, #f97316) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.member-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0c1929 0%, #0f172a 100%);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
}

/* Avatar Container */
.member-avatar-wrap {
    position: relative;
    margin-bottom: 8px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

/* Crown Badge */
.member-crown {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Online Status Badge */
.member-status {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}

/* Member Info */
.member-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light);
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.member-role {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

/* Card Glow Effect */
.member-card::before,
.member-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    filter: blur(10px);
    opacity: 0.2;
    pointer-events: none;
}

.member-card::before {
    background: var(--member-color-top, #60a5fa);
    top: -10px;
    left: -10px;
}

.member-card::after {
    background: var(--member-color-bottom, #f97316);
    bottom: -10px;
    right: -10px;
}

/* Color Variants Based on Rank - More vivid like the image */
.member-card[data-rank="admin"] {
    --member-color-top: #60a5fa;
    --member-color-mid: #1e3a5f;
    --member-color-bottom: #fbbf24;
}

.member-card[data-rank="supermod"] {
    --member-color-top: #3b82f6;
    --member-color-mid: #1e3a5f;
    --member-color-bottom: #f97316;
}

.member-card[data-rank="mod"] {
    --member-color-top: #22d3ee;
    --member-color-mid: #134e4a;
    --member-color-bottom: #10b981;
}

.member-card[data-rank="vip"] {
    --member-color-top: #a855f7;
    --member-color-mid: #3b0764;
    --member-color-bottom: #ec4899;
}

/* Crown Colors */
.crown-gold { color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
.crown-silver { color: #c0c0c0; text-shadow: 0 0 10px rgba(192,192,192,0.5); }
.crown-bronze { color: #cd7f32; text-shadow: 0 0 10px rgba(205,127,50,0.5); }
.crown-purple { color: #8b5cf6; text-shadow: 0 0 10px rgba(139,92,246,0.5); }
.crown-gray { color: #64748b; }

/* Floor Reflection */
.team-orbit-floor {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
}

/* Pause on Hover */
.team-orbit-container:hover .team-orbit-ring {
    animation-play-state: paused;
}

/* Standard Team Card (fallback) */
.team-card {
    flex-shrink: 0;
    width: 120px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.team-crown {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.team-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.team-name {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    font-size: 0.65rem;
    color: var(--gray);
}

/* =========================================================
   RESPONSIVE for 3D Orbit
   ========================================================= */
@media (max-width: 768px) {
    .team-orbit-container {
        height: 280px;
        perspective: 800px;
    }
    
    .member-card {
        width: 85px;
        height: 130px;
        margin-left: -42px;
        margin-top: -65px;
    }
    
    .member-avatar {
        width: 50px;
        height: 50px;
    }
    
    .member-name {
        font-size: 0.75rem;
        overflow: visible;
    }
    
    .member-role {
        font-size: 0.65rem;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .team-orbit-section {
        padding: 40px 16px;
    }
    
    .team-orbit-container {
        height: 280px;
        perspective: 700px;
    }
    
    .member-card {
        width: 90px;
        height: 130px;
        margin-left: -45px;
        margin-top: -65px;
    }
    
    .member-avatar {
        width: 48px;
        height: 48px;
    }
    
    .member-crown {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
        top: -6px;
        right: -6px;
    }
    
    .member-name {
        font-size: 0.7rem;
        overflow: visible;
        white-space: nowrap;
    }
    
    .member-role {
        font-size: 0.6rem;
        overflow: visible;
    }
    
    .member-status {
        font-size: 0.5rem;
        padding: 1px 5px;
    }
}

/* News Card */
.news-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.2s;
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.news-image {
    height: 100px;
    background: var(--dark);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.5rem;
    opacity: 0.3;
}

.news-body {
    padding: 12px;
}

.news-body p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 44px;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 10px;
    font-size: 0.65rem;
    color: var(--gray);
}

.news-meta i { margin-right: 3px; }

/* Mobile News */
.mobile-news-card {
    flex-shrink: 0;
    width: 150px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.mobile-news-img {
    height: 70px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    opacity: 0.3;
}

.mobile-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.mobile-news-text {
    padding: 10px;
}

.mobile-news-text p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.mobile-news-text span {
    font-size: 0.65rem;
    color: var(--gray);
}

/* =========================================================
   ULTRA MODERN FOOTER - 2026 DESIGN
   ========================================================= */

.portal-footer-new {
    position: relative;
    background: linear-gradient(180deg, #080810 0%, #0d0d18 50%, #121220 100%);
    overflow: hidden;
}

/* Animated Background */
.portal-footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99,102,241,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Wave Effect */
.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    color: var(--bg-main, #0d0d15);
    z-index: 1;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Main Footer */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 24px 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo img {
    height: 38px;
    width: auto;
    filter: brightness(1.1);
}

.footer-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

/* Social Buttons - Glass Style */
.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.footer-social .social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

.footer-social .social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 8px 25px rgba(24,119,242,0.35); }
.footer-social .social-btn.twitter:hover { background: #1da1f2; border-color: #1da1f2; box-shadow: 0 8px 25px rgba(29,161,242,0.35); }
.footer-social .social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); border-color: #dc2743; box-shadow: 0 8px 25px rgba(220,39,67,0.35); }
.footer-social .social-btn.discord:hover { background: #5865f2; border-color: #5865f2; box-shadow: 0 8px 25px rgba(88,101,242,0.35); }
.footer-social .social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 8px 25px rgba(255,0,0,0.35); }
.footer-social .social-btn.tiktok:hover { background: #000; border-color: #25f4ee; box-shadow: 0 8px 25px rgba(37,244,238,0.25); }

/* App Download Buttons */
.footer-apps {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.app-btn i {
    font-size: 1.4rem;
    opacity: 0.9;
}

.app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.app-text span {
    font-size: 0.6rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-text strong {
    font-size: 0.82rem;
    font-weight: 600;
}

/* Footer Columns */
.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column h4 i {
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links-list li a i {
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.7;
    width: 16px;
    transition: all 0.3s ease;
}

.footer-links-list li a:hover {
    color: #fff;
}

.footer-links-list li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Contact Card */
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact .contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
    border: 1px solid rgba(99,102,241,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
}

.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.footer-contact .contact-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-value {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-contact .contact-value:hover {
    color: var(--primary);
}

/* Stats Band */
.footer-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 35px 20px;
    margin-top: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.footer-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-stat-item > i {
    font-size: 1.6rem;
    color: var(--primary);
    opacity: 0.7;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Bottom Footer */
.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 20px 24px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.badge-item i {
    color: #22c55e;
    font-size: 0.7rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal span {
    color: rgba(255,255,255,0.15);
}

/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-stats {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-wave {
        height: 40px;
    }
    
    .footer-main {
        padding: 50px 16px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-desc {
        max-width: 100%;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-apps {
        display: none;
    }
    
    /* Hızlı Linkler ve Özellikler gizle */
    .footer-column:not(.footer-contact):not(.footer-brand) {
        display: none;
    }
    
    .footer-column h4 {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    /* İletişim - 2x2 Grid */
    .footer-contact {
        display: block;
    }
    
    .footer-contact .contact-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .footer-contact .contact-item {
        justify-content: flex-start;
        text-align: left;
        padding: 12px;
        background: rgba(255,255,255,0.03);
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-contact .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .footer-contact .contact-info {
        text-align: left;
    }
    
    .footer-contact .contact-label {
        font-size: 0.65rem;
    }
    
    .footer-contact .contact-value {
        font-size: 0.75rem;
        word-break: break-word;
    }
    
    .footer-stats {
        display: none;
    }
    
    .footer-bottom {
        padding: 15px 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 50px 16px 20px;
    }
    
    .footer-social .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .footer-apps {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .app-btn {
        width: 100%;
        max-width: 180px;
        justify-content: center;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
    
    .footer-links-list {
        gap: 8px;
    }
    
    .footer-links-list li a {
        font-size: 0.8rem;
    }
    
    .footer-contact .contact-item {
        max-width: 100%;
    }
    
    .footer-contact .contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.75rem;
    }
    
    .footer-contact .contact-value {
        font-size: 0.75rem;
    }
    
    .footer-stats {
        gap: 15px;
        padding: 20px 10px;
    }
    
    .footer-stat-item {
        gap: 10px;
    }
    
    .footer-stat-item > i {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 0.6rem;
    }
    
    .badge-item {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .footer-copy {
        font-size: 0.72rem;
    }
    
    .footer-legal a {
        font-size: 0.72rem;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE FIXES
   ========================================================= */

@media (max-width: 768px) {
    /* Fix horizontal overflow */
    .portal-page,
    .portal-main,
    .portal-section,
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Portal main - single column on mobile */
    .portal-main {
        grid-template-columns: 1fr !important;
        padding: 16px;
        gap: 20px;
    }
    
    /* HIDE hero elements on mobile */
    .hero-title,
    .hero-desc,
    .hero-features,
    .hero-stats,
    .hero-badge {
        display: none !important;
    }
    
    /* Hero section mobile fix */
    .hero-section {
        padding: 20px 16px;
    }
    
    /* Login card mobile */
    .login-card {
        margin: 0;
        border-radius: 12px;
    }
    
    /* Active users carousel on mobile */
    .active-users-carousel-wrapper {
        overflow: hidden;
        width: 100%;
    }
    
    .active-users-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 18px;
        padding: 10px 15px;
        animation: scrollCarousel 22s linear infinite;
    }
    
    .active-user-card {
        flex: 0 0 auto;
    }
    
    .active-user-card-inner {
        width: 60px;
        height: 85px;
        border-radius: 14px;
        overflow: hidden;
    }
    
    .active-user-img-wrapper {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        position: relative !important;
    }
    
    .active-user-avatar {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .online-dot {
        width: 8px;
        height: 8px;
        top: 4px;
        left: 4px;
        border-width: 2px;
    }
    
    .active-user-badge {
        font-size: 6px;
        padding: 2px 5px;
        bottom: 4px;
        max-width: 54px;
        border-radius: 8px;
    }
    
    .active-user-name {
        font-size: 10px;
        margin-top: 6px;
        max-width: 62px;
    }
    
    /* News grid fix */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    
    .news-card-new {
        width: 100%;
    }
    
    /* Team section fix */
    .team-orbit-section {
        padding: 30px 16px;
        margin-top: 0;
    }
    
    .team-orbit-container {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        height: 300px;
    }
    
    .member-card {
        width: 110px;
        height: 155px;
        margin-left: -55px;
        margin-top: -77px;
    }
    
    .member-name {
        font-size: 0.85rem;
        overflow: visible;
    }
    
    .member-role {
        font-size: 0.7rem;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .portal-main {
        padding: 12px;
        gap: 16px;
        grid-template-columns: 1fr !important;
    }
    
    .hero-title,
    .hero-desc,
    .hero-features,
    .hero-stats,
    .hero-badge {
        display: none !important;
    }
    
    /* Active users - smaller on very small screens */
    .active-users-grid {
        gap: 10px;
    }
    
    .active-user-card {
        width: 60px;
        min-width: 60px;
    }
    
    .active-user-img-wrapper {
        width: 48px;
        height: 62px;
    }
    
    .active-user-name {
        font-size: 0.6rem;
        max-width: 55px;
    }
    
    .active-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-dj-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .hero-dj img {
        width: 38px;
        height: 38px;
    }
    
    .hero-dj-name {
        font-size: 0.6rem;
    }
}

/* Safe area for notch phones */
@supports (padding: max(0px)) {
    .footer-bottom {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* =========================================================
   MOBILE HAMBURGER MENU
   ========================================================= */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--light);
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1f35 0%, #0f1225 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-header img {
    height: 30px;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-menu-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.mobile-menu-links {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.mobile-menu-links a i {
    width: 20px;
    color: var(--primary);
    font-size: 1rem;
}

.mobile-menu-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-menu-links a:hover i {
    color: #fff;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.mobile-menu-footer p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.mobile-menu-footer strong {
    color: var(--success);
}

/* =========================================================
   MOBILE RESPONSIVE UPDATES
   ========================================================= */
@media (max-width: 768px) {
    /* Show hamburger menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide desktop nav */
    .portal-nav-desktop {
        display: none;
    }
    
    /* Header compact */
    .portal-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Live indicator - Full width and centered on mobile */
    .portal-live-indicator-center {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        order: 3;
        display: flex;
        justify-content: center;
    }
    
    .portal-live-indicator {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: auto;
    }
    
    .portal-live-indicator .live-text {
        display: inline;
    }
    
    .portal-logo {
        order: 1;
    }
    
    .portal-header-right {
        order: 2;
    }
    
    /* Footer mobile simplification */
    .footer-column:not(.footer-contact) {
        display: none;
    }
    
    .footer-contact {
        display: block;
    }
    
    .footer-apps {
        display: none;
    }
    
    .footer-stats {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr !important;
    }
    
    /* Team section - Fix spacing issue */
    .team-orbit-section {
        padding: 30px 16px;
        margin-top: 0;
    }
    
    .team-orbit-container {
        height: 220px;
    }
    
    /* Remove gap before team section */
    .portal-wrapper > section:not(:first-child) {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .portal-header {
        padding: 10px 12px;
    }
    
    .portal-logo img {
        height: 28px;
    }
    
    .portal-live-indicator {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .portal-lang-btn {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Footer even more compact on mobile */
    .footer-main {
        padding: 30px 16px 15px;
    }
    
    .footer-brand .footer-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social .social-btn {
        width: 34px;
        height: 34px;
    }
    
    .footer-bottom {
        padding: 12px;
    }
    
    .footer-badges {
        display: none;
    }
    
    .footer-legal {
        font-size: 0.7rem;
    }
    
    /* Team container fix */
    .team-orbit-container {
        height: 260px;
        perspective: 800px;
    }
    
    .member-card {
        width: 100px;
        height: 145px;
        margin-left: -50px;
        margin-top: -72px;
    }
    
    .member-name {
        font-size: 0.8rem;
        overflow: visible;
        white-space: nowrap;
    }
    
    .member-role {
        font-size: 0.65rem;
        overflow: visible;
    }
}

/* =========================================================
   SİTEMİZDEN GÖRÜNÜM - Screenshots Carousel (Auto-slide)
   ========================================================= */
.screenshots-section {
    padding: 60px 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(99,102,241,0.03) 50%, transparent 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 40px;
}

.screenshots-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--light), var(--gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.screenshots-header h3 i {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.screenshots-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Carousel Wrapper */
.screenshots-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.screenshots-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
    padding-bottom: 15px;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 6px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
}

.screenshots-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    padding: 30px 10px;
}

/* Dots - 3 nokta */
.screenshots-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.screenshots-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.screenshots-dots .dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 0 15px rgba(99,102,241,0.5);
}

.screenshots-dots .dot:hover {
    background: rgba(255,255,255,0.4);
}

/* Screenshot Cards - Desktop: Modern Design */
.screenshot-card {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.screenshot-card:hover {
    transform: translateY(-15px) scale(1.05);
}

.screenshot-frame {
    position: relative;
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.screenshot-card:hover .screenshot-frame {
    box-shadow: 
        0 40px 80px rgba(99, 102, 241, 0.3),
        0 0 0 2px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(99,102,241,0.6), rgba(139,92,246,0.4), rgba(236,72,153,0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.screenshot-card:hover .screenshot-frame::before {
    opacity: 1;
}

.screenshot-frame-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
}

.screenshot-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 24px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.screenshot-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #1e293b;
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(99, 102, 241, 0.5);
}

.screenshot-frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-frame-inner img {
    transform: scale(1.08);
}

.screenshot-glow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(99,102,241,0.4) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.screenshot-card:hover .screenshot-glow {
    opacity: 1;
}

.screenshot-title {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.screenshot-card:hover .screenshot-title {
    color: #a5b4fc;
}

.screenshot-title {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-light);
    text-align: center;
    font-weight: 500;
}

/* Screenshot Modal */
.screenshot-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.screenshot-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-modal {
    position: relative;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.screenshot-modal img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.screenshot-modal p {
    margin-top: 16px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.screenshot-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.screenshot-modal-close:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

/* Screenshots Responsive */
@media (max-width: 1100px) {
    .screenshot-card {
        width: 140px;
    }
    .screenshot-frame {
        width: 140px;
        height: 280px;
        border-radius: 24px;
    }
    .screenshots-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .screenshots-section {
        padding: 40px 16px;
    }
    
    /* Mobile: 3 visible items */
    .screenshot-card {
        width: 100px;
    }
    
    .screenshot-frame {
        width: 100px;
        height: 200px;
        border-radius: 18px;
        padding: 4px;
    }
    
    .screenshot-frame-inner {
        border-radius: 14px;
    }
    
    .screenshot-notch {
        width: 30px;
        height: 10px;
        top: 4px;
        border-radius: 0 0 8px 8px;
    }
    
    .screenshot-notch::before {
        width: 4px;
        height: 4px;
        top: 3px;
    }
    
    .screenshots-track {
        gap: 12px;
    }
    
    .screenshots-dots {
        margin-top: 20px;
        gap: 10px;
    }
    
    .screenshots-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .screenshot-title {
        font-size: 0.7rem;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .screenshot-card {
        width: 90px;
    }
    
    .screenshot-frame {
        width: 90px;
        height: 180px;
        border-radius: 16px;
        padding: 3px;
    }
    
    .screenshot-frame-inner {
        border-radius: 13px;
    }
    
    .screenshot-notch {
        width: 25px;
        height: 8px;
    }
    
    .screenshots-track {
        gap: 10px;
    }
    
    .screenshot-title {
        font-size: 0.65rem;
    }
}


/* Masaüstünde Aktif Üyeler - DJ altına taşındığında */
@media (min-width: 769px) {
    .active-users-section.desktop-moved {
        background: rgba(30, 41, 59, 0.6);
        backdrop-filter: blur(12px);
        border-radius: 16px;
        padding: 14px;
        border: 1px solid rgba(99, 102, 241, 0.2);
        margin-top: 16px !important;
        overflow: hidden;
    }
    
    .active-users-section.desktop-moved h4 {
        font-size: 0.8rem;
        margin-bottom: 10px;
        color: #e2e8f0;
    }
    
    .active-users-section.desktop-moved .active-users-carousel-wrapper {
        overflow: hidden;
        width: 100%;
    }
    
    .active-users-section.desktop-moved .active-users-grid {
        display: flex;
        gap: 8px;
        animation: none !important;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100% !important;
        transform: none !important;
    }
    
    .active-users-section.desktop-moved .active-user-card {
        width: auto;
        flex-shrink: 0;
    }
    
    .active-users-section.desktop-moved .active-user-card:hover {
        transform: scale(1.1);
    }
    
    .active-users-section.desktop-moved .active-user-card-inner {
        width: 44px;
        height: 44px;
        border-radius: 50% !important;
        border-width: 2px !important;
        background: transparent;
    }
    
    .active-users-section.desktop-moved .active-user-img-wrapper {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
    }
    
    .active-users-section.desktop-moved .active-user-avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 50%;
    }
    
    .active-users-section.desktop-moved .active-user-name,
    .active-users-section.desktop-moved .active-user-badge {
        display: none !important;
    }
    
    .active-users-section.desktop-moved .online-dot {
        width: 8px;
        height: 8px;
        top: 0px;
        left: 0px;
        border-width: 1.5px;
    }
}



/* ========================================
   SİTEDEKİ ODALAR SECTION
   ======================================== */
.rooms-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    position: relative;
}

.rooms-header {
    text-align: center;
    margin-bottom: 40px;
}

.rooms-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rooms-header h3 i {
    color: #6366f1;
    font-size: 1.5rem;
}

.rooms-header p {
    color: #94a3b8;
    font-size: 1rem;
}

.rooms-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.5) transparent;
}

.rooms-grid::-webkit-scrollbar {
    height: 8px;
}

.rooms-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.rooms-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 4px;
}

.rooms-grid .room-card,
.room-card {
    flex: 0 0 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
}

.room-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 100px;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.room-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.room-card:hover .room-card-bg {
    opacity: 0.6;
}

.room-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 14px;
}

.room-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.15);
    flex-shrink: 0;
    border: 2px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-info {
    flex: 1;
    min-width: 0;
}

.room-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-stats {
    flex-shrink: 0;
}

.room-online {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

.online-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.room-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.room-card:hover .room-hover-overlay {
    opacity: 1;
}

.join-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.join-text i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rooms-section {
        padding: 40px 15px;
    }
    
    .rooms-header h3 {
        font-size: 1.4rem;
    }
    
    .rooms-header p {
        font-size: 0.85rem;
    }
    
    .room-card-content {
        padding: 12px;
    }
    
    .room-icon-wrap {
        width: 48px;
        height: 48px;
    }
    
    .room-name {
        font-size: 0.9rem;
    }
}


/* Room Owner Styles */
.room-owner {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.room-owner-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.room-owner-name {
    font-size: 0.7rem;
    color: #a5b4fc;
    font-weight: 500;
}

.room-owner-name::before {
    content: "👑 ";
    font-size: 0.65rem;
}

.room-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    color: #a5b4fc;
    font-size: 1.5rem;
}

/* Room card layout adjustment for more content */
.room-card-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    padding: 16px;
    gap: 14px;
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.room-stats {
    align-self: center;
}

@media (max-width: 768px) {
    .room-owner-avatar {
        width: 18px;
        height: 18px;
    }
    
    .room-owner-name {
        font-size: 0.65rem;
    }
}

/* ========================================
   ROOMS CAROUSEL - MOBILE
   ======================================== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Mobile Carousel Wrapper */
.rooms-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.rooms-carousel {
    width: 100%;
    overflow: hidden;
}

.rooms-carousel-track {
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.room-card-mobile {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.room-card-mobile-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 20px;
    text-align: center;
    min-height: 220px;
}

.room-card-mobile-inner .room-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.room-icon-wrap-mobile {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.2);
    border: 3px solid rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
}

.room-icon-wrap-mobile .room-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-icon-wrap-mobile .room-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #a5b4fc;
}

.room-info-mobile {
    position: relative;
    z-index: 2;
}

.room-info-mobile .room-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.room-info-mobile .room-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.room-info-mobile .room-owner {
    justify-content: center;
    margin-bottom: 12px;
}

.room-info-mobile .room-owner-avatar {
    width: 24px;
    height: 24px;
}

.room-info-mobile .room-owner-name {
    font-size: 0.8rem;
}

.room-stats-mobile {
    margin-top: 10px;
}

.room-stats-mobile .room-online {
    display: inline-flex;
    background: rgba(34, 197, 94, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
}

/* Carousel Dots */
.rooms-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.rooms-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms-dot.active {
    background: #6366f1;
    width: 28px;
    border-radius: 5px;
}

/* Touch/Swipe Styles */
.rooms-carousel-track.dragging {
    transition: none;
}

/* ========================================
   NEWS MOBILE CAROUSEL
   ======================================== */
.news-mobile-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
}

.news-mobile-carousel {
    width: 100%;
    overflow: hidden;
}

.news-mobile-track {
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.news-mobile-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.news-mobile-card-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.news-mobile-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-mobile-image .news-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    font-size: 3rem;
    color: #6366f1;
}

.news-mobile-content {
    padding: 16px;
}

.news-mobile-content .news-category {
    margin-bottom: 10px;
}

.news-mobile-content .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.news-mobile-content .news-excerpt {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.news-mobile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-mobile-footer .news-date {
    font-size: 0.75rem;
    color: #64748b;
}

.news-read-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-btn-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.news-mobile-card-inner .news-new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

/* News Mobile Dots */
.news-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-dot.active {
    background: #6366f1;
    width: 28px;
    border-radius: 5px;
}

.news-mobile-track.dragging {
    transition: none;
}

/* ========================================
   SCREENSHOTS MOBILE CAROUSEL
   ======================================== */
.screenshots-mobile-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.screenshots-mobile-carousel {
    width: 100%;
    overflow: hidden;
}

.screenshots-mobile-track {
    display: flex;
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.screenshot-mobile-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.screenshot-mobile-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.screenshot-phone-frame {
    position: relative;
    width: 220px;
    max-width: 80%;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.screenshot-phone-notch {
    width: 80px;
    height: 20px;
    background: #0f172a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto 8px;
}

.screenshot-phone-screen {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.screenshot-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-mobile-title {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
    text-align: center;
}

/* Screenshots Mobile Dots */
.screenshots-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-dot.active {
    background: #6366f1;
    width: 28px;
    border-radius: 5px;
}

.screenshots-mobile-track.dragging {
    transition: none;
}

/* Hover effect on mobile */
.screenshot-mobile-inner:active .screenshot-phone-frame {
    transform: scale(0.98);
    border-color: rgba(99, 102, 241, 0.6);
}

/* ========================================
   ROOMS DESKTOP CAROUSEL
   ======================================== */
.rooms-desktop-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.rooms-desktop-track {
    display: flex;
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.rooms-desktop-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .rooms-desktop-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .rooms-desktop-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rooms-desktop-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.rooms-desktop-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms-desktop-dot.active {
    background: #6366f1;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.rooms-desktop-dot:hover {
    background: rgba(99, 102, 241, 0.6);
}

/* ========================================
   SCREENSHOTS DESKTOP CAROUSEL
   ======================================== */
.screenshots-desktop-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
}

.screenshots-desktop-track {
    display: flex;
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.screenshots-desktop-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.screenshots-desktop-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.screenshots-desktop-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshots-desktop-dot.active {
    background: #6366f1;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.screenshots-desktop-dot:hover {
    background: rgba(99, 102, 241, 0.6);
}

/* ========================================
   SEO BADGE - Login Card Köşesi
   ======================================== */
.login-card {
    position: relative;
}

.seo-badge-corner {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.7rem;
}

.seo-badge-corner:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.seo-badge-corner i {
    font-size: 0.85rem;
}

/* SEO Modal */
.seo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.seo-modal-overlay.active {
    display: flex;
}

.seo-modal {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: seoModalIn 0.3s ease;
}

@keyframes seoModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.seo-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.seo-modal-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.seo-modal h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 15px;
}

.seo-modal p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0 0 25px;
    line-height: 1.6;
}

.seo-modal p strong {
    color: #10b981;
}

.seo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.seo-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 0.85rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.seo-features span i {
    color: #10b981;
    font-size: 0.75rem;
}

.seo-close-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seo-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .seo-badge-corner {
        bottom: 8px;
        right: 8px;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .seo-badge-corner i {
        font-size: 0.75rem;
    }
    
    .seo-modal {
        padding: 30px 20px;
    }
    
    .seo-features {
        grid-template-columns: 1fr;
    }
}
