@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700;800&display=swap&subset=latin,latin-ext');

:root {
    --primary-color: #ffffff;
    --primary-hover: #d4d4d4;
    --font-color: #ffffff;
    --bg-base: #000000;
    --bg-deep: #000000;
    --bg-surface: rgba(0, 0, 0, 0.95);
    --bg-card: rgba(0, 0, 0, 0.95);
    --bg-card-solid: #000000;
    --bg-elevated: rgba(0, 0, 0, 0.98);
    --grid-line: rgba(255, 255, 255, 0.038);
    --glass-bg: rgba(0, 0, 0, 0.85);
    --glass-border: rgba(255, 255, 255, 0.07);
    --shadow-glow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --primary-color-rgba: rgba(255, 255, 255, 0.4);
    --primary-hover-rgba: rgba(212, 212, 212, 0.4);
    --primary-color-rgba-50: rgba(255, 255, 255, 0.5);
    --primary-color-rgba-10: rgba(255, 255, 255, 0.1);
    --bs-primary: #ffffff;
    --bs-primary-rgb: 255, 255, 255;
    --bs-info: #ffffff;
    --bs-info-rgb: 255, 255, 255;
    --bs-link-color: #ffffff;
    --bs-link-hover-color: #d4d4d4;
}

[data-bs-theme="dark"] {
    --bs-primary: #ffffff;
    --bs-primary-rgb: 255, 255, 255;
    --bs-info: #ffffff;
    --bs-info-rgb: 255, 255, 255;
    --bs-link-color: #ffffff;
    --bs-link-hover-color: #d4d4d4;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    background: #000000;
    background-color: var(--bg-base);
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden !important;
    max-width: 100vw;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: -2;
    pointer-events: none;
}

body::after {
    display: none;
}

.wrapper::before {
    display: none;
}

.page-content {
    margin-top: 170px;
    max-width: 100%;
    overflow-x: clip;
}

.app-topbar {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 1400px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 255, 255, 0.15) !important;
    padding: 0.4rem 1.5rem !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.app-topbar .page-container {
    max-width: 100% !important;
    width: 100% !important;
}

.app-topbar:hover {
    border-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.95), 0 0 45px rgba(255, 255, 255, 0.22) !important;
}

.public-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.5rem;
    width: 100%;
}

.public-topbar-nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.app-topbar .public-topbar-logo {
    width: auto !important;
    height: 72px !important;
    max-height: 72px !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.app-topbar .public-topbar-logo-sm {
    width: auto !important;
    height: 50px !important;
    max-height: 50px !important;
    object-fit: contain;
    display: block;
}

.app-topbar .public-topbar-logo:hover {
    transform: scale(1.05);
}

.topbar-link {
    position: relative;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 10px;
    padding: 0.5rem 0.85rem !important;
    border: none !important;
}

.topbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.topbar-link:hover::after {
    width: 60%;
}

.topbar-link:hover {
    color: #ffffff !important;
    background: transparent !important;
}

.public-topbar-nav .topbar-link {
    white-space: nowrap;
    font-size: clamp(0.8125rem, 0.72rem + 0.35vw, 0.95rem);
    flex-shrink: 0;
}

.topbar-dropdown-menu {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 14px !important;
    padding: 0.5rem !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.1) !important;
    min-width: 200px !important;
    margin-top: 10px !important;
}

.topbar-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
    font-weight: 500 !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.topbar-dropdown-menu .dropdown-item:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(4px) !important;
}

.topbar-dropdown-menu .dropdown-item i {
    color: #ffffff !important;
    transition: transform 0.2s ease !important;
}

.topbar-dropdown-menu .dropdown-item:hover i {
    transform: scale(1.1) !important;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.glass-card-body {
    padding: 2.25rem;
}

.hero-banner-container {
    position: relative;
    width: 100%;
    min-height: 480px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 255, 255, 0.15);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-card-solid);
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-banner-container:hover .hero-banner-bg {
    transform: scale(1.04);
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.88) 100%), 
                linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2rem;
    max-width: 850px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.hero-title-giant {
    font-size: clamp(2.5rem, 2.2rem + 2vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #ffffff 20%, #ffffff 70%, #a3a3a3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.75;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.status-row-container {
    display: flex;
    background: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px;
    margin-bottom: 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.status-segment {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.85rem 1.25rem;
    position: relative;
    text-align: center;
    transition: background 0.3s ease;
}

.status-segment:hover {
    background: rgba(255, 255, 255, 0.01);
}

.status-segment:not(:last-child) {
    border-right: 1px solid #1c1c1f;
}

.status-segment-value {
    font-size: clamp(2rem, 1.8rem + 1vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.status-segment-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #71717a; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-green-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    display: inline-block;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px rgba(255, 255, 255, 0.95); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

@media (max-width: 991px) {
    .status-row-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .status-segment:not(:last-child) {
        border-right: none;
    }
    .status-segment {
        border-bottom: 1px solid #1c1c1f;
        border-right: 1px solid #1c1c1f;
    }
    .status-segment:nth-child(2n) {
        border-right: none;
    }
    .status-segment:nth-child(3),
    .status-segment:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .status-row-container {
        grid-template-columns: 1fr;
    }
    .status-segment {
        border-right: none !important;
        border-bottom: 1px solid #1c1c1f !important;
    }
    .status-segment:last-child {
        border-bottom: none !important;
    }
}

.feature-grid-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.feature-grid-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.feature-grid-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(212, 212, 212, 0.5) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.feature-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}

.feature-box-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.join-us-banner {
    display: block;
    margin-bottom: 3.5rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.join-us-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.join-us-banner:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.join-us-banner:hover img {
    transform: scale(1.02);
}

.btn-gradient {
    position: relative;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    color: #ffffff !important;
    padding: 0.8rem 1.85rem !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-gradient:hover::before {
    height: 100%;
}

.btn-gradient-outline {
    position: relative;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    padding: 0.8rem 2.1rem !important;
    border-radius: 50px !important; 
    font-weight: 700 !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
    backdrop-filter: blur(12px) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-gradient-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient-outline:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
}

.btn-gradient-outline:hover::before {
    height: 100%;
}

.split-layout-container {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.split-sidebar {
    flex: 0 0 280px;
}

.split-main {
    flex: 1;
}

.vertical-menu-pill {
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vertical-menu-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.vertical-menu-pill.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.team-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease-out;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.team-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.25s ease;
    background: radial-gradient(
        220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.42) 0%,
        rgba(255, 255, 255, 0.12) 35%,
        transparent 70%
    );
}

.team-card.is-hover .team-card-glow {
    opacity: 1;
}

.team-card > :not(.team-card-glow) {
    position: relative;
    z-index: 1;
}

.team-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 255, 255, 0.12);
}

.team-avatar-container {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 0 auto 1.5rem;
}

.team-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
}

.team-avatar-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px dashed var(--team-accent-color, #ffffff);
    opacity: 0.4;
    transition: all 0.4s ease;
    animation: rotateGlow 12s linear infinite;
}

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

.team-card:hover .team-avatar {
    border-color: var(--team-accent-color, #ffffff);
    transform: scale(1.05);
}

.team-card:hover .team-avatar-glow {
    opacity: 1;
    border-style: solid;
    transform: scale(1.08);
    box-shadow: 0 0 20px var(--team-accent-color, rgba(255, 255, 255, 0.3));
}

.team-username {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.team-rank-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--team-accent-color, #ffffff);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--team-accent-color, rgba(255, 255, 255, 0.25));
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

.podium-section {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    margin-top: 1rem;
}

.podium-slot {
    flex: 0 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.podium-box {
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px 20px 12px 12px;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transition: all 0.4s ease;
}

.podium-slot.place-1 .podium-box {
    height: 180px;
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.15);
}

.podium-slot.place-2 .podium-box {
    height: 140px;
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(192, 192, 192, 0.1);
}

.podium-slot.place-3 .podium-box {
    height: 120px;
    border-color: rgba(205, 127, 50, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(205, 127, 50, 0.08);
}

.podium-avatar-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}

.podium-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.8);
}

.podium-slot.place-1 .podium-avatar {
    width: 90px;
    height: 90px;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.podium-slot.place-2 .podium-avatar {
    border-color: #c0c0c0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.25);
}

.podium-slot.place-3 .podium-avatar {
    border-color: #cd7f32;
    box-shadow: 0 0 12px rgba(205, 127, 50, 0.2);
}

.podium-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.podium-slot.place-1 .podium-badge { background: #ffd700; }
.podium-slot.place-2 .podium-badge { background: #c0c0c0; }
.podium-slot.place-3 .podium-badge { background: #cd7f32; }

.podium-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    
    max-width: 100%;
}

.podium-stat {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.podium-crown {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.4));
    animation: floatCrown 3s ease-in-out infinite;
}

@keyframes floatCrown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -4px); }
}

.leaderboard-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-row-item {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.leaderboard-row-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.005) translateX(4px);
}

.leaderboard-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.list-rank {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
}

.leaderboard-row-item:hover .list-rank {
    color: #ffffff;
}

.list-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    object-fit: cover;
}

.leaderboard-row-item:hover .list-avatar {
    border-color: rgba(255, 255, 255, 0.4);
}

.list-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.list-stat-wrap {
    text-align: right;
}

.list-stat-val {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.list-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.docs-layout-container {
    display: flex;
    gap: 2.5rem;
}

.docs-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 110px;
    align-self: flex-start;
}

.docs-content {
    flex: 1;
}

.docs-nav-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
}

.docs-nav-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
}

.docs-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
    margin-bottom: 0.5rem;
}

.docs-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(255, 255, 255, 0.4);
    padding-left: 1.25rem;
}

.docs-nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12) !important;
    border-left-color: #ffffff !important;
}

.doc-section-panel {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease;
    scroll-margin-top: 120px;
}

.doc-section-panel:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.doc-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.75rem;
}

.rule-highlight {
    background: rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid #ffffff !important;
    padding: 1.15rem;
    border-radius: 10px;
    margin-top: 1.25rem;
}

.rule-highlight strong {
    color: #ffffff !important;
    font-weight: 700;
}

.rule-highlight span {
    color: rgba(255, 255, 255, 0.85);
}

.faq-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.faq-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.35rem 1.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
}

.faq-icon-arrow {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card.open .faq-icon-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-body {
    padding: 0 1.75rem 1.5rem 1.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    border-left: 3px solid #ffffff;
    margin-left: 1.75rem;
    display: none;
}



.product-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.2);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-body {
    padding: 1.75rem;
}

.product-price {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.form-control, .form-select {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
}

.form-control:focus, .form-select:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25) !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

.nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.05) !important;
}

.nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-tabs .nav-link.active {
    color: #ffffff !important;
    background: transparent !important;
    border-bottom: 3px solid #ffffff !important;
}



.swal2-icon.swal2-success .swal2-success-ring {
    border-color: #ffffff !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    background-color: #ffffff !important;
}

.swal2-icon.swal2-warning, .swal2-icon.swal2-error, .swal2-icon.swal2-info {
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.swal2-styled.swal2-confirm.modern-swal-confirm,
.swal2-styled.swal2-confirm,
.modern-swal-confirm {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
}

.swal2-styled.swal2-confirm.modern-swal-confirm::before,
.swal2-styled.swal2-confirm::before,
.modern-swal-confirm::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: #ffffff !important;
    z-index: -1 !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swal2-styled.swal2-confirm.modern-swal-confirm:hover,
.swal2-styled.swal2-confirm:hover,
.modern-swal-confirm:hover {
    background: transparent !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: none !important;
    transform: none !important;
}

.swal2-styled.swal2-confirm.modern-swal-confirm:hover::before,
.swal2-styled.swal2-confirm:hover::before,
.modern-swal-confirm:hover::before {
    height: 100% !important;
}

.swal2-styled.swal2-cancel,
.modern-swal-cancel {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
}

.swal2-styled.swal2-cancel::before,
.modern-swal-cancel::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    z-index: -1 !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.swal2-styled.swal2-cancel:hover,
.modern-swal-cancel:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.swal2-styled.swal2-cancel:hover::before,
.modern-swal-cancel:hover::before {
    height: 100% !important;
}

.pagination .page-link {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.55rem 0.85rem;
    margin: 0 4px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.pagination .page-item.active .page-link {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.25rem, 2rem + 1vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 30%, #ffffff 70%, #d4d4d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}



.fade-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in:not(.visible) {
    opacity: 0;
    transform: translateY(16px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

@media (max-width: 991px) {
    .app-topbar {
        width: 95% !important;
        top: 10px !important;
    }
    .hero-split-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero-left, .hero-right {
        flex: 1 1 100%;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .split-layout-container {
        flex-direction: column;
    }
    .split-sidebar {
        flex: 1 1 auto;
    }
    .docs-layout-container {
        flex-direction: column;
    }
    .docs-sidebar {
        flex: 1 1 auto;
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn-gradient-outline,
    .btn-discord-glow {
        width: 100%;
        max-width: 320px;
    }
    
    .page-content {
        margin-top: 180px;
    }
}

.application-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.application-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
}

.application-card.selected {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25) !important;
}

.application-item-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.application-item-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
}

.public-login-btn,
.public-user-btn {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}


.discord-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}


@media (max-width: 991px) {
    .public-login-btn,
    .public-user-btn {
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        border-radius: 50% !important; 
    }
    .public-user-btn::after {
        display: none !important; 
    }
}

@media (max-width: 576px) {
    .app-topbar {
        padding: 0.4rem 0.8rem !important; 
        width: 96% !important;
    }
    .public-topbar-inner {
        gap: 0.5rem !important;
    }
    .topbar-link {
        padding: 0.4rem 0.5rem !important; 
        font-size: 1.05rem !important; 
    }
}


.mobile-nav-offcanvas {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
    width: 280px !important;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none !important;
}

.mobile-nav-link i {
    color: #ffffff;
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(5px);
}

.mobile-nav-link:hover i {
    transform: scale(1.1);
}


.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    padding: 0.85rem 1rem 0.85rem 2.75rem !important;
    font-size: 0.95rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.search-input:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2) !important;
    background: rgba(0, 0, 0, 0.85) !important;
}

.search-icon {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 10;
}

.search-input:focus + .search-icon,
.search-input:focus ~ .search-icon {
    color: #ffffff;
}


.streams-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.stream-player-section {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.stream-main-player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.25rem;
}

.stream-main-player-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.stream-player-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.stream-player-details {
    flex: 1;
}

.streamer-header-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.badge-live {
    background: #ffffff;
    color: #000000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1;
}

.badge-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    animation: blinkGlow 1s infinite alternate;
}

@keyframes blinkGlow {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.badge-offline {
    background: #27272a;
    color: #a1a1aa;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.streamer-main-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.stream-main-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.stream-player-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 768px) {
    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stream-player-info {
        flex-direction: column;
        gap: 1rem;
    }
    .stream-player-controls {
        align-self: flex-start;
    }
}

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

.streamer-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.streamer-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.1);
}

.streamer-card.active-play {
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2) !important;
}

.streamer-card-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-base);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.streamer-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.streamer-card:hover .streamer-card-preview img {
    transform: scale(1.05);
}

.streamer-offline-placeholder {
    width: 100%;
    height: 100%;
    background: #07070a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.2rem;
    transition: color 0.3s ease;
}

.streamer-card:hover .streamer-offline-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.card-preview-live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
}

.card-preview-live-viewers {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    line-height: 1 !important;
}

.streamer-card-body {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.streamer-card-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
    object-fit: cover;
    flex-shrink: 0;
}

.streamer-card-meta {
    flex: 1;
    min-width: 0;
}

.streamer-card-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-card-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


[data-bs-theme="light"] body {
    background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08) 0%, #f4f4f5 80%);
    background-color: #f4f4f5;
    color: #000000;
}

[data-bs-theme="light"] .app-topbar {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), 0 0 35px rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="light"] .topbar-link {
    color: rgba(9, 9, 11, 0.7) !important;
}

[data-bs-theme="light"] .topbar-link:hover {
    color: #ffffff !important;
}

[data-bs-theme="light"] .app-topbar .btn-link.text-white {
    color: #000000 !important;
}

[data-bs-theme="light"] .offcanvas-title {
    color: #000000 !important;
}

[data-bs-theme="light"] .glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="light"] .glass-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 0 35px rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] .status-row-container {
    background: #ffffff;
    border-color: #e4e4e7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="light"] .status-segment:not(:last-child) {
    border-right-color: #e4e4e7;
}

[data-bs-theme="light"] .status-segment-value {
    color: #000000;
}

[data-bs-theme="light"] .status-segment-label {
    color: #71717a;
}

[data-bs-theme="light"] .feature-box {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] .feature-box:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .feature-box-title {
    color: #000000;
}

[data-bs-theme="light"] .feature-box-desc {
    color: #52525b;
}

[data-bs-theme="light"] .feature-grid-title {
    background: linear-gradient(135deg, #000000 40%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-bs-theme="light"] .feature-grid-subtitle {
    color: #71717a;
}

[data-bs-theme="light"] .hero-title-giant {
    background: linear-gradient(135deg, #000000 20%, #ffffff 70%, #a3a3a3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-bs-theme="light"] .hero-desc {
    color: #27272a;
    text-shadow: none;
}

[data-bs-theme="light"] .hero-banner-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%), 
                linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(255, 255, 255, 0.4) 100%);
}

[data-bs-theme="light"] .doc-section-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="light"] .doc-section-panel:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

[data-bs-theme="light"] .doc-section-title {
    color: #000000;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .doc-section-panel div[style*="color: rgba(255, 255, 255, 0.85)"] {
    color: #27272a !important;
}

[data-bs-theme="light"] .docs-nav-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .docs-nav-link {
    color: #52525b;
}

[data-bs-theme="light"] .docs-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="light"] .docs-nav-link.active {
    color: #ffffff;
    background: #ffffff !important;
}

[data-bs-theme="light"] .faq-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .faq-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

[data-bs-theme="light"] .faq-header {
    color: #000000;
}

[data-bs-theme="light"] .faq-icon-arrow {
    color: rgba(0, 0, 0, 0.3);
}

[data-bs-theme="light"] .faq-body {
    color: #3f3f46;
}

[data-bs-theme="light"] .section-title {
    background: linear-gradient(135deg, #000000 30%, #ffffff 70%, #d4d4d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-bs-theme="light"] .section-subtitle {
    color: #71717a;
}

[data-bs-theme="light"] .btn-gradient-outline {
    border-color: rgba(9, 9, 11, 0.2) !important;
    color: #000000 !important;
}

[data-bs-theme="light"] .btn-gradient-outline:hover {
    color: #ffffff !important;
    border-color: #000000 !important;
    background: #000000 !important;
}

[data-bs-theme="light"] .mobile-nav-offcanvas {
    background: #ffffff !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-bs-theme="light"] .mobile-nav-link {
    color: #52525b !important;
}

[data-bs-theme="light"] .mobile-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="light"] #themeToggleBtn {
    border-color: rgba(0,0,0,0.1) !important;
    background: rgba(0,0,0,0.05) !important;
    color: #000000 !important;
}

[data-bs-theme="light"] .search-input {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
}

[data-bs-theme="light"] .search-input:focus {
    background: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="light"] .search-icon {
    color: rgba(0, 0, 0, 0.4);
}

[data-bs-theme="light"] .stream-player-section {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="light"] .streamer-offline-placeholder {
    background: #f4f4f5;
    color: rgba(0, 0, 0, 0.15);
}


.search-filter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.filter-btn {
    position: relative;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
    text-decoration: none !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.filter-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15) !important;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    height: 100%;
}

[data-bs-theme="light"] .filter-btn {
    color: #52525b !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

[data-bs-theme="light"] .filter-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

[data-bs-theme="light"] .filter-btn.active {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}


.streamer-card.offline {
    padding: 2.25rem 1.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 220px;
}

.streamer-card.offline .streamer-card-preview {
    display: none !important;
}

.streamer-card.offline .streamer-card-body {
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0.85rem !important;
    width: 100% !important;
}

.streamer-card.offline .streamer-card-logo {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(255, 255, 255, 0.05) !important;
    filter: grayscale(100%) !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
    margin-bottom: 0.25rem;
}

.streamer-card.offline:hover .streamer-card-logo {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: scale(1.05);
}

.streamer-card.offline .streamer-card-name {
    font-size: 1.12rem !important;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0 !important;
}

.streamer-card.offline .streamer-card-title {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 !important;
    line-height: 1.4;
}

.offline-status-tag {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: 6px !important;
    display: inline-block !important;
    margin-top: 0.25rem;
}

.streamer-card.offline:hover .offline-status-tag {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="light"] .streamer-card.offline .streamer-card-logo {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

[data-bs-theme="light"] .streamer-card.offline .streamer-card-name {
    color: #000000 !important;
}

[data-bs-theme="light"] .streamer-card.offline .streamer-card-title {
    color: #71717a !important;
}

[data-bs-theme="light"] .offline-status-tag {
    color: #71717a !important;
    background: rgba(0, 0, 0, 0.04) !important;
}




.card-preview-live-viewers i {
    font-size: 0.85rem !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
}


.product-popup-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-base);
}

.product-popup-image-wrap img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-popup-image-wrap:hover img {
    transform: scale(1.03);
}

.product-popup-price {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.35rem;
    display: inline-block;
}

.product-popup-alert {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid #ffffff;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    padding: 1.15rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.product-popup-alert i {
    color: #ffffff;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

[data-bs-theme="light"] .product-popup-image-wrap {
    border-color: rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .product-popup-price {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

[data-bs-theme="light"] .product-popup-alert {
    background: rgba(255, 255, 255, 0.04);
    color: #3f3f46;
}


.modern-swal-popup {
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: var(--bg-elevated) !important;
    backdrop-filter: blur(32px) !important;
    -webkit-backdrop-filter: blur(32px) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95) !important;
    max-width: 95vw !important;
}

.modern-swal-title {
    color: #ffffff !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.85rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 1rem !important;
    margin-top: 1rem !important;
}

.modern-swal-html {
    padding: 1.5rem 0.5rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.modern-swal-confirm {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 0.75rem 2rem !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
    text-transform: uppercase;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.modern-swal-confirm::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: #ffffff !important;
    z-index: -1 !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.modern-swal-confirm:hover {
    background: transparent !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.modern-swal-confirm:hover::before {
    height: 100% !important;
}

.modern-swal-cancel {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 0.75rem 2rem !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    transition: color 0.35s ease, border-color 0.35s ease !important;
    text-transform: uppercase;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.modern-swal-cancel::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    z-index: -1 !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.modern-swal-cancel:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.modern-swal-cancel:hover::before {
    height: 100% !important;
}

.swal2-close {
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: sans-serif !important;
    font-size: 2.2rem !important;
    transition: color 0.2s ease !important;
    outline: none !important;
    border: none !important;
    margin-top: 5px !important;
    margin-right: 5px !important;
}

.swal2-close:hover {
    color: #ffffff !important;
}

[data-bs-theme="light"] .modern-swal-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.99) 100%) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08), 0 0 50px rgba(255, 255, 255, 0.08) !important;
}

[data-bs-theme="light"] .modern-swal-title {
    color: #000000 !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

[data-bs-theme="light"] .modern-swal-html {
    color: #27272a !important;
}

[data-bs-theme="light"] .modern-swal-cancel {
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #52525b !important;
}

[data-bs-theme="light"] .modern-swal-cancel:hover {
    background: rgba(0, 0, 0, 0.03) !important;
    color: #000000 !important;
}

[data-bs-theme="light"] .swal2-close {
    color: rgba(0, 0, 0, 0.4) !important;
}


.pwa-install-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: calc(100% - 48px);
    max-width: 420px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 22px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.98) 100%) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 255, 255, 0.25) !important;
    overflow: hidden;
}

.pwa-install-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.pwa-popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-right: 24px;
}

.pwa-icon-wrap {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.pwa-icon-wrap img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.pwa-info-wrap {
    flex: 1;
}

.pwa-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pwa-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin: 4px 0 0 0;
    line-height: 1.2;
}

.pwa-close-btn {
    position: absolute;
    top: -4px;
    right: -4px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pwa-close-btn:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

.pwa-desc {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 16px 0 20px 0;
}

.pwa-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.pwa-btn-later {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pwa-btn-later:hover {
    color: #ffffff;
}

.pwa-btn-install {
    position: relative;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: none !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.pwa-btn-install::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pwa-btn-install:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
}
.pwa-btn-install:hover::before {
    height: 100%;
}




[data-bs-theme="light"] .pwa-install-popup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 35px rgba(255, 255, 255, 0.08);
}

[data-bs-theme="light"] .pwa-icon-wrap {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-bs-theme="light"] .pwa-title {
    color: #0f172a;
}

[data-bs-theme="light"] .pwa-subtitle {
    color: #64748b;
}

[data-bs-theme="light"] .pwa-close-btn {
    color: rgba(0, 0, 0, 0.35);
}

[data-bs-theme="light"] .pwa-desc {
    color: #334155;
}

[data-bs-theme="light"] .pwa-btn-later {
    color: #64748b;
}

[data-bs-theme="light"] .pwa-btn-later:hover {
    color: #0f172a;
}


@media (max-width: 576px) {
    .pwa-install-popup {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: none;
        padding: 18px;
    }
}




.pwa-install-popup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.35) 100%);
    box-shadow: none;
}



.pwa-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    background: linear-gradient(135deg, #ffffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}















.mobile-nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-card:hover,
.mobile-nav-card.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.05), inset 0 0 10px rgba(255, 255, 255, 0.03);
}

.mobile-nav-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.mobile-nav-card:hover .mobile-nav-icon-box,
.mobile-nav-card.active .mobile-nav-icon-box {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: none;
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

.mobile-nav-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
}

.mobile-nav-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
    line-height: 1.2;
}

.mobile-nav-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mobile-nav-card:hover .mobile-nav-arrow,
.mobile-nav-card.active .mobile-nav-arrow {
    color: #ffffff;
    transform: translateX(3px);
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none !important;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-action-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-action-btn:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
}

.mobile-action-btn:hover::before {
    height: 100%;
}


.btn-discord-glow {
    position: relative !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    border-radius: 50px !important;
    padding: 0.8rem 2.1rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-discord-glow::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-discord-glow:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
}

.btn-discord-glow:hover::before {
    height: 100%;
}


.public-login-btn.btn-discord-glow {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.85rem !important;
    height: 38px !important;
}

@media (max-width: 991px) {
    .public-login-btn.btn-discord-glow {
        padding: 0 !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
    }
}

.mobile-nav-footer .btn-discord-glow {
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
}


.dropdown-menu[aria-labelledby="userDropdown"] {
    background: rgba(0, 0, 0, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.1) !important;
    padding: 0.6rem !important;
    min-width: 200px !important;
    margin-top: 12px !important;
}

.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    padding: 0.7rem 1.1rem !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
}

.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item i {
    font-size: 1.15rem !important;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
    padding-left: 1.35rem !important;
}

.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-item:hover i {
    transform: scale(1.1);
    color: #ffffff !important;
}

.dropdown-menu[aria-labelledby="userDropdown"] .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin: 0.5rem 0.5rem !important;
}


.public-profile-trigger {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    color: #ffffff !important;
    font-weight: 600;
    transition: opacity 0.2s ease;
    box-shadow: none !important;
}

.public-profile-trigger:hover {
    opacity: 0.85;
}

.public-profile-trigger::after {
    display: none !important; 
}

.profile-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.public-profile-trigger:hover .profile-avatar {
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}

.profile-name {
    font-size: 0.95rem;
    max-width: 120px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.profile-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.public-profile-trigger[aria-expanded="true"] .profile-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}


.footer-socials {
    display: flex;
    align-items: center;
}

.social-link {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 1.45rem !important;
    text-decoration: none !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.social-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link i,
.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.35s ease, fill 0.35s ease;
}

.social-link,
.social-link.yt,
.social-link.ig,
.social-link.tt,
.social-link.dc {
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.social-link::before,
.social-link.yt::before,
.social-link.ig::before,
.social-link.tt::before,
.social-link.dc::before {
    background: #ffffff;
}

.social-link:hover,
.social-link.yt:hover,
.social-link.ig:hover,
.social-link.tt:hover,
.social-link.dc:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
}

.social-link:hover::before {
    height: 100%;
}

.social-link:hover i {
    transform: scale(1.08);
    color: #000000 !important;
}

.social-link:hover svg {
    transform: scale(1.08);
    fill: #000000 !important;
    color: #000000 !important;
}

.social-link.dc:focus,
.social-link.dc:active {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5) !important;
}

.social-link svg {
    transition: transform 0.3s ease;
}










* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (max-width: 1280px) and (min-width: 992px) {
    .app-topbar .public-topbar-logo {
        height: 54px !important;
        max-height: 54px !important;
    }
    .topbar-link {
        padding: 0.4rem 0.4rem !important;
        font-size: 0.82rem !important;
    }
    .public-topbar-inner {
        gap: 0.25rem !important;
    }
}

/* Boron tema beyaz offset gölgesini kaldır */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
[class*="btn-outline-"],
[class*="btn-soft-"],
.alert {
    box-shadow: none !important;
}

/* ── Anasayfa redesign ── */
.home-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-stat-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.home-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.home-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.status-green-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulseGlow 2s ease-in-out infinite;
}

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

.home-hero,
.home-join-us {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 2rem;
}

.home-hero {
    min-height: 420px;
}

.home-join-us {
    min-height: 340px;
}

.home-hero-media,
.home-join-us-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.home-hero:hover .home-hero-media,
.home-join-us:hover .home-join-us-media {
    transform: scale(1.08);
}

.home-hero-shade,
.home-join-us-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    padding: 3.5rem 3rem;
    max-width: 680px;
}

.home-join-us-inner {
    position: relative;
    z-index: 2;
    padding: 2.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.home-hero-tag,
.home-join-us-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
}

.home-hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-join-us-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: #fff;
}

.home-hero-text,
.home-join-us-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

.home-hero-actions,
.home-join-us-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-join-us-stats {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-shrink: 0;
}

.home-join-stat {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 160px;
    text-align: center;
}

.home-join-stat strong {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.home-join-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.home-features-head {
    text-align: center;
    margin: 3rem 0 2rem;
}

.home-features-head h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.home-features-head p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-feature-card {
    background: linear-gradient(160deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 2rem 1.75rem;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.home-feature-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
}

.home-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: #ffffff;
}

.home-feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.home-feature-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-join-us-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
    .home-join-us-stats {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .home-join-stat {
        flex: 1;
        min-width: 120px;
    }
    .home-features-grid {
        grid-template-columns: 1fr;
    }
    .home-hero-inner {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .home-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .home-stat-card {
        padding: 1rem;
    }
    .home-stat-value {
        font-size: 1.35rem;
    }
    .home-hero {
        min-height: 360px;
    }
    .home-hero-actions,
    .home-join-us-actions {
        flex-direction: column;
    }
    .home-hero-actions .btn,
    .home-join-us-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Monochrome theme — bootstrap & utility overrides */
.text-primary,
.text-info {
    color: #ffffff !important;
}

.bg-primary,
.badge.bg-primary {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.spinner-border.text-primary {
    color: #ffffff !important;
}

.text-success {
    color: #ffffff !important;
}

.btn-primary,
.btn-soft-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
[class*="btn-outline-"]:not(.btn-close),
[class*="btn-soft-"]:not(.btn-close),
.filter-btn {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
}

.btn-primary::before,
.btn-soft-primary::before,
.btn-secondary::before,
.btn-success::before,
.btn-danger::before,
.btn-warning::before,
.btn-info::before,
.btn-outline-primary::before,
.btn-outline-secondary::before,
.btn-outline-success::before,
.btn-outline-danger::before,
.btn-outline-warning::before,
.btn-outline-info::before,
[class*="btn-outline-"]:not(.btn-close)::before,
[class*="btn-soft-"]:not(.btn-close)::before,
.filter-btn::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: #ffffff !important;
    z-index: -1 !important;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-primary:hover,
.btn-soft-primary:hover,
.btn-secondary:hover,
.btn-success:hover,
.btn-danger:hover,
.btn-warning:hover,
.btn-info:hover,
.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-success:hover,
.btn-outline-danger:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
[class*="btn-outline-"]:not(.btn-close):hover,
[class*="btn-soft-"]:not(.btn-close):hover,
.filter-btn:hover,
.filter-btn.active {
    color: #000000 !important;
    border-color: #ffffff !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-primary:hover::before,
.btn-soft-primary:hover::before,
.btn-secondary:hover::before,
.btn-success:hover::before,
.btn-danger:hover::before,
.btn-warning:hover::before,
.btn-info:hover::before,
.btn-outline-primary:hover::before,
.btn-outline-secondary:hover::before,
.btn-outline-success:hover::before,
.btn-outline-danger:hover::before,
.btn-outline-warning:hover::before,
.btn-outline-info:hover::before,
[class*="btn-outline-"]:not(.btn-close):hover::before,
[class*="btn-soft-"]:not(.btn-close):hover::before,
.filter-btn:hover::before,
.filter-btn.active::before {
    height: 100% !important;
}

.btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
}

.alert-info {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
}

.pagination .page-item.active .page-link {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

.filter-btn.active,
.vertical-menu-pill.active {
    border-color: rgba(255, 255, 255, 0.55) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.topbar-link.active,
.topbar-link:hover {
    color: #ffffff !important;
}

.team-card {
    --team-accent-color: #ffffff !important;
}

.team-card-glow {
    background: radial-gradient(
        220px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.1) 35%,
        transparent 70%
    ) !important;
}

.team-rank-badge {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.team-avatar-glow {
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.team-card:hover .team-avatar {
    border-color: #ffffff !important;
}

.team-card:hover .team-avatar-glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25) !important;
}

.side-nav-link .menu-icon,
.side-nav-link i {
    color: #ffffff !important;
}

.admin-sidebar-logo-img {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.25)) !important;
}

/* Ekip Sosyal Medya İkon Tasarımları */
.team-social-links {
    margin-top: 1.25rem !important;
    display: flex !important;
    justify-content: center !important;
    gap: 0.85rem !important;
}

.team-social-link {
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.team-social-link::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: #ffffff !important;
    z-index: -1 !important;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.team-social-link i,
.team-social-link svg {
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.3s ease, color 0.35s ease, fill 0.35s ease !important;
}

.team-social-link i {
    font-size: 1.35rem !important;
    line-height: 1 !important;
}

.team-social-link svg {
    width: 22px !important;
    height: 22px !important;
    fill: currentColor !important;
}

.team-social-link:hover {
    color: #000000 !important;
    border-color: #ffffff !important;
}

.team-social-link:hover::before {
    height: 100% !important;
}

.team-social-link:hover i {
    transform: scale(1.08) !important;
    color: #000000 !important;
}

.team-social-link:hover svg {
    transform: scale(1.08) !important;
    fill: #000000 !important;
    color: #000000 !important;
}


