:root {
    --primary: #ffe319;
    --primary-dark: #b53b3b;
    --secondary: #000000;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #835926;
    --darker: #020617;
    --light: #ffffff;
    --gray: #575757;
    --gray-light: #94a3b8;
    --border: rgb(0 255 43 / 0%);
    --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; }

.floating-avatars-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
body {background:#5c5c5c !important;
 color:#333;}
.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);
}

@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); }
}

.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); }
}

.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); }
}

.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; }
}

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

.profile-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:9999;
}
.profile-modal-overlay.active{
  opacity:1;
  visibility:visible;
}

.profile-modal{
  width:92%;
  max-width:380px;
  background:#1a1a1a;
  border-radius:26px;
  padding:30px 20px 28px;
  text-align:center;
  color:#fff;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
  transform:scale(.9);
  transition:.25s;
  border-bottom: 3px solid #73672b;
}
.profile-modal-overlay.active .profile-modal{
  transform:scale(1);
}

.profile-close{
  position:absolute;
  top:12px;
  right:15px;
  background:#ffffff20;
  border:none;
  color:#fff;
  font-size:20px;
  width:32px;
  height:32px;
  border-radius:50%;
  cursor:pointer;
}

.profile-avatar{
  position:relative;
  margin-bottom:12px;
}
.profile-avatar img{
  width:120px;
  height:120px;
  border-radius:50%;
  border:5px solid #8d6817;
  object-fit:cover;
}

.online-badge{
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
  background:#10b981;
  padding:5px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

.profile-name{
  font-size:22px;
  margin:12px 0 6px;
}

.rank-badge{
  display:inline-block;
  background:linear-gradient(45deg,#ff7a00,#ffb347);
  padding:6px 16px;
  border-radius:20px;
  font-weight:600;
  margin-bottom:16px;
}

.profile-info{
  display:flex;
  justify-content:space-between;
  background:#8d6817;
  padding:10px 14px;
  border-radius:14px;
  font-size:13px;
  margin-bottom:14px;
}

.profile-desc{
  font-size:13px;
  color:#cbd5e1;
}
.karaca-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 440px) 1fr;
    gap: 60px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 80px 20px;
    align-items: start;
}

/* Background Glow for Main Area */
.karaca-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.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);
}

.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); }
}

.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-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;
    pointer-events: none;
}

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

.member-modal {
    background: linear-gradient(135deg, #ff0000 0%, #000000 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;
}

.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, #a3801f, #b99510);
}

.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);
}

@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;
}


.member-card-front {
    position: absolute;
    /* width: 80%; */ /* Senin istediÃ„Å¸in geniÃ…Å¸lik */
    left: 20%;  /* GeniÃ…Å¸lik %60 olduÃ„Å¸u iÃƒÂ§in (100-60)/2 = 20 ile tam ortalÃ„Â±yoruz */
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    /* DiÃ„Å¸er box-shadow vb. kodlarÃ„Â±n... */
}

.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(135deg, #eb3030 0%, #000000 100%);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
}

.member-avatar-wrap {
    position: relative;
    margin-bottom: 8px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    object-fit: cover;
    border: 2px solid rgb(255 255 255);
    transition: transform 0.6s ease;
}

.member-card:hover .member-avatar {
    transform: rotateY(360deg) scale(1.05);
}

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

.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-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--light);
    text-align: center;
    overflow: visible;
    width: 100%;
    border-radius: 50px;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.member-role {
    font-size: 0.7rem;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

.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: #ffffff;
    top: -10px;
    left: -10px;
}

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

.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-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; }

.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);
}

.team-orbit-container:hover .team-orbit-ring {
    animation-play-state: paused !important;
}

.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);
}

@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;
    }
}

.karaca-login-section { 
    position: relative;
    overflow: hidden;
}

.site-owners-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 14px;
    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;
}

.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;
}

.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;
}

.single-owner .site-owners-container {
    gap: 0;
}

.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;
}

.single-owner .site-owners-container::after {
    display: none;
}

.single-owner .site-owner-card::before {
    top: -22px;
    height: 22px;
}

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

.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: 150px;
    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;
    min-height: 120px;
}

.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);
}

.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;
}

@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-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;
}

.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;
}

.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;
}

@keyframes movingHeadLeft {
    0%, 100% { transform: rotate(-25deg); }
    20% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    60% { transform: rotate(20deg); }
    80% { transform: rotate(-15deg); }
}

@keyframes movingHeadRight {
    0%, 100% { transform: rotate(25deg); }
    20% { transform: rotate(-10deg); }
    40% { transform: rotate(5deg); }
    60% { transform: rotate(-20deg); }
    80% { transform: rotate(15deg); }
}

@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);
    }
}

@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);
    }
}

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

.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-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(26, 26, 26, 0.85);
    backdrop-filter: blur(25px);
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(150, 5, 5, 0.1);
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(150, 5, 5, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.login-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    border-radius: 50%;
}

.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: #ffffff;
    font-size: 0.9rem;
}

.login-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding: 5px;
    border-radius: var(--radius-sm);
}

.login-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #f1f7ff;
    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, #ff0000 0%, #000000 100%);
    color: white;
    box-shadow: inset 0 0 36px -7px #000;
    border-left: 2px solid #000000;
}

.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: #000000;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 46px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #000000;
    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: #fff;color: #000;}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff0000 0%, #000000 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #ffffff;
    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;
    box-shadow: inset 0 0 36px -7px #000;
    border-bottom: 4px solid #000000;
}

.btn-register {
    width: auto;              
    padding: 12px 28px;       
    background: linear-gradient(135deg, #00ff2b 0%, #000000 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font);
    font-size: 0.95rem;       
    font-weight: 600;
    cursor: pointer;
    display: flex;
    
    justify-content: center;
    gap: 8px;
    margin: 12px auto;        
    transition: all 0.2s;
    box-shadow: inset 0 0 36px -7px #000;
    
    
    border-bottom: 2px solid #000;
}

.recovery-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #ffffff;
    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 {
    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;
}

.login-user {
    display: none;
}

.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: 80px;
    height: 80px;
    margin: 0 auto 8px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    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);
    }
}

.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);
}

.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: 7px;
    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;
}

.owner-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
    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;
}

.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); }
}

.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;
}

.active-users-section .members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.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;
}

.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);
}

.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);
}

.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);
    }
}

.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;
}

.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;
}

.active-user-card.hidden {
    display: flex;
}

.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-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;
}

.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;
}

.karaca-memow-section {
    order: 2;
    padding: 20px 0;
    min-width: 0; /* Prevents child content from pushing grid width */
}

.memow-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;
}

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

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

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

.memow-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; }

.memow-online-section {
    margin-top: 30px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    border-left: 5px solid #960505;
}

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

.memow-online-section h4 i {
    color: #960505;
}

.memow-online-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

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

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

.memow-online .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;
}

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

.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);
}

.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-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);
}

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

.karaca-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;
}

.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;
}

.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;
}

.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;
}

.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); }

.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-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 {
    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);
}

.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;
}

.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);
}

@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;
    }
    
    
    .footer-column:not(.footer-contact):not(.footer-brand) {
        display: none;
    }
    
    .footer-column h4 {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    
    .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;
    }
}

@media (max-width: 768px) {
    
    .karaca-page,
    .karaca-main,
    .karaca-section,
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    
    .karaca-main {
        grid-template-columns: 1fr !important;
        padding: 85px 35px;
        gap: 20px;
    }
    
    
    .memow-title,
    .memow-desc,
    .memow-features,
    .memow-stats,
    .memow-badge {
        display: none !important;
    }
    
    
    .memow-section {
        padding: 20px 16px;
    }
    
    
    .login-card {
        margin: 100px 0px;
        border-radius: 12px;
    }
    
    
    .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 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
    }
    
    .news-card-new {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .karaca-main {
        padding: 12px;
        gap: 16px;
        grid-template-columns: 1fr !important;
        top: -63px;
    }
    
    .memow-title,
    .memow-desc,
    .memow-features,
    .memow-stats,
    .memow-badge {
        display: none !important;
    }
    
    
    .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);
    }
    
    .memow-online-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .memow-online img {
        width: 58px;
        height: 58px;
    }
    
    .memow-online-name {
        font-size: 0.6rem;
    }
}

@supports (padding: max(0px)) {
    .footer-bottom {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

.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;
    
    background: #000000;
    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);
}

@media (max-width: 768px) {
    
    .mobile-menu-btn {
        display: flex;
    }
    
    
    .karaca-nav-desktop {
        display: none;
    }
    
    
    .karaca-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    
    .karaca-live-indicator-center {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        order: 3;
        display: flex;
        justify-content: center;
    }
    
    .karaca-live-indicator {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: auto;
    }
    
    .karaca-live-indicator .live-text {
        display: inline;
    }
    
    .karaca-logo {
        order: 1;
    }
    
    .karaca-header-right {
        order: 2;
    }
    
    
    .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;
    }
}

@media (max-width: 480px) {
    .karaca-header {
        padding: 10px 12px;
    }
    
    .karaca-logo img {
        height: 28px;
    }
    
    .karaca-live-indicator {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .karaca-lang-btn {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    
    .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;
    }
}

.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;
}

.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;
}

.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-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-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);
}

@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;
    }
    
    
    .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;
    }
}

@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;
    }
}

.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;
}

@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 {
    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-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;
    }
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

.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;
}

.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;
}

.rooms-carousel-track.dragging {
    transition: none;
}

.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 {
    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-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 {
    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;
}

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

.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 {
    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);
}

.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-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;
    }
}

.site-header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background: #1a1a1a;
    backdrop-filter:blur(12px);
    border-bottom: 4px solid #d43737;
    background-image: url(/sus1.gif);
}

.navbar{
    max-width:1300px;
    margin:auto;
    height:72px;
    padding:0 25px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.left-area{
    display:flex;
    align-items:center;
    gap:40px; 
}

.logo img{
    height:44px;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:28px;
}

.nav-menu a{
    color:#ddd;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.25s;
    position:relative;
}

.nav-menu a:hover{
    color:#fff;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background: #d4af37;
    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.hamburger{
    display:none;
    font-size:24px;
    color:#fff;
    cursor:pointer;
}

.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    
    
    transition: .4s;
    padding: 25px;
}

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

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

.mobile-top img{
    height:40px;
}

.close-btn{
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

.mobile-menu ul{
    list-style:none;
    margin-top:45px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

@media(max-width:900px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }
}

.memow-features{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:40px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    background: #1a1a1a;
    padding:14px 22px;
    border-radius:14px;
    box-shadow: 0 0 15px 0px #ff0000;
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size:15px;
    font-weight:500;
    transition: .25s ease;
    cursor:pointer;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
    border-radius: var(--radius-sm);
    color: #ffffff;
}

@media(max-width:768px){
    .memow-features{
        gap:10px;
    }

    .feature-item{
        width:100%;
        justify-content:center;
    }
}

@media (max-width: 480px){
.dual-owner .site-owners-container::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #00000000 !important;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
    z-index: 20;
}

.site-owner-card::after {
    content: '';
    position: absolute;
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}
.site-owners-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    padding-top: 30px;
    top: -95px;
}

 
    
   .moving-head-left, .moving-head-right { position: absolute; top: -113px; 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; }
  .site-owners-section { background: #00000000; border: none; border-radius: 0; padding: 0; margin-top: 0; margin-bottom: 8px; box-shadow: none; position: relative; overflow: visible; }
    

    
    
	.site-owner-card::before { content: ''; position: absolute; top: -28px; 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); }

}
