/* ============================================================
   PUBLIC SITE CSS - CS 1.6 Gaming Community
   Dark theme with neon cyan/green accents
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #060609;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2a;
    --bg-input: #0e0e18;
    --accent: #00f0ff;
    --accent-dim: #00a0aa;
    --accent-green: #00ff88;
    --accent-green-dim: #00b060;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --accent-bronze: #cd7f32;
    --accent-red: #ff4757;
    --accent-purple: #a855f7;
    --text: #e8e8f0;
    --text-dim: #7a7a8e;
    --text-muted: #4a4a5e;
    --border: #1e1e30;
    --border-light: #2a2a40;
    --shadow: rgba(0, 0, 0, 0.5);
    --font-main: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Consolas', 'Fira Code', 'Courier New', monospace;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #66f7ff;
}

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

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 40px;
}

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

.text-green {
    color: var(--accent-green);
}

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

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

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 30, 48, 0.6);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.97);
    box-shadow: 0 2px 20px rgba(0, 240, 255, 0.05);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--accent);
}

.navbar-brand img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.navbar-brand .brand-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(0, 240, 255, 0.06);
}

.nav-links a.active {
    color: var(--accent);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 6px;
    transition: background var(--transition);
}

.nav-user:hover {
    background: rgba(255, 255, 255, 0.05);
}

.nav-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
}

/* Mobile hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1520 50%, #0a0a0f 100%);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 255, 136, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.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-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* Background grid lines decoration */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent), #00c8d4);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25), 0 0 40px rgba(0, 240, 255, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline-glow {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-outline-glow:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
    color: var(--accent);
}

.btn-connect {
    background: linear-gradient(135deg, var(--accent-green), #00d470);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-connect:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.35);
    transform: translateY(-2px);
    color: #000;
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #e8384a);
    color: #fff;
}

.btn-danger:hover {
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    color: var(--text);
    border-color: var(--border-light);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
}

/* --- Flash / Alert Messages --- */
.flash-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 90%;
    max-width: 500px;
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid;
}

.alert-success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    border-color: rgba(0, 255, 136, 0.2);
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    color: var(--accent-red);
    border-color: rgba(255, 71, 87, 0.2);
}

.alert-warning {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border-color: rgba(255, 215, 0, 0.2);
}

.alert-info {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    border-color: rgba(0, 240, 255, 0.2);
}

.alert .close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
    padding: 0 4px;
}

.alert .close-btn:hover {
    opacity: 1;
}

/* --- Server Status Cards --- */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.srv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    transition: background var(--transition);
}

.srv-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.srv-online::before {
    background: linear-gradient(90deg, var(--accent-green), var(--accent));
}

.srv-offline::before {
    background: var(--accent-red);
}

.srv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.srv-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.srv-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.srv-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.srv-online .srv-status-dot {
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green), 0 0 16px rgba(0, 255, 136, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

.srv-offline .srv-status-dot {
    background: var(--accent-red);
    box-shadow: 0 0 4px rgba(255, 71, 87, 0.3);
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 8px var(--accent-green), 0 0 16px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 12px var(--accent-green), 0 0 24px rgba(0, 255, 136, 0.5); }
}

.srv-online .srv-status-label {
    color: var(--accent-green);
}

.srv-offline .srv-status-label {
    color: var(--accent-red);
}

.srv-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.srv-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.srv-info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.srv-info-value {
    font-size: 0.9rem;
    color: var(--text);
    font-family: var(--font-mono);
}

.srv-players-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-dark);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.srv-players-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent));
    transition: width 0.5s ease;
}

.srv-players-count {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.srv-card-actions {
    display: flex;
    gap: 10px;
}

/* Large server card variant (for server detail page) */
.srv-card-lg {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.srv-card-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.srv-card-lg.srv-online::before {
    background: linear-gradient(90deg, var(--accent-green), var(--accent));
}

.srv-card-lg.srv-offline::before {
    background: var(--accent-red);
}

/* --- Rankings Table --- */
.ranking-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ranking-table thead {
    background: var(--bg-card);
}

.ranking-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.ranking-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(30, 30, 48, 0.4);
    white-space: nowrap;
}

.ranking-table tbody tr {
    background: var(--bg-dark);
    transition: background var(--transition);
}

.ranking-table tbody tr:hover {
    background: var(--bg-card);
}

/* Top 3 highlights */
.ranking-table tbody tr.top-1 {
    background: rgba(255, 215, 0, 0.04);
    border-left: 3px solid var(--accent-gold);
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.03);
}

.ranking-table tbody tr.top-1:hover {
    background: rgba(255, 215, 0, 0.08);
}

.ranking-table tbody tr.top-1 td:first-child {
    color: var(--accent-gold);
    font-weight: 700;
}

.ranking-table tbody tr.top-2 {
    background: rgba(192, 192, 192, 0.03);
    border-left: 3px solid var(--accent-silver);
}

.ranking-table tbody tr.top-2:hover {
    background: rgba(192, 192, 192, 0.06);
}

.ranking-table tbody tr.top-2 td:first-child {
    color: var(--accent-silver);
    font-weight: 700;
}

.ranking-table tbody tr.top-3 {
    background: rgba(205, 127, 50, 0.03);
    border-left: 3px solid var(--accent-bronze);
}

.ranking-table tbody tr.top-3:hover {
    background: rgba(205, 127, 50, 0.06);
}

.ranking-table tbody tr.top-3 td:first-child {
    color: var(--accent-bronze);
    font-weight: 700;
}

.rank-pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.top-1 .rank-pos {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

.top-2 .rank-pos {
    background: rgba(192, 192, 192, 0.15);
    color: var(--accent-silver);
}

.top-3 .rank-pos {
    background: rgba(205, 127, 50, 0.15);
    color: var(--accent-bronze);
}

.rank-player {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank-player img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.rank-player-name {
    font-weight: 600;
    color: var(--text);
}

.rank-kd {
    font-family: var(--font-mono);
    font-weight: 600;
}

.kd-positive {
    color: var(--accent-green);
}

.kd-negative {
    color: var(--accent-red);
}

/* --- Player Profile --- */
.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-green));
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    flex-shrink: 0;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.stat-box:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent);
    line-height: 1.2;
}

.stat-box.stat-green .stat-num {
    color: var(--accent-green);
}

.stat-box.stat-gold .stat-num {
    color: var(--accent-gold);
}

.stat-box.stat-red .stat-num {
    color: var(--accent-red);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* --- Achievements --- */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.achievement-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.achievement-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.achievement-info p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.achievement-rarity {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* Rarity: Common */
.rarity-common {
    border-color: #3a3a4e;
}

.rarity-common .achievement-icon {
    background: rgba(120, 120, 140, 0.15);
    color: #8a8a9e;
}

.rarity-common .achievement-rarity {
    color: #8a8a9e;
}

/* Rarity: Rare */
.rarity-rare {
    border-color: rgba(56, 140, 255, 0.3);
    box-shadow: 0 0 15px rgba(56, 140, 255, 0.05);
}

.rarity-rare .achievement-icon {
    background: rgba(56, 140, 255, 0.15);
    color: #388cff;
}

.rarity-rare .achievement-rarity {
    color: #388cff;
}

/* Rarity: Epic */
.rarity-epic {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.08);
}

.rarity-epic .achievement-icon {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-purple);
}

.rarity-epic .achievement-rarity {
    color: var(--accent-purple);
}

/* Rarity: Legendary */
.rarity-legendary {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
    animation: legendary-glow 3s ease-in-out infinite;
}

.rarity-legendary .achievement-icon {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
}

.rarity-legendary .achievement-rarity {
    color: var(--accent-gold);
}

@keyframes legendary-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.06);
        border-color: rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.12);
        border-color: rgba(255, 215, 0, 0.5);
    }
}

/* Locked achievement */
.achievement-card.locked {
    opacity: 0.45;
    filter: grayscale(0.5);
}

.achievement-card.locked:hover {
    transform: none;
    box-shadow: none;
}

/* --- VIP Store --- */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.tier-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tier-card-price {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.tier-card-period {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.tier-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.tier-card-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(30, 30, 48, 0.4);
}

.tier-card-features li:last-child {
    border-bottom: none;
}

.tier-card-features li .check {
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Silver Tier */
.tier-silver {
    border-color: rgba(192, 192, 192, 0.2);
}

.tier-silver .tier-card-name {
    color: var(--accent-silver);
}

.tier-silver .tier-card-price {
    color: var(--accent-silver);
}

.tier-silver:hover {
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.05);
}

/* Gold Tier */
.tier-gold {
    border-color: rgba(255, 215, 0, 0.2);
}

.tier-gold .tier-card-name {
    color: var(--accent-gold);
}

.tier-gold .tier-card-price {
    color: var(--accent-gold);
}

.tier-gold:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.06);
}

/* Platinum Tier - Featured / Most Popular */
.tier-platinum {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.08);
    transform: scale(1.03);
    z-index: 1;
}

.tier-platinum:hover {
    transform: scale(1.03) translateY(-4px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}

.tier-platinum .tier-card-name {
    color: var(--accent-purple);
}

.tier-platinum .tier-card-price {
    color: var(--accent-purple);
}

.tier-popular-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), #c084fc);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 0 0 8px 8px;
}

/* Permanent Tier */
.tier-permanent {
    border-color: rgba(255, 71, 87, 0.25);
}

.tier-permanent .tier-card-name {
    color: var(--accent-red);
}

.tier-permanent .tier-card-price {
    color: var(--accent-red);
}

.tier-permanent:hover {
    border-color: rgba(255, 71, 87, 0.45);
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.08);
}

/* VIP Badges (pill badges in profiles / rankings) */
.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    border: 1px solid;
    white-space: nowrap;
}

.vip-silver {
    color: var(--accent-silver);
    border-color: rgba(192, 192, 192, 0.3);
    background: rgba(192, 192, 192, 0.08);
}

.vip-gold {
    color: var(--accent-gold);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.08);
}

.vip-platinum {
    color: var(--accent-purple);
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.08);
}

.vip-permanent {
    color: var(--accent-red);
    border-color: rgba(255, 71, 87, 0.3);
    background: rgba(255, 71, 87, 0.08);
}

/* --- Checkout / Forms --- */
.checkout-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--accent-red);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a7a8e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error {
    font-size: 0.8rem;
    color: var(--accent-red);
    margin-top: 6px;
}

/* Order summary card (checkout sidebar) */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 88px;
}

.order-summary h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.order-line-label {
    color: var(--text-dim);
}

.order-line-value {
    font-weight: 600;
    font-family: var(--font-mono);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 700;
}

.order-total-price {
    color: var(--accent-green);
    font-size: 1.35rem;
    font-family: var(--font-mono);
}

/* --- Filter Tabs / Buttons --- */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-dim);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    color: var(--text);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.filter-btn.active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.08);
}

/* Tab-style filters */
.tab-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-dim);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

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

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition);
}

.pagination a {
    color: var(--text-dim);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.pagination a:hover {
    color: var(--text);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.pagination .active {
    color: #000;
    background: var(--accent);
    border: 1px solid var(--accent);
    font-weight: 700;
}

.pagination .disabled {
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination .ellipsis {
    color: var(--text-muted);
    border: none;
    background: none;
}

/* --- Cards (generic) --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border-light);
}

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

.card-header h2,
.card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- Footer --- */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 60px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.footer-brand .brand-accent {
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: all var(--transition);
    font-size: 1rem;
}

.footer-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.06);
}

/* --- Empty States --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 8px;
}

.empty-state p {
    max-width: 400px;
    margin: 0 auto 20px;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --- Selection --- */
::selection {
    background: rgba(0, 240, 255, 0.2);
    color: var(--text);
}

/* --- Loading Spinner --- */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* --- Tooltip (simple CSS-only) --- */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 6px 12px;
    background: var(--bg-card-hover);
    color: var(--text);
    font-size: 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--border-light);
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

/* --- Auth Pages (Login / Register) --- */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 40px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

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

/* Steam login button */
.btn-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #171a21;
    color: #fff;
    border: 1px solid #2a475e;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-steam:hover {
    background: #1b2838;
    border-color: #66c0f4;
    color: #66c0f4;
    box-shadow: 0 0 15px rgba(102, 192, 244, 0.15);
}

/* --- Page Spacer (for fixed navbar) --- */
.page-spacer {
    height: 64px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-dim);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

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

/* --- Search Input --- */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.9rem;
}

/* --- Progress Bar --- */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-dark);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-green));
    transition: width 0.5s ease;
}

/* --- Match History (profile page) --- */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: background var(--transition);
}

.match-item:hover {
    background: var(--bg-card-hover);
}

.match-result {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

.match-result.win {
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.1);
}

.match-result.loss {
    color: var(--accent-red);
    background: rgba(255, 71, 87, 0.1);
}

.match-result.draw {
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* --- Weapon Stats (profile / player detail) --- */
.weapon-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.weapon-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.weapon-stat-item img {
    width: 40px;
    height: auto;
    opacity: 0.8;
}

.weapon-stat-info {
    flex: 1;
}

.weapon-stat-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.weapon-stat-kills {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

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

/* Tablet and below */
@media (max-width: 1024px) {
    .checkout-wrap {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .tier-platinum {
        transform: scale(1);
    }

    .tier-platinum:hover {
        transform: translateY(-4px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Navbar mobile */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 12px;
        backdrop-filter: blur(12px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-auth {
        display: none;
    }

    .nav-links.open ~ .nav-auth,
    .nav-auth-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    /* Hero mobile */
    .hero {
        min-height: 380px;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    /* Server grid mobile */
    .server-grid {
        grid-template-columns: 1fr;
    }

    .srv-card-info {
        grid-template-columns: 1fr;
    }

    /* Rankings mobile */
    .ranking-table {
        font-size: 0.8rem;
    }

    .ranking-table th,
    .ranking-table td {
        padding: 10px 10px;
    }

    /* Profile mobile */
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .profile-info h1 {
        justify-content: center;
        font-size: 1.4rem;
    }

    .profile-meta {
        justify-content: center;
    }

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

    .stat-num {
        font-size: 1.4rem;
    }

    /* Achievements mobile */
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    /* VIP tiers mobile */
    .tier-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Auth mobile */
    .auth-card {
        padding: 28px 20px;
    }

    /* Pagination mobile */
    .pagination {
        gap: 4px;
    }

    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    /* Filter bar scroll */
    .filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        flex-shrink: 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-box {
        padding: 14px;
    }

    .stat-num {
        font-size: 1.2rem;
    }

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

    .weapon-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Fade in on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.fade-in-up.delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up.delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up.delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-up.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Glow pulse (for legendary items, special elements) */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.4); }
}

.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Subtle hover lift for cards */
@keyframes hoverLift {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

/* Navbar scroll shadow */
@keyframes navShadow {
    from { box-shadow: none; }
    to { box-shadow: 0 2px 20px rgba(0, 240, 255, 0.05); }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .mobile-toggle,
    .btn,
    .flash-container {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .card,
    .srv-card,
    .stat-box,
    .form-card {
        border: 1px solid #ddd;
        box-shadow: none;
        background: #fff;
    }
}
