/**
 * Ethernal IllusionKlán - Main CSS
 * Sötét, WoW-inspired design
 */

/* === ROOT VÁLTOZÓK === */
:root {
    /* Színek - Sötét téma */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    --accent-gold: #ffd700;
    --accent-purple: #9d4edd;
    --accent-blue: #4cc9f0;
    
    --discord-color: #5865F2;
    
    /* Szöveg */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* === HÁTTÉR === */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* === HEADER & LOGO === */
.main-header {
    position: relative;
    padding: 2rem 4rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7));
}

/* === NAVIGÁCIÓ === */
.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 900px;
}

.nav-btn {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), #c9a227);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* === RAID TAKTIKÁK KIEMELÉS === */
.nav-btn-tactics {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 105, 180, 0.2)) !important;
    border: 2px solid rgba(255, 105, 180, 0.6) !important;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    animation: tacticsGlow 2s ease-in-out infinite;
}

.nav-btn-tactics:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.4), rgba(255, 105, 180, 0.4)) !important;
    border-color: rgba(255, 105, 180, 0.9) !important;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6), 0 6px 25px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-3px) scale(1.05);
}

@keyframes tacticsGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 105, 180, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 105, 180, 0.7), 0 4px 20px rgba(255, 105, 180, 0.3);
    }
}

/* === MAIN CONTENT - 2 OSZLOPOS LAYOUT === */
.main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    align-items: start;
}

/* Bal oldal - 70% */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(157, 78, 221, 0.6);
    box-shadow: 0 8px 32px rgba(157, 78, 221, 0.2);
}

.content-card h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Jobb oldal - 30% */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.sidebar-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* === VAULT COUNTDOWN WIDGET === */
.vault-countdown-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 20, 60, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.vault-countdown-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 215, 0, 0.05),
        transparent
    );
    animation: vault-shimmer 3s infinite;
}

@keyframes vault-shimmer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.vault-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.vault-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    min-width: 70px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    animation: vault-pulse 2s infinite;
}

@keyframes vault-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.7);
        transform: scale(1.05);
    }
}

.countdown-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
}

.vault-reset-text {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.vault-reset-text span {
    color: #ffd700;
    font-weight: bold;
}

/* === GOMBOK === */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.btn-login {
    background: linear-gradient(135deg, var(--accent-gold), #ff8c00);
    color: #0a0a0a;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.btn-logout {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.btn-logout:hover {
    background: rgba(255, 0, 0, 0.4);
}

.btn-discord {
    background: var(--discord-color);
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
}

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

/* === FOOTER === */
.main-footer {
    text-align: center;
    padding: 2rem;
    background: transparent;
    margin-top: 4rem;
}

.main-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .nav-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .sidebar {
        position: static;
    }
}

/* === LOGIN MODAL CONTENT === */
.login-modal-content {
    text-align: center;
    padding: 1rem;
}

.login-modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.login-info {
    margin-top: 1rem;
    color: var(--text-muted);
}

.login-info small {
    color: #ffa500;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .main-logo {
        max-width: 200px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-menu {
        margin-left: 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
}

/* === SCROLL BEHAVIOR === */
html {
    scroll-behavior: smooth;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

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

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

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

/* =================================================================
   SIDEBAR WIDGETS - RaiderIO dinamikus adatok
   ================================================================= */

/* Általános sidebar card továbbfejlesztése */
.sidebar-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Weekly Reset Widget */
.sidebar-reset .reset-countdown {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.reset-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.reset-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.reset-progress {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.reset-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
}

.reset-date {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 10px 0 0 0;
}

/* Affixes Widget */
.affixes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.affix-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s;
    cursor: help;
}

.affix-item:hover {
    border-color: rgba(138, 43, 226, 0.6);
    background: rgba(138, 43, 226, 0.1);
    transform: translateX(5px);
}

.affix-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid var(--accent-purple);
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.4);
}

.affix-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.affix-link {
    display: block;
    text-align: center;
    padding: 10px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.affix-link:hover {
    background: rgba(138, 43, 226, 0.4);
    transform: scale(1.05);
}

/* Guild Widget */
.guild-info {
    margin: 15px 0;
}

.guild-realm,
.guild-members {
    margin: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.guild-raid-progress {
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.guild-raid-progress h4 {
    color: var(--accent-purple);
    font-size: 14px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guild progress summary badge (pl. "6/8 H") */
.guild-progress-summary {
    margin: 10px 0;
    text-align: center;
}

.guild-summary-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(76, 201, 240, 0.3));
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.guild-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guild-progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.guild-progress-label {
    color: var(--text-secondary);
    font-size: 13px;
}

.guild-progress-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
}

.guild-progress-value.text-blue {
    color: #60a5fa;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.guild-progress-value.text-purple {
    color: #c084fc;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.guild-link {
    display: block;
    text-align: center;
    padding: 10px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.guild-link:hover {
    background: rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

/* === SEASON WIDGET === */
.sidebar-season .season-info {
    margin: 10px 0;
}

.sidebar-season .season-count {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

/* Dungeon grid */
.season-dungeons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.dungeon-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(76, 201, 240, 0.3);
}

.dungeon-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
    border-color: var(--accent-blue);
}

.dungeon-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.dungeon-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dungeon-short-name {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.dungeon-name {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === GUILD SHOWCASE (Main Content) === */
.guild-showcase-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.showcase-loading,
.showcase-error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 30px;
}

.showcase-guild-info {
    flex: 1;
}

.showcase-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.showcase-guild-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s;
}

.showcase-guild-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.showcase-guild-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-gold);
    margin: 0 0 8px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
}

.showcase-guild-realm {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 4px 0;
}

.showcase-guild-members {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 4px 0;
}

.showcase-raiderio-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.showcase-raiderio-link:hover {
    background: rgba(168, 85, 247, 0.4);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.raiderio-icon {
    font-size: 24px;
}

/* Raid Progress Section */
.showcase-raid-progress {
    margin-top: 20px;
}

.showcase-raid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.showcase-raid-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-purple);
    margin: 0;
    text-shadow: 0 0 15px rgba(157, 78, 221, 0.6);
}

.showcase-progress-badge {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(76, 201, 240, 0.2));
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.1);
    letter-spacing: 3px;
}

/* Difficulty Progress Bars */
.showcase-difficulty-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.difficulty-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.difficulty-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.diff-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diff-value {
    font-size: 18px;
    font-weight: 900;
    color: #9ca3af;
}

.diff-value.heroic {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

.diff-value.mythic {
    color: #c084fc;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.8);
}

.difficulty-progress-bar {
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.difficulty-fill {
    height: 100%;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px currentColor;
}

.difficulty-normal {
    background: linear-gradient(90deg, #4ade80, #22c55e);
}

.difficulty-heroic {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.difficulty-mythic {
    background: linear-gradient(90deg, #c084fc, #a855f7);
}

/* Boss Grid */
.showcase-bosses {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.showcase-bosses h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.boss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.boss-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.boss-item.killed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
}

.boss-item.killed.normal {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(74, 222, 128, 0.4);
}

.boss-item.killed.heroic {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(96, 165, 250, 0.4);
}

.boss-item.killed.mythic {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(192, 132, 252, 0.4);
}

.boss-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.boss-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 28px;
    text-align: center;
}

.boss-name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.boss-item.killed .boss-name {
    color: #9ca3af;
}

.boss-item.killed.normal .boss-name {
    color: #4ade80;
}

.boss-item.killed.heroic .boss-name {
    color: #60a5fa;
}

.boss-item.killed.mythic .boss-name {
    color: #c084fc;
}

.boss-difficulty {
    font-size: 16px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-shadow: 0 0 8px currentColor;
}

.boss-difficulty.normal {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.boss-difficulty.heroic {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
}

.boss-difficulty.mythic {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.2);
    border: 1px solid rgba(192, 132, 252, 0.4);
}

.boss-status {
    font-size: 18px;
    color: #4ade80;
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .showcase-guild-name {
        font-size: 28px;
    }
    
    .showcase-raid-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .showcase-progress-badge {
        font-size: 24px;
        padding: 10px 20px;
    }
    
    .boss-grid {
        grid-template-columns: 1fr;
    }
}

/* Season Widget */
.season-info {
    margin: 15px 0;
}

.season-dungeons {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 8px 0;
}

/* Error state */
.sidebar-card.error {
    border-color: rgba(239, 68, 68, 0.5);
}

.sidebar-card.error h3 {
    color: #ef4444;
}

/* === TGF RECRUITMENT SECTION === */
.tgf-card {
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a0f2e 0%, #0a0a0a 100%);
    border: 2px solid rgba(157, 78, 221, 0.5);
    position: relative;
    overflow: hidden;
}

.tgf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.2), transparent);
    animation: tgf-shimmer 3s infinite;
}

@keyframes tgf-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tgf-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 2px solid rgba(157, 78, 221, 0.3);
}

.tgf-title {
    font-size: 32px;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                 0 0 20px rgba(255, 215, 0, 0.3),
                 0 0 30px rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
    animation: tgf-glow 2s ease-in-out infinite alternate;
}

@keyframes tgf-glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3); }
}

.tgf-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Class Grid */
.tgf-classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tgf-class-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tgf-class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tgf-class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tgf-class-card:hover::before {
    opacity: 1;
}

/* Priority Colors */
.tgf-class-card.priority-high {
    border-color: rgba(239, 68, 68, 0.8);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(26, 26, 26, 0.8) 50%);
}

.tgf-class-card.priority-high::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.tgf-class-card.priority-high .priority-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: priority-pulse 2s ease-in-out infinite;
}

.tgf-class-card.priority-medium {
    border-color: rgba(251, 191, 36, 0.8);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(26, 26, 26, 0.8) 50%);
}

.tgf-class-card.priority-medium::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.tgf-class-card.priority-medium .priority-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.tgf-class-card.priority-low {
    border-color: rgba(156, 163, 175, 0.5);
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.05) 0%, rgba(26, 26, 26, 0.8) 50%);
}

.tgf-class-card.priority-low::before {
    background: linear-gradient(90deg, #9ca3af, #6b7280);
}

.tgf-class-card.priority-low .priority-badge {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

@keyframes priority-pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 30px rgba(239, 68, 68, 0.4); }
}

/* Class Header */
.tgf-class-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tgf-class-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid currentColor;
}

.tgf-class-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.priority-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Spec List */
.tgf-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tgf-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.tgf-spec-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tgf-spec-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.tgf-spec-name {
    font-size: 14px;
    font-weight: 500;
}

.tgf-spec-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}

/* Class Note */
.tgf-class-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(157, 78, 221, 0.5);
    border-radius: 4px;
}

/* Apply Button */
.tgf-apply-section {
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid rgba(157, 78, 221, 0.3);
}

.btn-tgf-apply {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-purple), #7209b7);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
    animation: btn-glow 2s ease-in-out infinite alternate;
}

@keyframes btn-glow {
    from { box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4), 0 0 20px rgba(255, 215, 0, 0.2); }
    to { box-shadow: 0 4px 20px rgba(157, 78, 221, 0.6), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.btn-tgf-apply:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #7209b7, var(--accent-purple));
    box-shadow: 0 6px 25px rgba(157, 78, 221, 0.6), 0 0 40px rgba(255, 215, 0, 0.5);
}

.btn-tgf-apply:active {
    transform: scale(0.98);
}

/* Loading State */
.tgf-loading {
    text-align: center;
    padding: 60px 20px;
}

.tgf-loading h2 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* Disabled State */
.tgf-card.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.tgf-disabled-message {
    text-align: center;
    padding: 40px 20px;
    font-size: 18px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .tgf-classes-grid {
        grid-template-columns: 1fr;
    }
    
    .tgf-title {
        font-size: 24px;
    }
    
    .btn-tgf-apply {
        padding: 12px 30px;
        font-size: 16px;
    }
}
