/* ==================== CSS Variables ==================== */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.7);
    --bg-card-hover: rgba(30, 30, 45, 0.85);
    --accent-cyan: #00f0ff;
    --accent-purple: #a855f7;
    --accent-orange: #ff6b35;
    --accent-green: #22c55e;
    --accent-red: #ef4444;
    --accent-yellow: #eab308;
    --accent-blue: #3b82f6;
    --text-primary: #e5e5e5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-glow: rgba(0, 240, 255, 0.3);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Link styles */
a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ==================== Page Background ==================== */
.page-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1200px 600px at 20% -10%, rgba(255,122,24,.10), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 30%, rgba(0,0,0,.9) 100%),
        url("https://moox-gaming.com/test2/assets/bg3.png") center / cover no-repeat;
    filter: saturate(.9) contrast(1.05);
    z-index: -2;
}

/* ==================== Background Grid - REMOVED ==================== */
.bg-grid {
    /* Grid background removed - using page-bg instead */
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* ==================== Typography ==================== */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.text-cyan { color: var(--accent-cyan); }
.text-purple { color: var(--accent-purple); }
.text-orange { color: var(--accent-orange); }
.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }
.text-yellow { color: var(--accent-yellow); }
.text-blue { color: var(--accent-blue); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

.text-glow-cyan { text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan); }
.text-glow-purple { text-shadow: 0 0 10px var(--accent-purple), 0 0 20px var(--accent-purple); }
.text-glow-orange { text-shadow: 0 0 10px var(--accent-orange), 0 0 20px var(--accent-orange); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ==================== Layout ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 200px);
}

/* ==================== Navigation ==================== */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-icon.small {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-white);
    text-shadow: 0 0 10px var(--accent-grey);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.nav-icon {
    margin-right: 0.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.75rem 1rem;
}

.mobile-menu.active {
    display: block;
    animation: slideIn 0.3s ease;
}

.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .mobile-menu {
        display: none !important;
    }
}

/* ==================== Cards ==================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.hover-lift {
    transition: box-shadow 0.3s ease;
}

.hover-lift:hover {
    /* No transform - just color change handled by glass-card */
}

/* ==================== Hero Section ==================== */
.hero {
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(0, 240, 255, 0.1), 
        rgba(168, 85, 247, 0.1), 
        rgba(255, 107, 53, 0.1));
    pointer-events: none;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ==================== Grid Systems ==================== */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* ==================== News Cards ==================== */
.news-card {
    overflow: hidden;
    cursor: pointer;
}

.news-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card:hover .news-card-image img {
    /* No zoom effect */
}

.news-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.news-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0, 240, 255, 0.8);
    color: white;
    z-index: 1;
}

.news-card-content {
    padding: 1rem;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured .news-card-image {
    height: 16rem;
}

.news-card.featured .news-title {
    font-size: 1.25rem;
}

/* ==================== Quick Links ==================== */
.quick-link {
    padding: 1.5rem;
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.quick-link-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: text-shadow 0.3s ease;
}

.quick-link:hover .quick-link-title {
    text-shadow: 0 0 10px currentColor;
}

.quick-link-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==================== Stats Section ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
}

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

/* ==================== Section Headers ==================== */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

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

/* ==================== Tabs ==================== */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--bg-card);
    border: 1px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

.tab-btn.active {
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

.tab-btn.active.wow { 
    color: var(--accent-orange); 
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.tab-btn.active.arc { 
    color: var(--accent-purple); 
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
}

/* ==================== Tables ==================== */
.table-container {
    overflow: auto;
    margin: 0;
    position: relative;
    max-height: 500px;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table th,
.data-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent-cyan);
    background: #0d0d12;
}

.data-table tr:hover td {
    background: rgba(0, 240, 255, 0.05);
}

.data-table tbody tr {
    transition: background 0.2s ease;
}

/* ==================== Rarity Colors ==================== */
.rarity-common { color: #9ca3af; }
.rarity-uncommon { color: #22c55e; }
.rarity-rare { color: #3b82f6; }
.rarity-epic { color: #a855f7; }
.rarity-legendary { color: #f97316; }

.rarity-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.rarity-badge.common { background: rgba(156, 163, 175, 0.2); color: #9ca3af; }
.rarity-badge.uncommon { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.rarity-badge.rare { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.rarity-badge.epic { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.rarity-badge.legendary { background: rgba(249, 115, 22, 0.2); color: #f97316; }

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cyan {
    background: rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
}

.btn-cyan:hover {
    background: rgba(0, 240, 255, 0.3);
}

.btn-purple {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-purple);
}

.btn-purple:hover {
    background: rgba(168, 85, 247, 0.3);
}

.btn-orange {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
}

.btn-orange:hover {
    background: rgba(255, 107, 53, 0.3);
}

.btn-green {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent-green);
}

.btn-green:hover {
    background: rgba(34, 197, 94, 0.3);
}

.btn-red {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.btn-red:hover {
    background: rgba(239, 68, 68, 0.3);
}

/* ==================== Form Elements ==================== */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-select,
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-select option {
    background: var(--bg-dark);
}

/* ==================== Class/Spec Selector (WoW) ==================== */
.class-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .class-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (min-width: 1024px) {
    .class-grid {
        grid-template-columns: repeat(13, 1fr);
    }
}

.class-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.class-btn:hover,
.class-btn.active {
    opacity: 1;
}

.class-btn.active {
    box-shadow: 0 0 10px currentColor;
}

.spec-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.spec-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.spec-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* ==================== Talent Calculator ==================== */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

.talent-node {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    border: 2px solid var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-display);
    font-weight: 700;
}

.talent-node:hover {
    transform: scale(1.05);
    border-color: var(--text-secondary);
}

.talent-node.selected {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px var(--accent-cyan);
}

/* ==================== Stat Bars ==================== */
.stat-bar-container {
    margin-bottom: 0.75rem;
}

.stat-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

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

.stat-bar-value {
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.stat-bar {
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 0.25rem;
    transition: width 0.5s ease;
}

/* ==================== News List ==================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-list-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-list-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.news-list-item a {
    text-decoration: none;
    color: inherit;
}

.news-list-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.news-list-item:hover .news-list-title {
    color: var(--accent-cyan);
}

.news-list-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== Enemy Cards ==================== */
.enemy-card {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.enemy-card:hover,
.enemy-card.active {
    border-color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
}

.enemy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.enemy-name {
    font-weight: 600;
    font-size: 1rem;
}

.enemy-behavior {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.threat-level {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.threat-1, .threat-2 { color: var(--accent-green); }
.threat-3 { color: var(--accent-yellow); }
.threat-4 { color: var(--accent-orange); }
.threat-5 { color: var(--accent-red); }

/* ==================== Enemy Detail Panel ==================== */
.enemy-detail {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.enemy-detail-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .detail-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 700;
}

.weakness-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 1rem;
}

.weakness-title {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tactics-box {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.tactics-title {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

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

/* ==================== Animations ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-slide-in {
    animation: slideIn 0.3s ease forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ==================== Utilities ==================== */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.hidden { display: none; }

.overflow-auto { overflow: auto; }
.max-h-96 { max-height: 24rem; }

.w-full { width: 100%; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

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

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

::-webkit-scrollbar-track {
    background: rgba(20, 20, 30, 0.5);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* ==================== Search & Filter ==================== */
.search-box {
    position: relative;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Filter buttons */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

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

/* ==================== Loading State ==================== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(0, 240, 255, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==================== Empty State ==================== */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* ==================== Tooltip ==================== */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* ==================== WoW Specific Styles ==================== */
.tab-btn.wow.active {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* ==================== News List Styles ==================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list-item {
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.news-list-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.news-list-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-list-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.news-list-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==================== Weakness & Tactics Boxes ==================== */
.weakness-box,
.tactics-box {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.weakness-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tactics-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.weakness-title,
.tactics-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.weakness-title {
    color: var(--accent-red);
}

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

/* ==================== Community Section ==================== */
.discord-widget iframe {
    max-width: 100%;
    border-radius: 0.5rem;
}

.steam-group-card {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(102, 192, 244, 0.3);
}

.steam-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.steam-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #66c0f4, #1b2838);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.steam-group-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.steam-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-steam {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #66c0f4 0%, #1b2838 100%);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-steam:hover {
    background: linear-gradient(135deg, #7fcff7 0%, #2a475e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 192, 244, 0.3);
}
