/* SosyalTank - Ana Stil Dosyası */
/* Modern, Nostaljik, Gaming Temalı */

/* ===== CSS Variables ===== */
:root {
    /* Renkler */
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --secondary: #F59E0B;
    --secondary-light: #FBBF24;
    --accent: #10B981;
    --accent-light: #34D399;
    --dark: #1F2937;
    --darker: #111827;
    --darkest: #0D1117;
    --light: #F9FAFB;
    --light-muted: #E5E7EB;
    --text-muted: #9CA3AF;
    --gold: #D4AF37;
    --danger: #EF4444;
    --success: #22C55E;

    /* Glassmorphism */
    --glass-bg: rgba(31, 41, 55, 0.8);
    --glass-border: rgba(124, 58, 237, 0.3);
    --glass-blur: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.4);

    /* Typography */
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-gaming: 'Orbitron', 'Inter', sans-serif;

    /* Spacing & Layout */
    --nav-height: 64px;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--darkest);
    min-height: 100vh;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #D97706);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 20px;
}

.navbar-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo img {
    height: 45px;
    width: auto;
}

.navbar-logo span {
    font-family: var(--font-gaming);
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-menu a {
    font-weight: 500;
    color: var(--light-muted);
    padding: 8px 0;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--light);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.navbar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.navbar-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--nav-height) 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(17, 24, 39, 0.7) 0%,
            rgba(13, 17, 23, 0.9) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 200px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: var(--font-gaming);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--light), var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 48px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-gaming);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Features Section ===== */
.features {
    padding: 80px 20px;
    background: var(--darker);
}

.section-title {
    font-family: var(--font-gaming);
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--light);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Server Status ===== */
.server-status {
    padding: 60px 20px;
    background: var(--darkest);
}

.server-card {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.server-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

.server-indicator.offline {
    background: var(--danger);
    box-shadow: 0 0 10px var(--danger);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.server-name {
    font-weight: 600;
    color: var(--light);
}

.server-players {
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== News Section ===== */
.news {
    padding: 80px 20px;
    background: var(--darker);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.news-card {
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.news-date {
    font-size: 12px;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== Footer ===== */
.footer {
    background: var(--darkest);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand img {
    height: 70px;
    width: auto;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--light);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== Game Page (play.php) ===== */
.game-page {
    min-height: 100vh;
    background: url('../images/bg/game_bg2.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.game-header {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.game-header-logo img {
    height: 35px;
}

.game-server-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.game-server-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.game-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.game-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.game-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.game-frame {
    width: 1000px;
    height: 600px;
    border-radius: var(--radius-md);
    background: #000;
    overflow: hidden;
}

.game-loading {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.game-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== Items Page ===== */
.items-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    display: flex;
    flex-direction: column;
}

.items-header {
    background: linear-gradient(135deg, var(--darker), rgba(124, 58, 237, 0.15));
    padding: calc(var(--nav-height) + 40px) 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.items-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.items-header h1 {
    font-family: var(--font-gaming);
    font-size: 36px;
    color: var(--light);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.items-header p {
    color: var(--text-muted);
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* ===== Guide Page (Rehber) ===== */
.rehber-page {
    min-height: 100vh;
    background: var(--darkest);
}

.rehber-header {
    background: linear-gradient(135deg, var(--darker), rgba(16, 185, 129, 0.15));
    padding: calc(var(--nav-height) + 40px) 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.rehber-header h1 {
    font-family: var(--font-gaming);
    font-size: 36px;
    color: var(--light);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.rehber-header p {
    color: var(--text-muted);
    font-size: 16px;
    position: relative;
    z-index: 2;
}



.items-header h1 i {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
}

.items-header p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.items-content {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 24px 40px;
    gap: 24px;
    box-sizing: border-box;
}

/* Sidebar Filters */
.items-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-search {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.filter-search:focus {
    border-color: var(--primary);
}

.filter-search::placeholder {
    color: var(--text-muted);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-option:hover,
.filter-option.active {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.filter-option input {
    display: none;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.filter-option.active .filter-checkbox,
.filter-option input:checked+.filter-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-option.active .filter-checkbox::after,
.filter-option input:checked+.filter-checkbox::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

/* Items Grid */
.items-main {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.items-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.items-count {
    color: var(--text-muted);
    font-size: 14px;
}

.items-sort select {
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-size: 13px;
    cursor: pointer;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.item-card {
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(124, 58, 237, 0.1);
}

.item-card:hover::before {
    transform: scaleX(1);
}

.item-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary);
    border-radius: 12px;
    font-size: 11px;
    color: white;
    margin-bottom: 8px;
}

.item-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

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

.item-stat.attack {
    color: var(--danger);
}

.item-stat.defense {
    color: var(--accent);
}

/* ===== Item Detail Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.modal-content {
    background: var(--darker);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

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

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--glass-bg);
    border-radius: 50%;
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.modal-close:hover {
    background: var(--danger);
}

.modal-body {
    padding: 24px;
}

.item-detail {
    display: flex;
    gap: 24px;
}

.item-detail-image {
    width: 150px;
    height: 150px;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-detail-image img {
    max-width: 120px;
    max-height: 120px;
}

.item-detail-info {
    flex: 1;
}

.item-detail-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.item-detail-id {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 16px;
}

.item-stats-table {
    width: 100%;
    border-collapse: collapse;
}

.item-stats-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-stats-table td {
    padding: 10px 0;
}

.item-stats-table td:first-child {
    color: var(--text-muted);
    width: 120px;
}

.item-stats-table td:last-child {
    font-weight: 600;
}

.rehber-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.rehber-header h1 {
    position: relative;
    z-index: 1;
}

.rehber-header h1 i {
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
}

.rehber-header p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
}

.rehber-content {
    width: 100%;
    max-width: 100%;
    padding: 24px 40px;
    box-sizing: border-box;
}

.rehber-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.rehber-nav-item {
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.rehber-nav-item:hover,
.rehber-nav-item.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* SSS Accordion */
.faq-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 500;
    color: var(--light);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-light);
}

.rehber-section {
    display: none;
}

.rehber-section.active {
    display: block;
}

.rehber-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.rehber-section h3 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--light);
}

.rehber-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.rehber-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.rehber-section li {
    margin-bottom: 8px;
}

/* ===== Login & Register Forms ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-height) 20px 40px;
    background: linear-gradient(135deg, var(--darkest), var(--darker));
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.auth-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: authBgRotate 30s linear infinite;
    z-index: 0;
}

@keyframes authBgRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Floating Particles */
.auth-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.auth-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s infinite ease-in-out;
}

.auth-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.auth-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
    background: var(--secondary);
}

.auth-particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.auth-particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
    background: var(--accent);
}

.auth-particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.auth-particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
    background: var(--secondary);
}

.auth-particle:nth-child(7) {
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 15s;
}

.auth-particle:nth-child(8) {
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 12s;
    background: var(--accent);
}

.auth-particle:nth-child(9) {
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 14s;
}

.auth-particle:nth-child(10) {
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 17s;
    background: var(--gold);
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
        transform: translateY(80vh) scale(1);
    }

    90% {
        opacity: 0.4;
        transform: translateY(-10vh) scale(0.8);
    }

    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 80px rgba(124, 58, 237, 0.1);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 60px;
}

.auth-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light);
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Input with Icon */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group .input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 16px;
    transition: color var(--transition-fast);
    z-index: 1;
}

.input-group .form-input {
    padding-left: 48px;
}

.input-group:focus-within .input-icon {
    color: var(--primary-light);
}

/* Password Toggle */
.input-group .password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    transition: color var(--transition-fast);
    z-index: 1;
}

.input-group .password-toggle:hover {
    color: var(--primary-light);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-input:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Auth Options Row */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.forgot-link {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.auth-divider span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Back Link */
.back-link {
    font-size: 13px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.back-link:hover {
    color: var(--light);
}

.back-link i {
    transition: transform var(--transition-fast);
}

.back-link:hover i {
    transform: translateX(-4px);
}

/* Glowing Button */
.btn-glow {
    position: relative;
    overflow: hidden;
}

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

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

/* Wide Auth Card (for Register) */
.auth-card-wide {
    max-width: 520px;
}

/* Form Row (Two columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .auth-card-wide {
        max-width: 100%;
    }
}

/* Gender Select */
.gender-select {
    display: flex;
    gap: 12px;
}

.gender-option {
    flex: 1;
    cursor: pointer;
}

.gender-option input {
    display: none;
}

.gender-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.gender-box i {
    font-size: 18px;
}

.gender-option input:checked+.gender-box {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.15);
    color: var(--light);
}

.gender-option:hover .gender-box {
    border-color: rgba(124, 58, 237, 0.5);
}

/* Form Hint */
.form-hint {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-hint i {
    margin-right: 4px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-checkbox span {
    font-size: 13px;
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-footer a {
    color: var(--primary-light);
    font-weight: 500;
}

/* ===== Compact Auth Styles (Bombom Theme) ===== */

/* Floating Game Icons Background */
.auth-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-tank {
    position: absolute;
    font-size: 48px;
    opacity: 0.08;
    animation: floatTank 20s ease-in-out infinite;
}

.floating-tank.tank-1 {
    top: 15%;
    left: 10%;
    color: var(--primary);
    animation-delay: 0s;
}

.floating-tank.tank-2 {
    top: 60%;
    right: 15%;
    color: var(--secondary);
    animation-delay: -7s;
    font-size: 56px;
}

.floating-tank.tank-3 {
    bottom: 20%;
    left: 20%;
    color: var(--accent);
    animation-delay: -14s;
    font-size: 40px;
}

@keyframes floatTank {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Compact Auth Card */
.auth-card.compact {
    max-width: 380px;
    padding: 32px 28px;
}

/* Wide Compact Auth Card (for Register) */
.auth-card.auth-card-wide.compact {
    max-width: 480px;
    padding: 28px 24px;
}

.auth-card.compact .auth-logo {
    margin-bottom: 20px;
}

.auth-card.compact .auth-logo img {
    height: 48px;
}

.auth-card.compact .auth-title {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Compact Form Group */
.form-group.compact {
    margin-bottom: 16px;
}

/* Compact Status Box */
.status-box.compact {
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

/* Compact Auth Options */
.auth-options.compact {
    margin-bottom: 16px;
    font-size: 12px;
}

/* Compact Gender Select */
.form-group.compact .gender-select {
    gap: 10px;
}

.form-group.compact .gender-box {
    padding: 10px;
    font-size: 13px;
}

.form-group.compact .gender-box i {
    font-size: 16px;
}

/* Compact Auth Footer */
.auth-footer.compact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Game Button - Bombom Theme */
.btn-game {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(255, 107, 53, 0.4),
        0 0 0 2px rgba(255, 210, 63, 0.3) inset;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(255, 107, 53, 0.5),
        0 0 0 2px rgba(255, 210, 63, 0.5) inset;
}

.btn-game:hover::before {
    left: 100%;
}

.btn-game:active {
    transform: translateY(0);
}

.btn-game i {
    font-size: 18px;
}

/* Mobile Responsive for Compact */
@media (max-width: 420px) {
    .auth-card.compact {
        padding: 24px 20px;
        margin: 10px;
    }

    .auth-card.compact .auth-title {
        font-size: 18px;
    }

    .btn-game {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Password Strength Indicator */
.password-strength {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.password-strength-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.password-strength[data-strength="weak"] .password-strength-bar:first-child {
    background: #ef4444;
}

.password-strength[data-strength="medium"] .password-strength-bar:nth-child(-n+2) {
    background: #f59e0b;
}

.password-strength[data-strength="strong"] .password-strength-bar:nth-child(-n+3) {
    background: #10b981;
}

.password-strength[data-strength="very-strong"] .password-strength-bar {
    background: #22c55e;
}

.password-strength-text {
    font-size: 11px;
    margin-top: 4px;
    color: var(--text-muted);
    text-align: right;
}

.password-strength-text.weak { color: #ef4444; }
.password-strength-text.medium { color: #f59e0b; }
.password-strength-text.strong { color: #10b981; }
.password-strength-text.very-strong { color: #22c55e; }

/* Form Validation States */
.form-input.is-valid {
    border-color: #10b981;
}

.form-input.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-input.is-invalid {
    border-color: #ef4444;
}

.form-input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.input-group .validation-icon {
    position: absolute;
    right: 16px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.input-group .password-toggle ~ .validation-icon {
    right: 48px;
}

.form-input.is-valid ~ .validation-icon {
    opacity: 1;
    color: #10b981;
}

.form-input.is-invalid ~ .validation-icon {
    opacity: 1;
    color: #ef4444;
}

.form-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.form-input.is-invalid ~ .form-error,
.form-group.has-error .form-error {
    display: block;
}

/* Form Requirements Hint */
.form-requirements {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    padding-left: 2px;
}

.form-requirements i {
    margin-right: 4px;
    font-size: 10px;
}

/* Better Compact Form Row for Mobile */
@media (max-width: 560px) {
    .auth-card.auth-card-wide.compact {
        max-width: 100%;
        margin: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.compact {
        margin-bottom: 14px;
    }

    .gender-select {
        flex-direction: row;
    }

    .gender-box {
        padding: 12px;
    }
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-item:hover,
.pagination-item.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .items-content {
        flex-direction: column;
    }

    .items-sidebar {
        width: 100%;
    }

    .filter-options {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filter-option {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .game-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 5/3;
    }

    .item-detail {
        flex-direction: column;
        text-align: center;
    }

    .item-detail-image {
        margin: 0 auto;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 24px;
    }
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-light);
}

.text-secondary {
    color: var(--secondary);
}

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

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

/* Global Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.loading-spinner-lg {
    width: 70px;
    height: 70px;
    border-width: 5px;
}

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

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--glass-bg) 25%, rgba(255, 255, 255, 0.1) 50%, var(--glass-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hidden {
    display: none !important;
}

.visible {
    visibility: visible !important;
}

/* Dashboard & Layout Utilities */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.welcome-banner {
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--glass-bg), rgba(124, 58, 237, 0.1));
}

.card-title-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.vip-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold), #B8860B);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.server-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    color: var(--light);
    transition: all var(--transition-fast);
}

.server-item:hover {
    background: rgba(124, 58, 237, 0.2);
}

.news-item {
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.news-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    font-size: 11px;
    margin-bottom: 6px;
}

/* Dashboard Page */
.dashboard-page-container {
    padding-top: var(--nav-height);
    min-height: 100vh;
    background: var(--darkest);
}

.status-box {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ADE80;
}

.status-danger {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #F87171;
}

.status-large {
    flex-direction: column;
    text-align: center;
    padding: 24px;
}

.status-large i {
    font-size: 32px;
    margin-bottom: 12px;
}

.status-large div {
    line-height: 1.6;
}

/* 404 Error Page */
.error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--danger), #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: errorPulse 2s ease-in-out infinite;
}

@keyframes errorPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(239, 68, 68, 0.2);
    }
}

.error-code {
    font-family: var(--font-gaming);
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-tip {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.error-tip i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 2px;
}

.error-tip span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.error-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.error-links {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-links p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.error-links-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links-list a {
    color: var(--primary-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.error-links-list a:hover {
    color: var(--secondary);
}

/* Ban/Error Page */
.ban-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--danger), #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    animation: banShake 0.5s ease-in-out;
}

@keyframes banShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px) rotate(-5deg);
    }

    40% {
        transform: translateX(5px) rotate(5deg);
    }

    60% {
        transform: translateX(-5px) rotate(-3deg);
    }

    80% {
        transform: translateX(5px) rotate(3deg);
    }
}

.ban-reason-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.ban-reason-box h3 {
    margin-bottom: 12px;
    color: var(--light);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ban-reason-box h3 i {
    color: var(--secondary);
}

.ban-reason-box ul {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    margin: 0;
}

.ban-appeal-box {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.ban-appeal-box h3 {
    margin-bottom: 12px;
    color: var(--light);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ban-appeal-box h3 i {
    color: var(--primary-light);
}

.ban-appeal-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* =================================================================
   CONTENT PAGES - Common Styles (About, Privacy, Terms)
   ================================================================= */

.main-container {
    padding-top: 70px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.page-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-title i {
    color: var(--primary);
    margin-right: 10px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

.glass-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-card-title i {
    color: var(--primary-light);
}

.mt-2 {
    margin-top: 20px;
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--success);
    width: 20px;
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.team-stat-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-channels {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 20px;
}

.contact-item.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
}

.contact-item.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.contact-item.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
}

/* =================================================================
   PRIVACY PAGE
   ================================================================= */

.privacy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 10px;
}

.privacy-list li i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.privacy-list li strong {
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
}

.privacy-list li span {
    color: var(--text-secondary);
    font-size: 14px;
}

.usage-list,
.cookie-list,
.share-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.usage-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.usage-list li i {
    color: var(--success);
}

.cookie-list li,
.share-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    line-height: 1.7;
}

.cookie-list li:last-child,
.share-list li:last-child {
    border-bottom: none;
}

.share-list li strong {
    color: #ffffff;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.right-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

.right-item i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.right-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.right-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-buttons {
    margin-top: 20px;
}

/* =================================================================
   TERMS PAGE
   ================================================================= */

.terms-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

.terms-content em {
    color: var(--text-secondary);
    font-size: 14px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    line-height: 1.7;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li strong {
    color: #ffffff;
}

.terms-list.warning li {
    padding-left: 15px;
    border-left: 3px solid var(--accent);
}

/* =================================================================
   RESPONSIVE - Content Pages
   ================================================================= */

@media (max-width: 768px) {
    .team-stats {
        grid-template-columns: 1fr;
    }

    .contact-channels {
        flex-direction: column;
    }
}

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

/* =================================================================
   HOW TO PLAY SECTION - Improved Design
   ================================================================= */

.how-to-play-section {
    background: var(--darkest);
    padding: 80px 20px;
}

.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-to-play-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(31, 41, 55, 0.6) !important;
    border: 2px solid rgba(124, 58, 237, 0.3);
    overflow: hidden;
}

.how-to-play-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.how-to-play-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
}

.how-to-play-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
    border: 3px solid var(--darker);
}

.how-to-play-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.how-to-play-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 15px;
}

.how-to-play-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.how-to-play-card .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .how-to-play-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .how-to-play-section {
        padding: 60px 20px;
    }

    .how-to-play-card {
        padding: 35px 25px;
    }
}

/* ===== Rehber Styles Update ===== */
.rehber-nav-item i {
    margin-right: 8px;
    font-size: 14px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.info-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
}

.info-card h3 {
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.controls-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.control-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.keys {
    display: flex;
    align-items: center;
    gap: 8px;
}

.key-cap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
    border: 1px solid #4B5563;
    border-bottom-width: 3px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
    color: #E5E7EB;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.key-cap:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
    box-shadow: none;
}

.key-cap.space {
    width: 120px;
}

.key-cap i {
    font-size: 14px;
}

.key-text {
    color: var(--text-muted);
    font-size: 12px;
}

.control-desc {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 500;
}


.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.weapon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.weapon-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.weapon-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.weapon-info h4 {
    color: var(--light);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.weapon-info p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}


/* ===== Homepage How-to-Play Section ===== */
.how-to-play-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background: var(--darker);
}

.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-play-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(17, 24, 39, 0.6));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.how-to-play-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.how-to-play-card:hover .how-to-play-icon {
    transform: scale(1.1) rotate(5deg);
}

.how-to-play-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-gaming);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.how-to-play-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.how-to-play-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.how-to-play-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ===== Dashboard Play Card Highlight ===== */
.play-card-highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(0, 0, 0, 0.6)), url('/assets/images/bg/game_bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
    padding: 40px !important;
}

.play-card-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(13, 17, 23, 0.9) 100%);
    z-index: 0;
}

.play-card-content {
    position: relative;
    z-index: 1;
}

.play-btn-pulse {
    animation: btnPulse 2s infinite;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    border: none;
}

.play-btn-pulse:hover {
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    transform: scale(1.05);
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}


.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}


/* ===== Compact Design Updates ===== */
.section-compact {
    padding: 40px 20px !important;
}

.feature-card-compact {
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.feature-card-compact .feature-icon {
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-card-compact .feature-title {
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-card-compact .feature-desc {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0;
}

.hero-stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.hero-server-status {
    display: inline-flex;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-server-status:hover {
    background: rgba(17, 24, 39, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.compact-news-grid {
    gap: 20px;
}

.news-card-compact {
    padding: 20px;
}

.news-card-compact .news-title {
    font-size: 15px;
}

/* ===== NEW HOMEPAGE STYLES ===== */
/* Hero Section - New Design */
.hero-new {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 17, 23, 0.7) 0%,
            rgba(13, 17, 23, 0.5) 50%,
            rgba(13, 17, 23, 0.9) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
    z-index: 2;
}

.hero-content-new {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--success);
}

.badge-text {
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title-new {
    margin-bottom: 16px;
}

.hero-title-new .title-line {
    display: block;
    font-family: var(--font-gaming);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.1;
    color: var(--light);
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

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

.hero-tagline {
    font-size: 20px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

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

    50%,
    100% {
        left: 100%;
    }
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Live Stats */
.hero-live-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-stat .stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
}

.live-stat.online .stat-icon {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.live-stat.online .stat-icon.pulse i {
    animation: pulse 2s infinite;
    font-size: 10px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-family: var(--font-gaming);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.7;
}

.scroll-indicator .bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Features Section - New */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker) 0%, var(--darkest) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-new {
    font-family: var(--font-gaming);
    font-size: 36px;
    color: var(--light);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card-new {
    position: relative;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.feature-card-new:hover .feature-glow {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
}

.feature-icon-new.trophy {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(245, 158, 11, 0.2));
    color: var(--gold);
}

.feature-icon-new.gem {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(167, 139, 250, 0.2));
    color: var(--primary-light);
}

.feature-icon-new.dungeon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    color: #60A5FA;
}

.feature-icon-new.guild {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(52, 211, 153, 0.2));
    color: var(--accent);
}

.feature-card-new h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 12px;
}

.feature-card-new p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How to Play Section - New */
.how-to-play-section-new {
    padding: 100px 20px;
    background: var(--darkest);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-line {
    display: none;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming);
    font-size: 24px;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.step-number.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

.step-content {
    text-align: center;
    padding: 32px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-light);
}

.step-content h3 {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-btn:hover,
.step-btn.primary {
    background: var(--primary);
    color: white;
}

/* News Section - New */
.news-section-new {
    padding: 100px 20px;
    background: var(--darker);
}

.section-header .see-all-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-header {
    position: relative;
}

.news-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.news-card-featured {
    grid-row: span 3;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.news-card-featured .news-image {
    height: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-category.hot {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

.news-body {
    padding: 24px;
}

.news-body .news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.news-body h3 {
    font-size: 22px;
    color: var(--light);
    margin-bottom: 12px;
}

.news-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
}

.news-card-regular {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.news-card-regular:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.news-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.news-icon.event {
    background: rgba(245, 158, 11, 0.15);
    color: var(--secondary);
}

.news-icon.update {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.news-icon.community {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent);
}

.news-info {
    flex: 1;
}

.news-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.news-tag.event {
    background: rgba(245, 158, 11, 0.15);
    color: var(--secondary);
}

.news-tag.update {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.news-tag.community {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent);
}

.news-info h4 {
    font-size: 15px;
    color: var(--light);
    margin-bottom: 4px;
}

.news-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Community Section */
.community-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), var(--darkest));
}

.community-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.community-content {
    flex: 1;
}

.community-content h2 {
    font-family: var(--font-gaming);
    font-size: 36px;
    color: var(--light);
    margin: 16px 0;
}

.community-content>p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.community-perks {
    list-style: none;
    margin-bottom: 32px;
}

.community-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--light-muted);
    font-size: 14px;
}

.community-perks li i {
    color: var(--success);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #5865F2;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    color: white;
}

.discord-btn .member-count {
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    opacity: 0.8;
}

.community-visual {
    flex: 0 0 300px;
}

.discord-widget {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 16px;
}

.widget-header i {
    color: #5865F2;
    font-size: 24px;
}

.widget-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* CTA Section - New */
.cta-section-new {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    z-index: 0;
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.3), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.2), transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-gaming);
    font-size: 42px;
    color: var(--light);
    margin-bottom: 16px;
}

.cta-content>p {
    color: var(--light-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--secondary), #D97706);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-muted);
    font-size: 14px;
}

.cta-trust span i {
    color: var(--secondary);
}

/* Responsive - New Homepage */
@media (max-width: 992px) {
    .hero-title-new .title-line {
        font-size: 56px;
    }

    .community-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .community-perks {
        display: inline-block;
        text-align: left;
    }

    .community-visual {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .news-grid-new {
        grid-template-columns: 1fr;
    }

    .news-card-featured {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-new {
        padding: 100px 20px 60px;
    }

    .hero-title-new .title-line {
        font-size: 42px;
    }

    .hero-live-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title-new {
        font-size: 28px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title-new .title-line {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== NEW HOMEPAGE V2 STYLES ===== */

/* Hero Section V2 */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 17, 23, 0.6) 0%,
            rgba(13, 17, 23, 0.4) 40%,
            rgba(13, 17, 23, 0.85) 100%);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.server-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #22C55E;
}

.server-badge span:last-child {
    color: #22C55E;
    font-weight: 600;
    font-size: 14px;
}

.hero-text h1 {
    font-family: var(--font-gaming);
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 0 rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.3);
    letter-spacing: 4px;
}

.hero-text .tagline {
    font-size: 22px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-text .desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary), #D97706);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-stats-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 24px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

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

.stat-item>i {
    font-size: 24px;
    color: var(--primary-light);
}

.stat-item.online>i {
    color: #22C55E;
    font-size: 12px;
    animation: pulse 2s infinite;
}

.stat-item .num {
    display: block;
    font-family: var(--font-gaming);
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.stat-item .label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* Platform Section */
.platform-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--darkest) 0%, var(--darker) 100%);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head .badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-head h2 {
    font-family: var(--font-gaming);
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 16px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto 32px;
}

.platform-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
}

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

.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.platform-icon.windows {
    background: rgba(0, 120, 215, 0.15);
    color: #0078D7;
}

.platform-icon.mac {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.platform-icon.android {
    background: rgba(61, 220, 132, 0.15);
    color: #3DDC84;
}

.platform-icon.ios {
    background: rgba(0, 122, 255, 0.15);
    color: #007AFF;
}

.platform-card h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.platform-card p {
    color: var(--text-muted);
    font-size: 13px;
}

.platform-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.platform-note i {
    color: #22C55E;
    font-size: 20px;
}

.platform-note span {
    color: #22C55E;
    font-size: 14px;
    font-weight: 500;
}

/* Features Section V2 */
.features-section-v2 {
    padding: 80px 20px;
    background: var(--darker);
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-icon.gold {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

.feature-icon.purple {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.feature-box h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* How To Play Section */
.howto-section {
    padding: 80px 20px;
    background: var(--darkest);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.step-box {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-box.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), var(--glass-bg));
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming);
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.step-box .step-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto 16px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
}

.step-box h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.step-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.step-link:hover,
.step-link.primary {
    background: var(--primary);
    color: white;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary);
}

/* News Section V2 */
.news-section-v2 {
    padding: 80px 20px;
    background: var(--darker);
}

.news-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.news-main {
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.news-main .news-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    color: #EF4444;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.news-main h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
}

.news-main p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-main .news-date {
    color: var(--text-muted);
    font-size: 13px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.news-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.news-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.news-item-icon.event {
    background: rgba(245, 158, 11, 0.15);
    color: var(--secondary);
}

.news-item-icon.update {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.news-item-icon.tournament {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

.news-item-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.news-item h4 {
    font-size: 15px;
    color: white;
    margin-bottom: 4px;
}

.news-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Discord Section */
.discord-section {
    padding: 60px 20px;
    background: var(--darkest);
}

.discord-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), var(--glass-bg));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
}

.discord-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.discord-logo {
    font-size: 48px;
    color: #5865F2;
}

.discord-info h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 4px;
}

.discord-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #5865F2;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.discord-join-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    color: white;
}

/* CTA Section V2 */
.cta-section-v2 {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.cta-bg-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
}

.cta-bg-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.3), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.2), transparent 50%);
}

.cta-content-v2 {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-v2 h2 {
    font-family: var(--font-gaming);
    font-size: 40px;
    color: white;
    margin-bottom: 16px;
}

.cta-content-v2>p {
    color: var(--light-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--secondary), #D97706);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    color: white;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-muted);
    font-size: 14px;
}

.cta-badges span i {
    color: var(--secondary);
}

/* Responsive V2 */
@media (max-width: 992px) {

    .platform-grid,
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-row {
        grid-template-columns: 1fr;
    }

    .discord-box {
        flex-direction: column;
        text-align: center;
    }

    .discord-info {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-stats-box {
        flex-direction: column;
        gap: 20px;
    }

    .steps-row {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .section-head h2 {
        font-size: 26px;
    }

    .cta-content-v2 h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .platform-grid,
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-play,
    .btn-login {
        width: 100%;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ===== NEW DASHBOARD STYLES ===== */

/* Welcome Banner New */
.welcome-banner-new {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(31, 41, 55, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.welcome-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.vip-badge-large {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid var(--darkest);
}

.welcome-text h1 {
    font-family: var(--font-gaming);
    font-size: 24px;
    color: var(--light);
    margin-bottom: 8px;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.welcome-quick-stats {
    display: flex;
    gap: 16px;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.quick-stat i {
    color: var(--primary-light);
}

.quick-stat.vip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 134, 11, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.quick-stat.vip i {
    color: var(--gold);
}

/* Dashboard Grid New */
.dashboard-grid-new {
    display: grid;
    grid-template-columns: 320px 1fr 320px;
    gap: 24px;
}

.account-snapshot {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0 24px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.snapshot-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.6);
    text-align: center;
}

.snapshot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}

.snapshot-value {
    font-family: var(--font-gaming);
    font-size: 18px;
    color: var(--light);
}

.personal-hub-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
}

.personal-hub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.personal-hub-head .card-title {
    margin-bottom: 0;
}

.personal-hub-subtitle {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.personal-hub-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.personal-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mini-panel {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mini-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--light);
}

.mini-title i {
    color: var(--primary-light);
}

.mini-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.mini-bag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mini-item,
.mini-slot {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.7);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mini-item {
    border-style: solid;
}

.mini-item img,
.mini-item i,
.mini-slot i {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70%;
    height: 70%;
    object-fit: contain;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

.mini-item i,
.mini-slot i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mini-item .mini-count {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 11px;
    color: var(--light);
}

.mini-empty,
.mini-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.6);
    grid-column: 1 / -1;
}

.mini-panel-footer {
    margin-top: auto;
}

.mini-link {
    color: var(--primary-light);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mini-link:hover {
    color: var(--secondary);
}

.mini-pet-card {
    display: flex;
    gap: 14px;
    align-items: center;
}

.mini-pet-avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mini-pet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-pet-avatar i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 22px;
}

.mini-pet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-pet-name {
    font-weight: 600;
    color: var(--light);
}

.mini-pet-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.mini-pet-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-bar {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
}

.mini-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 999px;
}

.mini-bar-fill.alt {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

/* ===== Dashboard Refresh ===== */
.dashboard-page {
    background: #0b1020;
}

.dashboard-page-container {
    padding: 96px 0 70px;
    color: #e2e8f0;
    background: radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.18), transparent 42%),
                radial-gradient(circle at 88% 12%, rgba(167, 139, 250, 0.18), transparent 40%),
                radial-gradient(circle at 70% 85%, rgba(34, 197, 94, 0.12), transparent 45%),
                linear-gradient(180deg, #0b1020 0%, #0a0f1d 55%, #0b1220 100%);
}

.dashboard-page .container.dashboard-wrap {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

.dashboard-page .card-title {
    font-family: var(--font-gaming);
    color: #f8fafc;
}

.dashboard-page .btn-outline {
    border-color: #fbbf24;
    color: #fbbf24;
}

.dashboard-page .btn-outline:hover {
    background: #fbbf24;
    color: #0b1220;
}

.dash-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    padding: 26px;
    border-radius: 22px;
    background: rgba(12, 18, 34, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.65);
    animation: dash-rise 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.dash-hero > * {
    position: relative;
    z-index: 1;
}

.dash-corner-aura {
    position: absolute;
    top: -36px;
    right: -36px;
    width: 140px;
    height: 140px;
    opacity: 0.55;
    filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.35));
    pointer-events: none;
    z-index: 0;
}

.dash-aura-layer,
.dash-aura-inner {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen;
}

.dash-aura-layer {
    animation: dashAuraSpin 10s linear infinite;
    opacity: 0.7;
}

.dash-aura-inner {
    inset: 18%;
    animation: dashAuraSpinReverse 7s linear infinite;
    opacity: 0.85;
}

.hero-profile {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-width: 0;
    width: 100%;
}

.hero-avatar {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #1f2937, #0f172a);
    border: 2px solid rgba(245, 158, 11, 0.65);
    font-size: 34px;
    color: #fbbf24;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.6);
    --avatar-scale: 1;
    --avatar-tx: 0px;
    --avatar-ty: 0px;
    --avatar-frame-w: 250px;
    --avatar-frame-h: 312px;
}

.hero-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-avatar-layers {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--avatar-frame-w);
    height: var(--avatar-frame-h);
    transform: translate(var(--avatar-tx), var(--avatar-ty)) scale(var(--avatar-scale));
    transform-origin: top left;
}

.hero-avatar-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--avatar-frame-w);
    height: var(--avatar-frame-h);
    background-size: auto 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
    max-width: none;
}

.hero-name h1 {
    font-family: var(--font-gaming);
    font-size: 26px;
    letter-spacing: 0.4px;
    margin: 0 0 4px;
    color: #f8fafc;
}

.hero-username {
    font-size: 12px;
    color: #94a3b8;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: start;
    width: 100%;
}

.badge-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    width: 100%;
    max-width: none;
}

.badge-stack .hero-bar {
    width: 100%;
}

.hero-badges-divider {
    display: none;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.05), rgba(148, 163, 184, 0.45), rgba(148, 163, 184, 0.05));
    opacity: 0.6;
}

.badge-stack .level-badge,
.badge-stack .vip-badge {
    width: 100%;
    justify-content: flex-start;
}

.hero-bar {
    background: rgba(15, 23, 42, 0.78);
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, rgba(0,0,0,0) 2px 6px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-bar.level {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35), 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.hero-bar.vip {
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(28, 19, 8, 0.65);
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35), 0 0 12px rgba(245, 158, 11, 0.25);
}

.hero-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(255,255,255,0.15), transparent 45%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-bar.vip::before {
    background: radial-gradient(circle at 15% 0%, rgba(255, 204, 102, 0.35), transparent 55%);
    opacity: 0.55;
}

.hero-bar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #cbd5f5;
    margin-bottom: 5px;
}

.hero-bar-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
}

.hero-bar-title i {
    font-size: 10px;
    opacity: 0.9;
}

.hero-bar-track {
    position: relative;
    height: 10px;
    background: rgba(2, 6, 23, 0.65);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(30, 41, 59, 0.8);
}

.hero-bar-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent 40%);
    opacity: 0.35;
    pointer-events: none;
}

.hero-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8 0%, #22d3ee 55%, #0ea5e9 100%);
    transition: width 0.3s ease;
}

.hero-bar.vip .hero-bar-fill {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
}

.hero-bar-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
    .hero-badges {
        grid-template-columns: 1fr;
    }
    .hero-badges-divider {
        display: block;
        grid-column: 1 / -1;
    }
}

.level-badge,
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 12px;
    color: #e2e8f0;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.4);
}

.level-badge-animated {
    position: relative;
    overflow: hidden;
}

.level-icon-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    overflow: visible;
}

.level-badge-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    --effect-offset-x: 0px;
    --effect-offset-y: 0px;
    transform: translate(calc(-50% + var(--effect-offset-x)), calc(-50% + var(--effect-offset-y)));
    width: auto;
    height: auto;
    max-width: 90px;
    max-height: 90px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 2;
    animation: auraPulse 2.4s ease-in-out infinite;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.35));
}

.level-icon-wrap img#levelIcon {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

.level-badge-animated img:not(.level-badge-effect) {
    position: relative;
    z-index: 1;
}

.level-badge-animated span {
    position: relative;
    z-index: 3;
}

.vip-badge {
    background: rgba(28, 19, 8, 0.7);
}

.level-badge img:not(.level-badge-effect) {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vip-badge img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.vip-badge.off {
    opacity: 0.7;
    filter: grayscale(0.6);
}

.hero-meta {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 12px;
    color: #94a3b8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 220px;
    align-self: start;
}

.hero-actions .btn-play {
    width: 100%;
    text-align: center;
}

.btn-play {
    padding: 14px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #0b1020;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.45);
    color: #0b1020;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: shop-pulse 2s infinite;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.45);
    color: white;
}

.btn-shop i {
    font-size: 16px;
}

@keyframes shop-pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    }
    50% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.55);
    }
}

.hero-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-quick-actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.45);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-quick-actions a:hover {
    border-color: rgba(245, 158, 11, 0.6);
    transform: translateY(-1px);
}

.dash-stats {
    margin: 22px 0 28px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.stat-tile {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.5);
    animation: dash-rise 0.5s ease both;
}

.stat-tile:nth-child(1) { animation-delay: 0.05s; }
.stat-tile:nth-child(2) { animation-delay: 0.1s; }
.stat-tile:nth-child(3) { animation-delay: 0.15s; }
.stat-tile:nth-child(4) { animation-delay: 0.2s; }
.stat-tile:nth-child(5) { animation-delay: 0.25s; }
.stat-tile:nth-child(6) { animation-delay: 0.3s; }

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: var(--font-gaming);
    font-size: 18px;
    color: #f8fafc;
}

.dash-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 24px;
}

.dash-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.personal-hub-card,
.account-actions-card,
.ranking-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.55);
}

.personal-hub-card {
    animation: dash-rise 0.55s ease 0.08s both;
}

.account-actions-card {
    animation: dash-rise 0.55s ease 0.16s both;
}

.ranking-card {
    animation: dash-rise 0.55s ease 0.12s both;
}

.personal-hub-subtitle {
    color: #94a3b8;
}

.mini-panel {
    background: rgba(11, 18, 32, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 16px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-title {
    color: #e2e8f0;
}

.mini-title i {
    color: #fbbf24;
}

.mini-meta {
    color: #94a3b8;
}

.mini-item,
.mini-slot {
    background: rgba(15, 23, 42, 0.85);
    border: 1px dashed rgba(148, 163, 184, 0.25);
}

.mini-item img,
.mini-item i,
.mini-slot i {
    color: rgba(226, 232, 240, 0.6);
    filter: drop-shadow(0 2px 4px rgba(2, 6, 23, 0.4));
}

.mini-item .mini-count {
    background: rgba(2, 6, 23, 0.85);
    color: #ffffff;
}

.mini-empty,
.mini-loading {
    background: rgba(15, 23, 42, 0.7);
    color: #94a3b8;
    border: 1px dashed rgba(148, 163, 184, 0.2);
}

.mini-link {
    color: #fbbf24;
}

.mini-link:hover {
    color: #f59e0b;
}

.mini-pet-avatar {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.mini-pet-avatar i {
    color: rgba(226, 232, 240, 0.6);
}

.mini-pet-name {
    color: #f8fafc;
}

.mini-pet-meta,
.mini-bar {
    color: #94a3b8;
}

.mini-bar-track {
    background: rgba(148, 163, 184, 0.2);
}

.account-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.account-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.85);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.account-action:hover {
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-1px);
}

.ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ranking-sub {
    font-size: 12px;
    color: #94a3b8;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.ranking-item.top {
    border-color: rgba(245, 158, 11, 0.6);
    background: rgba(32, 22, 10, 0.8);
}

.rank {
    font-family: var(--font-gaming);
    font-size: 14px;
    color: #fbbf24;
}

.rank-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rank-name {
    font-weight: 600;
    color: #f8fafc;
}

.rank-meta {
    font-size: 12px;
    color: #94a3b8;
}

.rank-score {
    font-weight: 700;
    color: #34d399;
}

.ranking-empty,
.ranking-footer {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.7);
    color: #94a3b8;
    font-size: 12px;
}

@keyframes dash-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes auraPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.9; }
}

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

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

@media (max-width: 1200px) {
    .dash-content {
        grid-template-columns: 1fr;
    }

    .dash-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .dash-hero {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        min-width: 0;
        width: 100%;
    }

    .hero-quick-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-profile {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
    }

    .hero-avatar {
        width: 84px;
        height: 84px;
        border-radius: 18px;
    }

    .dash-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        align-items: stretch;
    }

    .hero-quick-actions {
        grid-template-columns: 1fr;
    }
}

/* Profile Card */
.profile-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.vip-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

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

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

.profile-info h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 4px;
}

.profile-username {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.vip-badge-large-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold), #B8860B);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.profile-stats .stat-item {
    text-align: center;
}

.profile-stats .stat-value {
    display: block;
    font-family: var(--font-gaming);
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
}

.profile-stats .stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.profile-actions {
    display: flex;
    gap: 12px;
}

.profile-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Quick Menu Card */
.quick-menu-card,
.downloads-card,
.announcements-card,
.ranking-card,
.social-card,
.quick-links-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
}

.card-title i {
    color: var(--primary-light);
}

.view-all {
    margin-left: auto;
    font-size: 12px;
    color: var(--primary-light);
}

.quick-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-menu-item:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateX(5px);
}

.quick-menu-item i:first-child {
    color: var(--primary-light);
    width: 20px;
}

.quick-menu-item span {
    flex: 1;
    font-size: 14px;
}

.quick-menu-item i:last-child {
    color: var(--text-muted);
    font-size: 12px;
}

/* Downloads */
.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.download-btn>i:first-child {
    font-size: 24px;
    color: var(--primary-light);
}

.download-info {
    flex: 1;
}

.download-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.download-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Play Card Main */
.play-card-main {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(31, 41, 55, 0.9));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 24px;
    overflow: hidden;
    text-align: center;
}

.play-card-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/bg/game_bg2.png') center/cover;
    opacity: 0.3;
}

.play-card-content {
    position: relative;
    z-index: 1;
}

.play-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

.play-card-content h2 {
    font-family: var(--font-gaming);
    font-size: 28px;
    color: var(--light);
    margin-bottom: 12px;
}

.play-card-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
}

.btn-play-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--secondary), #D97706);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-play-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
    color: white;
}

/* Server Status Card */
.server-status-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.server-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.server-status-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
}

.server-status-header h3 i {
    color: var(--primary-light);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.online {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.server-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.server-item-large {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.server-item-large:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateX(5px);
}

.server-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #22C55E;
}

.server-info {
    flex: 1;
}

.server-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.server-status-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.status-dot.online {
    background: #22C55E;
    box-shadow: 0 0 10px #22C55E;
    animation: pulse 2s infinite;
}

.server-action {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.server-item-large:hover .server-action {
    color: var(--primary-light);
}

/* Daily Tasks */
.daily-tasks-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.badge-coming {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 20px;
    font-size: 11px;
    color: var(--secondary);
}

.tasks-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.tasks-placeholder i {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-light);
    opacity: 0.5;
}

/* Announcements */
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.announcement-item {
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.announcement-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.announcement-badge.announcement {
    background: var(--primary);
    color: white;
}

.announcement-badge.event {
    background: var(--secondary);
    color: white;
}

.announcement-badge.update {
    background: var(--accent);
    color: white;
}

.announcement-item p {
    font-size: 14px;
    color: var(--light);
    margin-bottom: 8px;
}

.announcement-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Ranking */
.ranking-list-placeholder {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.ranking-item.top {
    background: rgba(124, 58, 237, 0.1);
}

.ranking-item .rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-family: var(--font-gaming);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.ranking-item.top .rank {
    background: var(--gold);
    color: var(--darkest);
}

.ranking-item .name {
    flex: 1;
    font-size: 14px;
    color: var(--light);
}

.ranking-item .score {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn-large:hover {
    transform: translateY(-3px);
}

.social-btn-large.discord {
    background: rgba(88, 101, 242, 0.15);
}

.social-btn-large.discord:hover {
    background: #5865F2;
}

.social-btn-large.facebook {
    background: rgba(24, 119, 242, 0.15);
}

.social-btn-large.facebook:hover {
    background: #1877F2;
}

.social-btn-large.youtube {
    background: rgba(255, 0, 0, 0.15);
}

.social-btn-large.youtube:hover {
    background: #FF0000;
}

.social-btn-large i {
    font-size: 24px;
}

.social-btn-large span {
    font-size: 11px;
}

/* Quick Links */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateX(5px);
}

.quick-link i {
    color: var(--primary-light);
    width: 20px;
}

/* Dashboard Responsive */
@media (max-width: 1200px) {
    .dashboard-grid-new {
        grid-template-columns: 280px 1fr;
    }

    .account-snapshot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .dashboard-right>div {
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .dashboard-grid-new {
        grid-template-columns: 1fr;
    }

    .account-snapshot {
        grid-template-columns: 1fr;
    }

    .personal-hub-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .personal-hub-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-left,
    .dashboard-right {
        grid-column: 1;
    }

    .dashboard-right {
        grid-template-columns: 1fr;
    }

    .welcome-banner-new {
        flex-direction: column;
        text-align: center;
    }

    .welcome-content {
        flex-direction: column;
    }
}

/* ===== NEW FOOTER STYLES ===== */
/* ===== FOOTER NEW - Redesigned ===== */
.footer-new {
    background: linear-gradient(180deg, var(--darkest) 0%, rgba(10, 10, 20, 1) 100%);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-main {
    padding: 70px 24px 50px;
}

.footer-new .footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-new .footer-brand {
    max-width: 320px;
}

.footer-new .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-new .footer-logo:hover {
    transform: scale(1.02);
}

.footer-new .footer-logo img {
    height: 48px;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
    transition: filter 0.3s ease;
}

.footer-new .footer-logo:hover img {
    filter: drop-shadow(0 6px 16px rgba(124, 58, 237, 0.5));
}

.footer-new .footer-logo span {
    font-family: var(--font-gaming);
    font-size: 22px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
}

.footer-new .footer-logo span .accent {
    color: var(--primary-light);
}

.footer-new .footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-new .footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-new .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 17px;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-new .social-link:hover {
    transform: translateY(-4px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-new .social-link.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.footer-new .social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.footer-new .social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.footer-new .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.footer-new .social-link.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.footer-new .footer-column {
    min-width: 0;
}

.footer-new .footer-column h4,
.footer-new .footer-title {
    font-family: var(--font-gaming);
    font-size: 15px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-new .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new .footer-links li {
    margin-bottom: 14px;
}

.footer-new .footer-links li:last-child {
    margin-bottom: 0;
}

.footer-new .footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-new .footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-light);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: width 0.25s ease;
}

.footer-new .footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-new .footer-links a:hover::before {
    width: 100%;
}

.footer-new .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new .footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-new .footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-new .footer-contact li i {
    color: var(--primary-light);
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.footer-new .footer-contact a {
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.footer-new .footer-contact a:hover {
    color: var(--primary-light);
}

.footer-new .discord-widget-mini {
    margin-top: 20px;
    padding: 16px;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.footer-new .discord-widget-mini:hover {
    background: rgba(88, 101, 242, 0.12);
    border-color: rgba(88, 101, 242, 0.4);
}

.footer-new .discord-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--light);
    margin-bottom: 12px;
}

.footer-new .discord-widget-header i {
    color: #5865F2;
    font-size: 18px;
}

.footer-new .discord-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: #5865F2;
    border-radius: 10px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-new .discord-widget-btn:hover {
    background: #4752C4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}

/* Footer Bottom Bar */
.footer-bottom-new {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-new .copyright {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-new .copyright i {
    color: var(--primary-light);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
        font-size: 16px;
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main {
        padding: 60px 20px 45px;
    }

    .footer-new .footer-content {
        grid-template-columns: 1.4fr repeat(4, 1fr);
        gap: 30px;
    }

    .footer-new .footer-brand {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 50px 20px 40px;
    }

    .footer-new .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-new .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-new .footer-description {
        max-width: 480px;
    }

    .footer-new .footer-logo {
        justify-content: center;
    }

    .footer-new .footer-social {
        justify-content: center;
    }

    .footer-new .footer-column h4::after,
    .footer-new .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-new .footer-column {
        text-align: center;
    }

    .footer-new .footer-links a::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-new .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-new .footer-contact li {
        justify-content: center;
    }

    .footer-new .discord-widget-mini {
        max-width: 280px;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 45px 16px 35px;
    }

    .footer-new .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 24px;
    }

    .footer-new .footer-column h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-new .footer-links li {
        margin-bottom: 12px;
    }

    .footer-new .footer-links a {
        font-size: 13px;
    }

    .footer-new .discord-widget-mini {
        display: none;
    }

    .footer-bottom-new {
        padding: 18px 16px;
    }

    .footer-bottom-links a {
        padding: 4px 8px;
        font-size: 11px;
    }

    .footer-bottom-links .separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 40px 16px 30px;
    }

    .footer-new .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-new .footer-logo img {
        height: 42px;
    }

    .footer-new .footer-logo span {
        font-size: 20px;
    }

    .footer-new .footer-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .footer-new .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-new .footer-column h4::after,
    .footer-new .footer-title::after {
        width: 24px;
    }

    .footer-new .discord-widget-mini {
        display: block;
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-new .copyright {
        font-size: 12px;
        justify-content: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .footer-bottom-links a {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    height: 60px;
    margin-bottom: 24px;
    animation: bounce 1s infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== NAVBAR UPDATES - Redesigned ===== */
.navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 12, 18, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar-logo-text {
    font-family: var(--font-gaming);
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
}

.navbar-logo-text span {
    color: var(--primary-light);
}

/* User Dropdown */
.navbar-user-dropdown {
    position: relative;
}

.navbar-user-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.25s ease;
}

.navbar-user-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 58, 237, 0.4);
}

.navbar-user-toggle[aria-expanded="true"] {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.navbar-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.vip-crown {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: #1a1a2e;
    border: 2px solid var(--darkest);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.navbar-user-name {
    font-size: 13px;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-user-badge {
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-user-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
}

.navbar-user-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.navbar-user-toggle[aria-expanded="true"] .navbar-user-arrow {
    transform: rotate(180deg);
}

/* User Menu Dropdown */
.navbar-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.2s ease;
    z-index: 1000;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.navbar-user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.user-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.user-menu-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

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

.user-menu-info strong {
    display: block;
    color: var(--light);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-info span {
    color: var(--text-muted);
    font-size: 12px;
}

.user-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 8px;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.user-menu-item:hover {
    background: rgba(124, 58, 237, 0.12);
    transform: translateX(2px);
}

.user-menu-item i {
    color: var(--primary-light);
    width: 18px;
    font-size: 14px;
    text-align: center;
}

.user-menu-item.logout {
    color: #F87171;
    margin-top: 4px;
}

.user-menu-item.logout:hover {
    background: rgba(239, 68, 68, 0.12);
}

.user-menu-item.logout i {
    color: #F87171;
}

/* Highlight / Shop Button */
.nav-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 14px !important;
    margin: 0 2px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    transition: all 0.25s ease !important;
}

.nav-highlight:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4) !important;
}

.nav-highlight::after {
    display: none !important;
}

.user-menu-item.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    border-radius: 8px;
    margin: 4px 0;
    font-weight: 500;
}

.user-menu-item.highlight:hover {
    opacity: 0.92;
    transform: translateX(2px);
}

.user-menu-item.highlight i {
    color: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.99) 0%, rgba(10, 12, 18, 0.99) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #F87171;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 4px;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    min-height: 48px;
    color: var(--light);
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(124, 58, 237, 0.12);
}

.mobile-menu-list a.active {
    background: rgba(124, 58, 237, 0.18);
    color: var(--primary-light);
}

.mobile-menu-list a i {
    color: var(--primary-light);
    width: 22px;
    font-size: 16px;
    text-align: center;
}

.mobile-menu-list a.nav-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    margin: 8px 0;
}

.mobile-menu-list a.nav-highlight i {
    color: white;
}

.mobile-menu-list a.highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.mobile-menu-list a.highlight i {
    color: var(--primary-light);
}

.mobile-menu-list a.logout {
    color: #F87171;
}

.mobile-menu-list a.logout:hover {
    background: rgba(239, 68, 68, 0.12);
}

.mobile-menu-list a.logout i {
    color: #F87171;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 16px 0;
}

.mobile-menu-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

/* Server Status Section */
.server-status-section {
    padding: 60px 20px;
    background: var(--darker);
}

.server-status-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    flex-wrap: wrap;
}

.server-status-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.server-status-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #22C55E;
}

.server-status-info h3 {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 8px;
}

.server-status-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.server-status-actions {
    display: flex;
    gap: 12px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-gaming);
    font-size: 36px;
    color: var(--light);
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.cta-buttons {
    margin-bottom: 32px;
}

.btn-xl {
    padding: 18px 48px;
    font-size: 18px;
}

.cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-social span {
    color: var(--text-muted);
    font-size: 14px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.social-btn.discord {
    background: #5865F2;
}

.social-btn.discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-3px);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .server-status-container {
        flex-direction: column;
        text-align: center;
    }

    .server-status-content {
        flex-direction: column;
    }

    .server-status-actions {
        width: 100%;
        justify-content: center;
    }

    .cta-social {
        flex-wrap: wrap;
    }
}

/* Navbar Tablet */
@media (max-width: 992px) {
    .navbar-menu {
        gap: 20px;
    }

    .navbar-menu a {
        font-size: 13px;
    }

    .nav-highlight {
        padding: 6px 12px !important;
        font-size: 13px;
    }
}

/* Navbar Mobile */
@media (max-width: 768px) {
    .navbar-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .navbar-actions .btn span {
        display: none;
    }

    .navbar-actions .btn i {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .navbar-user-info {
        display: none;
    }

    .navbar-user-toggle {
        padding: 4px 10px 4px 4px;
        gap: 6px;
    }

    .navbar-user-avatar {
        width: 34px;
        height: 34px;
    }

    .navbar-user-arrow {
        display: none;
    }

    .navbar-logo img {
        height: 38px;
    }
}

/* ===== BOMBOM HERO SECTION - CANLI TEMA ===== */

.hero-bombom {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    overflow: hidden;
    background: linear-gradient(180deg,
            #87CEEB 0%,
            #98D8E8 30%,
            #B8E6F0 50%,
            #90EE90 85%,
            #7FCD7F 100%);
}

/* Sky Background with Clouds Effect */
.hero-bombom-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 30%);
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(135, 206, 235, 0.9) 0%,
            rgba(176, 224, 230, 0.7) 40%,
            rgba(144, 238, 144, 0.5) 80%,
            rgba(127, 205, 127, 0.8) 100%);
}

.bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.3), transparent 70%);
    filter: blur(60px);
}

/* Floating Game Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: floatAround 15s ease-in-out infinite;
}

.float-item.tank-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-item.tank-2 {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    font-size: 50px;
}

.float-item.tank-3 {
    top: 60%;
    left: 15%;
    animation-delay: -6s;
}

.float-item.tank-4 {
    top: 70%;
    right: 10%;
    animation-delay: -9s;
    font-size: 35px;
}

@keyframes floatAround {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Content Container */
.hero-bombom-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

/* Server Badge */
.server-badge-bombom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #22C55E;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #22C55E;
}

.server-badge-bombom span:last-child {
    color: #166534;
    font-weight: 700;
    font-size: 14px;
}

/* Logo */
.hero-logo-bombom {
    margin-bottom: 20px;
}

.hero-logo-bombom img {
    height: 100px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.hero-title-bombom {
    margin-bottom: 16px;
}

.hero-title-bombom .title-line {
    display: block;
    font-family: var(--font-gaming);
    font-size: 72px;
    font-weight: 900;
    color: #1E3A5F;
    text-shadow:
        0 4px 0 #fff,
        0 6px 0 rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 8px;
    line-height: 1.1;
}

.hero-title-bombom .title-line.accent {
    background: linear-gradient(180deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

/* Tagline */
.hero-tagline-bombom {
    font-size: 26px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Description */
.hero-desc-bombom {
    font-size: 18px;
    color: #2D4A6F;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Buttons */
.hero-buttons-bombom {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-bombom-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 8px 0 #D97706,
        0 12px 30px rgba(245, 158, 11, 0.5);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-bombom-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 11px 0 #D97706,
        0 16px 40px rgba(245, 158, 11, 0.6);
    color: white;
}

.btn-bombom-primary:active {
    transform: translateY(4px);
    box-shadow:
        0 4px 0 #D97706,
        0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-bombom-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(180deg, #4F46E5 0%, #7C3AED 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 8px 0 #5B21B6,
        0 12px 30px rgba(124, 58, 237, 0.5);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-bombom-secondary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 11px 0 #5B21B6,
        0 16px 40px rgba(124, 58, 237, 0.6);
    color: white;
}

.btn-bombom-secondary:active {
    transform: translateY(4px);
    box-shadow:
        0 4px 0 #5B21B6,
        0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Stats Bar */
.stats-bar-bombom {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 24px 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #FFD23F;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-box i {
    font-size: 28px;
    color: #F7931E;
}

.stat-text {
    text-align: left;
}

.stat-text strong {
    display: block;
    font-family: var(--font-gaming);
    font-size: 24px;
    font-weight: 800;
    color: #1E3A5F;
}

.stat-text span {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.stats-bar-bombom .stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #E2E8F0, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-bombom {
        padding: 120px 20px 60px;
    }

    .hero-title-bombom .title-line {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero-tagline-bombom {
        font-size: 20px;
    }

    .hero-desc-bombom {
        font-size: 16px;
    }

    .hero-buttons-bombom {
        flex-direction: column;
        align-items: center;
    }

    .btn-bombom-primary,
    .btn-bombom-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .stats-bar-bombom {
        flex-direction: column;
        gap: 20px;
        padding: 24px 32px;
    }

    .stats-bar-bombom .stat-divider {
        width: 100%;
        height: 2px;
    }

    .float-item {
        font-size: 24px;
    }

    .float-item.tank-2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title-bombom .title-line {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-logo-bombom img {
        height: 70px;
    }
}

/* ===== KOMPAKT ANASAYFA TASARIMI ===== */

.homepage-compact {
    background: #f0f4f8;
}

/* HERO COMPACT */
.hero-compact {
    position: relative;
    min-height: 500px;
    background: linear-gradient(180deg,
            #87CEEB 0%,
            #B0E0E6 60%,
            #90EE90 100%);
    padding: 100px 20px 40px;
    overflow: hidden;
}

/* Bulut Animasyonları */
.hero-bg-clouds {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    animation: floatCloud 20s infinite ease-in-out;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: -200px;
    animation-duration: 25s;
}

.cloud-2 {
    width: 150px;
    height: 50px;
    top: 30%;
    right: -150px;
    animation: floatCloudReverse 30s infinite ease-in-out;
}

.cloud-3 {
    width: 180px;
    height: 55px;
    top: 60%;
    left: -180px;
    animation-duration: 35s;
    animation-delay: 5s;
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

@keyframes floatCloudReverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100vw - 200px));
    }
}

.hero-compact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero-left {
    flex: 1;
}

.server-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: #166534;
}

.status-dot-online {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #22C55E;
}

.main-title {
    font-family: var(--font-gaming);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.title-white {
    display: block;
    color: #FFFFFF;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.title-orange {
    display: block;
    background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.tagline {
    font-size: 20px;
    color: #1E3A5F;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-play-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow:
        0 6px 0 #D97706,
        0 8px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-play-now:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #D97706,
        0 12px 25px rgba(245, 158, 11, 0.5);
    color: white;
}

.btn-play-now:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #D97706;
}

.btn-login-small {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: white;
    border: 2px solid #4F46E5;
    border-radius: 12px;
    color: #4F46E5;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-login-small:hover {
    background: #4F46E5;
    color: white;
}

/* Hero Right - Character */
.hero-right {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-showcase {
    position: relative;
    width: 250px;
    height: 250px;
}

.char-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 60px rgba(255, 255, 255, 0.3);
    animation: floatChar 3s ease-in-out infinite;
}

@keyframes floatChar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.char-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: #FF6B35;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* QUICK STATS BAR */
.quick-stats-bar {
    background: linear-gradient(90deg, #1E3A5F 0%, #2D4A6F 100%);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.container-stats {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.stat-item-compact i {
    font-size: 24px;
    color: #FFD93D;
}

.stat-number {
    font-family: var(--font-gaming);
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
}

.stat-divider-v {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* FEATURES COMPACT */
.features-compact {
    padding: 60px 20px;
    background: white;
}

.container-compact {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title-compact {
    font-family: var(--font-gaming);
    font-size: 28px;
    color: #1E3A5F;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-title-compact i {
    color: #FF6B35;
}

.section-title-compact.light {
    color: white;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box-compact {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box-compact:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-box-compact h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 6px;
}

.feature-box-compact p {
    font-size: 13px;
    color: #64748B;
}

/* HOW TO PLAY COMPACT */
.howtoplay-compact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.howtoplay-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    color: white;
    flex: 0 0 200px;
}

.step-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming);
    font-size: 20px;
    font-weight: 700;
    color: #764ba2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-icon-step {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-item p {
    font-size: 13px;
    opacity: 0.9;
}

.step-arrow-h {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.step-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-start-journey {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #FFD93D;
    border: none;
    border-radius: 12px;
    color: #1E3A5F;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 0 #F6AD55, 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-start-journey:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #F6AD55, 0 15px 35px rgba(0, 0, 0, 0.25);
    color: #1E3A5F;
}

.btn-start-journey:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #F6AD55;
}

/* LINKS COMPACT */
.links-compact {
    padding: 60px 20px;
    background: #f0f4f8;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.link-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.link-icon-big {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.download-card .link-icon-big {
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    color: white;
}

.guide-card .link-icon-big {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    color: white;
}

.discord-card .link-icon-big {
    background: #5865F2;
    color: white;
}

.link-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 8px;
}

.link-card p {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 20px;
}

.btn-download,
.btn-guide,
.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-download {
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    color: white;
}

.btn-guide {
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    color: white;
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-download:hover,
.btn-guide:hover,
.btn-discord:hover {
    transform: scale(1.05);
    color: white;
}

/* FOOTER COMPACT */
.footer-compact {
    background: #1E3A5F;
    padding: 40px 20px 20px;
}

.footer-content-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-brand-compact img {
    height: 40px;
}

.footer-brand-compact span {
    font-family: var(--font-gaming);
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-links-compact {
    display: flex;
    gap: 24px;
}

.footer-links-compact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-compact a:hover {
    color: #FFD93D;
}

.footer-social-compact {
    display: flex;
    gap: 12px;
}

.footer-social-compact a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 18px;
    transition: all 0.2s;
}

.footer-social-compact a:hover {
    background: #FFD93D;
    color: #1E3A5F;
    transform: translateY(-3px);
}

.footer-bottom-compact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-compact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-compact-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .main-title {
        font-size: 48px;
    }

    .features-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-horizontal {
        flex-direction: column;
    }

    .step-arrow-h {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .container-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider-v {
        display: none;
    }

    .features-grid-compact {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 42px;
    }

    .footer-content-compact {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-compact {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }

    .btn-play-now,
    .btn-login-small {
        width: 100%;
        justify-content: center;
    }

    .character-showcase {
        width: 180px;
        height: 180px;
    }

    .char-icon {
        font-size: 70px;
    }
}
