/* Custom CSS for Vellora - Premium Dark Purple/Blue Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

:root {
    --bg-dark: #070614;
    --bg-darker: #04030a;
    --bg-card: rgba(15, 12, 38, 0.4);
    --bg-card-hover: rgba(25, 20, 60, 0.6);
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.4);
    --accent: #f43f5e;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 92, 246, 0.3);
    --rgb-gradient: linear-gradient(45deg, #ff007f, #7f00ff, #00f0ff, #ff007f);
    --cosmic-gradient: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    --neon-blue: #00f3ff;
    --neon-purple: #b927fc;
    --neon-pink: #ff007f;
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'Fira Code', monospace;
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(244, 63, 94, 0.08) 0px, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(15, 12, 38, 0.9) 0px, transparent 80%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(4, 3, 10, 0.75);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.server-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    object-fit: cover;
}

.server-info {
    display: flex;
    flex-direction: column;
}

.server-name {
    font-size: 1.0rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #b8a2e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.server-status {
    font-size: 0.68rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 5px;
    height: 5px;
    background-color: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 70%;
}

.nav-right {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
}

.profile-trigger:hover {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.15);
}

.profile-trigger img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-trigger span {
    font-size: 0.82rem;
    font-weight: 500;
}

.profile-trigger i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    width: 180px;
    background: rgba(8, 7, 20, 0.95);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 3px;
    box-shadow: var(--shadow-premium);
    z-index: 1001;
}

.dropdown-menu.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.82rem;
}

.dropdown-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 14px;
}

.dropdown-item.logout {
    color: var(--accent);
}

.dropdown-item.logout:hover {
    background: rgba(244, 63, 94, 0.08);
}

/* Glassmorphism Containers */
.glass-container {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-premium);
}

.glass-container:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

/* Main Layout Container */
.container {
    max-width: 1200px;
    margin: 90px auto 40px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 20px 60px 20px;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 30px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.hero-title-container {
    margin-bottom: 12px;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 10%, var(--primary) 40%, var(--secondary) 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
    z-index: 1;
    position: relative;
}

.hero-typing {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
    font-weight: 600;
    min-height: 30px;
    border-right: 2px solid var(--secondary);
    padding-right: 6px;
    white-space: nowrap;
    animation: blink 0.75s step-end infinite;
    margin-top: 5px;
    z-index: 1;
    position: relative;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 15px auto 25px auto;
    z-index: 1;
    position: relative;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-btn.primary-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hero-btn.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    filter: brightness(1.1);
}

.hero-btn.secondary-cta {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn.secondary-cta:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
}

.hero-stats {
    display: flex;
    gap: 25px;
    background: rgba(4, 3, 10, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
}

.stat-badge i {
    font-size: 0.9rem;
}

.stat-badge.members-stat i { color: var(--secondary); }
.stat-badge.economy-stat i { color: #fbbf24; }
.stat-badge.active-stat i { color: var(--accent); }

/* Ads Section */
.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-left: 12px;
    padding-left: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.section-title::before {
    display: none;
}

.section-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: -5px;
    margin-bottom: 30px;
    text-align: center;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ad-card {
    height: 155px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.ad-card.dashed-border {
    border: 1.5px dashed rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.01);
}

.ad-card.hidden {
    display: none;
}

.ad-banner {
    width: 100%;
    height: 46%;
    object-fit: cover;
    filter: brightness(0.6);
}

.ad-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    object-fit: cover;
}

.ad-content {
    height: 54%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 4px;
}

.ad-badge {
    font-size: 0.65rem;
    padding: 1px 6px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid var(--secondary);
    color: var(--neon-blue);
    border-radius: 50px;
}

.ad-info-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    z-index: 10;
    cursor: pointer;
}

.ad-info-btn:hover {
    background: var(--primary);
    color: white;
}

.ad-tooltip {
    position: absolute;
    top: 32px;
    right: 8px;
    width: 180px;
    background: rgba(4, 3, 10, 0.95);
    border: 1px solid var(--primary);
    padding: 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: none;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.ad-info-btn:hover + .ad-tooltip {
    display: block;
    animation: fadeIn 0.2s ease forwards;
}

/* Person Custom Cards */
.people-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.person-card {
    height: 230px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.person-card:hover {
    transform: translateY(-5px);
}

/* RGB Glow Effect on Hover */
.person-card::after {
    content: '';
    position: absolute;
    top: -1.5px; left: -1.5px; right: -1.5px; bottom: -1.5px;
    border-radius: 12px;
    background: var(--rgb-gradient);
    background-size: 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.person-card:hover::after {
    opacity: 1;
    animation: rgbGlow 8s linear infinite;
}

.person-banner {
    width: 100%;
    height: 80px;
    object-fit: cover;
    filter: brightness(0.7);
}

.person-pp {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2.5px solid var(--bg-dark);
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    box-shadow: var(--shadow-premium);
}

.person-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--primary);
    color: var(--text-main);
    z-index: 5;
    text-transform: uppercase;
}

.person-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    flex-grow: 1;
}

.person-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.profile-btn {
    width: 85%;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    margin-bottom: 10px;
}

.person-card:hover .profile-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

/* Top 5 Rich Cards Section */
.rich-row {
    display: flex;
    justify-content: center;
    align-items: center; /* Changed to center for a straight, uniform row */
    gap: 12px;
    min-height: auto;
    padding-top: 20px;
}

.rich-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 180px;
}

.podium-1 { order: 3; }
.podium-2 { order: 2; }
.podium-3 { order: 4; }
.podium-4 { order: 1; }
.podium-5 { order: 5; }

.rich-card {
    width: 100%;
    height: 250px !important; /* Force all cards to have the exact same height */
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 12px;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.rich-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.18);
}

/* Height Variations for Podium Effect - Set to a uniform 250px for straight layout */
.podium-1 .rich-card { border-color: rgba(245, 158, 11, 0.4); background: rgba(245, 158, 11, 0.02); }
.podium-2 .rich-card { border-color: rgba(209, 213, 219, 0.3); }
.podium-3 .rich-card { border-color: rgba(180, 83, 9, 0.3); }
.podium-4 .rich-card { }
.podium-5 .rich-card { }

.rich-rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.72rem;
    color: #fff;
    z-index: 5;
}

.podium-1 .rich-rank-badge { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
.podium-2 .rich-rank-badge { background: #9ca3af; }
.podium-3 .rich-rank-badge { background: #b45309; }
.podium-4 .rich-rank-badge { background: #4b5563; }
.podium-5 .rich-rank-badge { background: #4b5563; }

.rich-banner {
    width: 100%;
    height: 75px;
    object-fit: cover;
}

.rich-pp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-top: -25px;
    z-index: 2;
    object-fit: cover;
}

.podium-1 .rich-pp {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    border-color: #f59e0b;
}

.rich-info {
    text-align: center;
    margin-top: 6px;
    padding: 0 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rich-name {
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
    margin-bottom: 3px;
}

.rich-coins {
    font-size: 0.76rem;
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 6px;
}

.rich-coins i {
    color: #eab308;
}

/* Lists (Vip & Booster members) */
.lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.list-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.list-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}

.member-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 12px;
}

.member-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(3px);
}

.member-list-pp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.member-list-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-list-name {
    font-weight: 600;
    font-size: 0.82rem;
}

.member-list-role {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.member-list-badge {
    padding: 2px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.vip-badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border: 1px solid var(--secondary-glow);
}

.booster-badge {
    background: rgba(236, 72, 153, 0.1);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* Server Info Content Section */
.server-about-section {
    background: radial-gradient(circle at 100% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-box:nth-child(2) .feature-icon {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary);
}

.feature-box:nth-child(3) .feature-icon {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Profile Page Styles */
.profile-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.profile-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 6, 20, 0.2) 0%, rgba(7, 6, 20, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.profile-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(1px);
    z-index: 0;
}

.profile-hero-content {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    z-index: 2;
}

.profile-avatar-large {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid var(--bg-dark);
    box-shadow: var(--shadow-premium);
    object-fit: cover;
}

.profile-main-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.profile-display-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-badges {
    display: flex;
    gap: 8px;
}

.badge-item {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-booster {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.4);
}

.badge-vip {
    background: rgba(6, 182, 212, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary-glow);
}

.profile-role {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary);
}

.stats-card.cyan::before { background: var(--secondary); }
.stats-card.rose::before { background: var(--accent); }
.stats-card.gold::before { background: #fbbf24; }

.stats-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stats-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.stats-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* XP Progress Bar */
.xp-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.xp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xp-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.xp-lvl {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
}

.xp-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.xp-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    width: 65%;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-glow);
    animation: barPulse 2s infinite alternate;
}

.xp-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Spotify Integration Styling */
.spotify-card {
    background: rgba(22, 101, 52, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.spotify-icon-container {
    font-size: 2.2rem;
    color: #22c55e;
}

.spotify-album-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.spotify-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.spotify-status {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
}

.spotify-song {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.spotify-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Admin Panel Styles */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: #07060e;
}

.admin-sidebar {
    width: 280px;
    background: #16152e;
    border-right: 1px solid rgba(139, 92, 246, 0.25);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
}

/* Minimalist Ad Cards in Admin */
.ad-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ad-manage-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(var(--glass-blur));
}

.ad-manage-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.ad-manage-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.ad-manage-card-previews {
    position: relative;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #020206;
}

.ad-manage-banner-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.ad-manage-avatar-preview {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #0e0d22;
    position: absolute;
    bottom: 10px;
    left: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-premium);
}

.ad-manage-upload-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ad-manage-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.78rem;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
}

.ad-manage-upload-btn:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: var(--primary);
}

.ad-manage-upload-btn input[type="file"] {
    display: none;
}

.ad-duration-badge {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid var(--secondary);
    color: var(--neon-blue);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ad-duration-badge.expired {
    background: rgba(244, 63, 94, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

/* 3D Flip Card Container on Main Page */
.ad-card-wrapper { cursor: pointer;
    perspective: 1000px;
    height: 155px;
    position: relative;
    border-radius: 10px;
}

.ad-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.ad-card-wrapper.flipped .ad-card-inner {
    transform: rotateY(180deg);
}

.ad-card-front, .ad-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.ad-card-front {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transform: rotateY(0deg);
    z-index: 2;
}

/* Shiny & Glossy back face of 3D Cards */
.ad-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
    z-index: 1;
    font-family: var(--font-sans);
}

/* 1st Card: Gold Shiny */
.ad-card-back.gold-shiny {
    background: linear-gradient(135deg, #ffe066 0%, #f59e0b 50%, #b45309 100%);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 1px solid #ffe066;
}

.ad-card-back.gold-shiny::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
    transform: rotate(30deg);
    animation: shine-sweep 4s infinite linear;
}

/* 2nd Card: Purple Shiny */
.ad-card-back.purple-shiny {
    background: linear-gradient(135deg, #df80ff 0%, #a855f7 50%, #6d28d9 100%);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 1px solid #df80ff;
}

.ad-card-back.purple-shiny::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
    transform: rotate(30deg);
    animation: shine-sweep 4s infinite linear;
    animation-delay: 1.3s;
}

/* 3rd Card: Blue Shiny */
.ad-card-back.blue-shiny {
    background: linear-gradient(135deg, #80f0ff 0%, #06b6d4 50%, #0891b2 100%);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 1px solid #80f0ff;
}

.ad-card-back.blue-shiny::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
    transform: rotate(30deg);
    animation: shine-sweep 4s infinite linear;
    animation-delay: 2.6s;
}

@keyframes shine-sweep {
    0% { transform: translate(-30%, -30%) rotate(30deg); }
    100% { transform: translate(30%, 30%) rotate(30deg); }
}

.ad-card-back h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.ad-card-back p {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.admin-profile-box {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-profile-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.admin-meta {
    display: flex;
    flex-direction: column;
}

.admin-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.admin-id {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.admin-role-selector {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-role-selector select {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    outline: none;
    width: 100%;
    cursor: pointer;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(139,92,246,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
}

.menu-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-item-link:hover, .menu-item-link.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.2);
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    box-shadow: inset 0 0 12px rgba(139,92,246,0.08);
}

.menu-item-link.maintenance-item {
    opacity: 0.65;
    position: relative;
}

.menu-item-link.maintenance-item::after {
    content: 'BAKIMDA';
    position: absolute;
    right: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.admin-content {
    flex-grow: 1;
    margin-left: 280px;
    padding: 40px;
    min-height: 100vh;
    background: #07060e;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.admin-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Control Panel Section Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group textarea, .form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.admin-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.admin-btn:hover {
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.admin-btn.danger {
    background: var(--accent);
}

.admin-btn.danger:hover {
    background: #e11d48;
}

.bot-panel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.bot-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.bot-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bot-status-online { color: #22c55e; }
.bot-status-offline { color: var(--accent); }

/* Table Styling for Admin list */
.admin-table-container {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Maintenance Page Design */
.maintenance-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.maintenance-box {
    max-width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.maintenance-icon {
    font-size: 4rem;
    color: var(--secondary);
    animation: float 3s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary); }
}

@keyframes rgbGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes barPulse {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .ads-grid { grid-template-columns: 1fr 1fr; }
    .people-grid { grid-template-columns: repeat(3, 1fr); }
    .rich-row { flex-wrap: wrap; }
    .profile-stats-grid { grid-template-columns: 1fr 1fr; }
    .lists-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { 
        padding: 0 20px; 
    }
    .nav-center { 
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(4, 3, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        justify-content: space-around;
        padding: 0 10px;
        z-index: 1000;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
    .container {
        margin-bottom: 90px; /* Space for floating bottom bar */
    }
    .ads-grid { grid-template-columns: 1fr; }
    .people-grid { grid-template-columns: 1fr 1fr; }
    .profile-hero { height: auto; padding-top: 100px; }
    .profile-hero-content { flex-direction: column; align-items: center; text-align: center; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: relative; }
    .admin-content { margin-left: 0; }

    /* Mobile Hero Rules */
    .hero-section {
        padding: 45px 15px 40px 15px;
        border-radius: 16px;
    }
    .hero-title { font-size: 2.3rem; }
    .hero-typing { font-size: 1.05rem; }
    .hero-subtitle { font-size: 0.82rem; margin: 12px 0 20px 0; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 10px; }
    .hero-btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 8px; border-radius: 16px; width: 100%; padding: 12px; }
    .stat-badge { justify-content: center; }
}

/* 3D Swiper Carousel Styles */
.swiper-section { width: 100%; overflow: hidden; }
.swiper { width: 100%; padding-top: 50px; padding-bottom: 50px; }
.swiper-slide {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.swiper-slide-active { box-shadow: 0 0 25px rgba(139, 92, 246, 0.4); border-color: rgba(139, 92, 246, 0.5); }
.swiper-user-card { display: flex; flex-direction: column; }
.suc-top { height: 45%; position: relative; width: 100%; }
.suc-banner { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }
.suc-badge {
    position: absolute; top: 10px; right: 10px; font-size: 0.65rem; font-weight: bold;
    padding: 4px 10px; border-radius: 20px; z-index: 5; text-transform: uppercase;
}
.suc-badge.vip-badge { background: rgba(234, 179, 8, 0.2); color: #facc15; border: 1px solid #facc15; }
.suc-badge.booster-badge { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid #c084fc; }
.suc-avatar-wrapper {
    position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
    width: 80px; height: 80px; z-index: 10; border-radius: 50%; padding: 4px;
    background: var(--bg-dark);
}
.suc-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.suc-bottom {
    height: 55%; padding: 45px 15px 15px 15px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-darker) 100%);
}
.suc-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 15px; text-align: center; }
.suc-stats { display: flex; flex-wrap: wrap; gap: 10px; width: 100%; justify-content: space-between; }
.suc-stat-item {
    display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03); padding: 6px 10px; border-radius: 8px; flex-grow: 1; justify-content: center;
}


/* New Full Banner Swiper Cards */
.swiper-user-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-dark);
}

.suc-full-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.swiper-slide-active .suc-full-banner {
    transform: scale(1.05);
}

.swiper-slide-active {
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.7), inset 0 0 30px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.suc-hover-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.swiper-user-card:hover .suc-hover-overlay {
    opacity: 1;
}

.suc-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-darker);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.suc-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.suc-glass-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(30, 30, 35, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.suc-glass-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.suc-glass-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    object-fit: cover;
}

.suc-glass-text {
    display: flex;
    flex-direction: column;
}

.suc-glass-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.suc-glass-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.suc-glass-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.suc-glass-time, .suc-glass-like {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* Minimalist Ad Cards V2 (Admin Panel) */
.ad-manage-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.ad-compact-card {
    background: rgba(20, 20, 25, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.ad-compact-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}
.adc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.adc-slot-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.adc-status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}
.adc-status-badge.visible { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.adc-status-badge.dashed { background: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.adc-status-badge.hidden { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }

.adc-preview {
    position: relative;
    height: 140px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.adc-preview-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.adc-preview-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.adc-upload-row {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
.adc-upload-btn {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.adc-upload-btn:hover { background: var(--primary); border-color: var(--primary); }
.adc-upload-btn input[type=file] { display: none; }

.adc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.adc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.adc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.adc-field.full { grid-column: 1 / -1; }
.adc-field label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}
.adc-field input, .adc-field select, .adc-field textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    width: 100%;
    outline: none;
    transition: border 0.3s;
}
.adc-field input:focus, .adc-field select:focus, .adc-field textarea:focus { border-color: var(--primary); }
.adc-field textarea { resize: none; font-size: 0.75rem; }

.adc-footer {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
}
.adc-save-btn {
    flex-grow: 1;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s;
}
.adc-save-btn:hover { opacity: 0.9; }
.adc-del-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.adc-del-btn:hover { background: #ef4444; color: #fff; }

.adc-duration {
    border-top: 1px dashed rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.adc-duration-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.adc-duration-label { font-size: 0.75rem; color: #fff; font-weight: 600; display:flex; align-items:center; gap:6px; }
.adc-time-badge { font-size: 0.65rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; }
.adc-time-badge.active { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.adc-time-badge.expired { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.adc-quick-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.adc-quick-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 6px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.adc-quick-btn.add:hover { background: rgba(34, 197, 94, 0.2); border-color: #22c55e; color: #22c55e; }
.adc-quick-btn.sub:hover { background: rgba(239, 68, 68, 0.2); border-color: #ef4444; color: #ef4444; }

.adc-set-row {
    display: flex;
    gap: 8px;
}
.adc-input-mini {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    outline: none;
}
.adc-input-mini:focus { border-color: var(--primary); }


/* Animasyonlu Sistem ve Özellik Kartları (Neden Vellora?) */
.features-grid-section {
    margin-bottom: 60px;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.system-card {
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s;
}

.system-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    background: rgba(20, 20, 25, 0.6);
}

.system-card:hover::before {
    left: 200%;
}

.sc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.system-card:hover .sc-icon {
    transform: scale(1.1) rotate(10deg);
}

.sc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.sc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sc-desc strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Glow Colors */
.blue-glow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); border-color: rgba(59, 130, 246, 0.5); }
.purple-glow { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); border-color: rgba(168, 85, 247, 0.5); }
.gold-glow { box-shadow: 0 0 20px rgba(234, 179, 8, 0.4); border-color: rgba(234, 179, 8, 0.5); }
.green-glow { box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); border-color: rgba(34, 197, 94, 0.5); }
.rose-glow { box-shadow: 0 0 20px rgba(244, 63, 94, 0.4); border-color: rgba(244, 63, 94, 0.5); }
.cyan-glow { box-shadow: 0 0 20px rgba(6, 182, 212, 0.4); border-color: rgba(6, 182, 212, 0.5); }

/* ==========================================
   PREMIUM GLASSMORPHIC FOOTER SYSTEM
   ========================================== */
.main-footer {
    margin-top: 120px;
    padding: 70px 4% 30px 4%;
    background: linear-gradient(to bottom, rgba(7, 6, 20, 0.4), rgba(4, 3, 10, 0.95));
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.7;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: rotate(360deg) scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 0 20px var(--secondary-glow);
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.25);
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link-item a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-link-item a i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Tatlı Discord Destek Kartı */
.discord-support-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.discord-support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.discord-support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.dsc-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dsc-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #5865F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    animation: dscPulse 2s infinite alternate ease-in-out;
}

@keyframes dscPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4); }
    100% { transform: scale(1.06); box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6); }
}

.dsc-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.dsc-subtitle {
    font-size: 0.72rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dsc-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dsc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

.dsc-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(88, 101, 242, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-dev {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-dev i {
    color: var(--accent);
    animation: heartPulse 1.2s infinite;
    display: inline-block;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================
   KURUMSAL SAYFA ŞABLONU & STILLERI
   ========================================== */
.legal-container {
    max-width: 800px;
    margin: 120px auto 60px auto;
    padding: 0 20px;
}

.legal-card {
    background: rgba(15, 12, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.legal-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.legal-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 0 0 20px var(--secondary-glow);
    animation: floatIcon 4s infinite ease-in-out;
}

@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.legal-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.legal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.legal-content {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-section-block {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.legal-section-block:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(139, 92, 246, 0.15);
    transform: translateX(4px);
}

.legal-h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-h2 i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.legal-p {
    color: var(--text-muted);
}

.legal-list {
    margin-top: 10px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-muted);
}



.legal-list li strong {
    color: #fff;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 30px;
    padding: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.legal-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    filter: brightness(1.1);
}


/* ==========================================
   TEAM PAGE & GLASSMORPHIC PROFILE CARDS
   ========================================== */
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px 20px;
}

.team-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 45px 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px;
}

.team-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* Grids for different tiers */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

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

/* Custom premium card borders and glows */
.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    min-height: 180px;
}

/* Glowing hierarchical styles */
.team-card.pink-glow-border {
    border-color: rgba(244, 63, 94, 0.3);
}
.team-card.pink-glow-border:hover {
    border-color: rgba(244, 63, 94, 0.95);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.35), inset 0 0 15px rgba(244, 63, 94, 0.15);
}

.team-card.gold-glow-border {
    border-color: rgba(250, 204, 21, 0.3);
}
.team-card.gold-glow-border:hover {
    border-color: rgba(250, 204, 21, 0.95);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.35), inset 0 0 15px rgba(250, 204, 21, 0.15);
}

.team-card.purple-glow-border {
    border-color: rgba(168, 85, 247, 0.3);
}
.team-card.purple-glow-border:hover {
    border-color: rgba(168, 85, 247, 0.95);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35), inset 0 0 15px rgba(168, 85, 247, 0.15);
}

.team-card.cyan-glow-border {
    border-color: rgba(6, 182, 212, 0.3);
}
.team-card.cyan-glow-border:hover {
    border-color: rgba(6, 182, 212, 0.95);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35), inset 0 0 15px rgba(6, 182, 212, 0.15);
}

.team-card.blue-glow-border {
    border-color: rgba(59, 130, 246, 0.3);
}
.team-card.blue-glow-border:hover {
    border-color: rgba(59, 130, 246, 0.95);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35), inset 0 0 15px rgba(59, 130, 246, 0.15);
}

.team-card.green-glow-border {
    border-color: rgba(16, 185, 129, 0.3);
}
.team-card.green-glow-border:hover {
    border-color: rgba(16, 185, 129, 0.95);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35), inset 0 0 15px rgba(16, 185, 129, 0.15);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.015);
}

.team-card-banner {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-card-banner {
    transform: scale(1.12);
}

.team-card-pp {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2.5px solid var(--bg-dark);
    margin-top: -24px;
    z-index: 2;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: var(--bg-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-card-pp {
    transform: scale(1.1) rotate(6deg);
    border-color: rgba(6, 182, 212, 0.8);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.team-card-body {
    padding: 8px 10px 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    justify-content: space-between;
}

.team-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.team-card-role-text {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.team-card-badges-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 4px 0 6px 0;
    width: 100%;
}

.team-card-badge {
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2.5px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Premium single-role tier badge */
.team-card-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.team-card-tier-badge i {
    font-size: 0.54rem;
}

.team-card:hover .team-card-tier-badge {
    transform: scale(1.05);
    filter: brightness(1.15);
    box-shadow: 0 0 8px rgba(255,255,255,0.1);
}

/* Keep old class for compat */
.team-card-kadro-badge {
    font-size: 0.5rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.team-card:hover .team-card-kadro-badge {
    transform: scale(1.04);
}

.team-responsibilities {
    list-style: none;
    padding: 0;
    margin: 6px 0 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.team-responsibilities li {
    font-size: 0.54rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.team-card-btn {
    width: 100%;
    padding: 7px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 0.62rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    display: block;
}

.team-card:hover .team-card-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.25);
}

/* =========================================================================
   DISCORD SERVER PREVIEW WIDGET
   ========================================================================= */
.discord-preview-section {
    position: relative;
    z-index: 10;
}
.dp-container {
    background: rgba(18, 15, 33, 0.65);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.dp-container:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
}
.dp-bg-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.dp-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 300px;
}
.dp-server-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}
.dp-server-icon {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dp-container:hover .dp-server-icon {
    transform: scale(1.08) rotate(-3deg);
}
.dp-status-pulse {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #23a559;
    border-radius: 50%;
    border: 3px solid #120f21;
    box-shadow: 0 0 10px rgba(35, 165, 89, 0.5);
}
.dp-status-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #23a559;
    border-radius: 50%;
    animation: ripplePulse 2s infinite ease-out;
}
@keyframes ripplePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
.dp-server-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(251, 191, 36, 0.1);
    color: #fcd34d;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}
.dp-server-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.dp-server-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    max-width: 500px;
}
.dp-stats {
    display: flex;
    gap: 20px;
}
.dp-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.dp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dp-dot.online { background: #23a559; box-shadow: 0 0 8px rgba(35, 165, 89, 0.6); }
.dp-dot.total { background: #80848e; }
.dp-stat-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.dp-stat-text strong {
    color: #fff;
    margin-right: 3px;
}
.dp-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dp-btn-wrapper {
    position: relative;
}
.dp-join-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    overflow: hidden;
}
.dp-join-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.dp-join-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5);
    color: #fff;
}
.dp-join-btn:hover::before {
    left: 150%;
}
.dp-btn-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border-radius: 30px;
    border: 2px solid #5865F2;
    z-index: 1;
    animation: btnPulse 2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes btnPulse {
    0% { width: 100%; height: 100%; opacity: 0.8; }
    100% { width: 130%; height: 140%; opacity: 0; }
}

.dp-premium-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dp-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}
.dp-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.dps-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.dps-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dps-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.dps-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .dp-container { padding: 20px; }
    .dp-left { flex-direction: column; text-align: center; gap: 15px; }
    .dp-server-desc { margin: 0 auto 15px auto; }
    .dp-stats { justify-content: center; }
}



/* Admin Layout Fix */
.admin-content {
    flex-grow: 1;
    margin-left: 280px;
    padding: 30px 40px;
    width: calc(100% - 280px);
    display: flex;
    flex-direction: column;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.admin-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 12, 38, 0.4);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-table thead tr {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}
.admin-table th {
    padding: 12px 15px;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.admin-table td {
    padding: 12px 15px;
    color: #f3f4f6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}
.admin-table tbody tr {
    transition: background 0.2s, transform 0.2s;
}
.admin-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.05);
}
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.admin-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/* Metallic Button styling */
.metallic-btn {
    width: 85%;
    padding: 6px 0;
    margin: 5px auto 10px auto;
    display: block;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #3a3f47 0%, #1e2229 50%, #14171d 100%);
    border: 1px solid #5a6473;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.15), 
        0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metallic-btn::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -150%;
    width: 150%; 
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.15) 30%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0.15) 70%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.metallic-btn:hover {
    background: linear-gradient(135deg, #4b525d 0%, #292d36 50%, #1e2229 100%);
    border-color: #7b889c;
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.3), 
        0 5px 12px rgba(0, 0, 0, 0.5), 
        0 0 10px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.metallic-btn:hover::before {
    left: 150%;
}

/* ==================================================
   PROFILE DASHBOARD REVAMP CSS
================================================== */

.profile-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.profile-top-row, .profile-bottom-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .profile-top-row, .profile-bottom-row {
        flex-direction: column;
    }
}

/* Hero Card */
.profile-hero-card {
    flex: 5;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.profile-hero-card .profile-banner-bg {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: brightness(0.6);
}

.profile-hero-card .profile-hero-content {
    padding: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    flex-grow: 1;
}

.profile-hero-card .profile-avatar-large {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    margin-top: -65px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    background: var(--bg-dark);
    z-index: 2;
}

.profile-hero-card .profile-main-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Stats Column & 4 Boxes */
.profile-stats-column {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-stats-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex-grow: 1;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dash-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.dash-stat-card.gold:hover { border-color: #fbbf24; }
.dash-stat-card.cyan:hover { border-color: var(--secondary); }
.dash-stat-card.rose:hover { border-color: var(--accent); }

.dash-stat-card .stat-icon {
    font-size: 2rem;
    color: var(--primary);
}
.dash-stat-card.gold .stat-icon { color: #fbbf24; }
.dash-stat-card.cyan .stat-icon { color: var(--secondary); }
.dash-stat-card.rose .stat-icon { color: var(--accent); }

.dash-stat-card .stat-info {
    display: flex;
    flex-direction: column;
}
.dash-stat-card .stat-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}
.dash-stat-card .stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Spotify Card Horizontal */
.dash-spotify-card {
    background: rgba(30, 215, 96, 0.05);
    border: 1px solid rgba(30, 215, 96, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    height: 100px;
}

.dash-spotify-card.offline {
    background: var(--bg-card);
    border-color: var(--border-color);
    justify-content: center;
}

.dash-spotify-art {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 2;
}

.dash-spotify-info {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-spotify-title {
    font-size: 0.7rem;
    color: #1ed760;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.dash-spotify-song {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}
.dash-spotify-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.spotify-bg-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 10rem;
    color: rgba(30, 215, 96, 0.05);
    z-index: 1;
    transform: rotate(-15deg);
}

/* Inventory Card */
.profile-inventory-card {
    flex: 5;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.dash-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.dash-card-header i {
    font-size: 1.2rem;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
}

.inventory-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
.inventory-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
}
.inventory-item.disabled {
    opacity: 0.5;
    filter: grayscale(1);
}
.inventory-item .item-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.inventory-item .item-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.inventory-item .item-status {
    font-size: 0.6rem;
    padding: 2px 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    color: var(--text-muted);
}
.inventory-item .item-status.aktif, .inventory-item .item-status.kullanilabilir {
    background: rgba(6, 182, 212, 0.15);
    color: var(--secondary);
}

/* Logs Column */
.profile-logs-column {
    flex: 4;
    display: flex;
    gap: 20px;
}
@media (max-width: 600px) {
    .profile-logs-column {
        flex-direction: column;
    }
}

.dash-logs-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.dash-logs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 350px;
    padding-right: 5px;
}

.dash-logs-list::-webkit-scrollbar {
    width: 4px;
}

.log-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}
.log-item:hover {
    background: rgba(255,255,255,0.05);
}
.log-item.empty {
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    border: 1px dashed rgba(255,255,255,0.1);
}
.log-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.log-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}
.log-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.log-right {
    font-size: 0.85rem;
    font-weight: 800;
}
.log-right.earn { color: #10b981; }
.log-right.spend { color: #ef4444; }

.log-item.punishment {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}
