/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4a017;
    --dark-gold: #8b6914;
    --accent-gold: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border-color: #333333;
    --sidebar-width: 260px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar-header {
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-logo-text .sidebar-logo {
    width: 120px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(212, 160, 23, 0.4));
    transition: all 0.3s ease;
}

.sidebar-logo-text .sidebar-logo:hover {
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.6));
    transform: scale(1.05);
}

.sidebar-logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
    margin-bottom: 0.25rem;
}

.sidebar-logo-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.logo-subtitle {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Server Status */
.server-status {
    padding: 1rem 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.status-item {
    margin-bottom: 1rem;
}

.status-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.status-label strong {
    color: var(--primary-gold);
}

.status-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.status-fill.exp {
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.status-fill.drop {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.player-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.player-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.player-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4CAF50;
}

.player-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Download Button */
.btn-download {
    margin: 0.8rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, #00c9ff, #0066ff);
    color: #ffffff;
    border: 2px solid #ffd700;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-download:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download span {
    position: relative;
    z-index: 1;
}

/* Register Button in Sidebar */
.btn-register-sidebar {
    margin: 0.8rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, #ff6b35, #d62828);
    color: #ffffff;
    border: 2px solid #ffd700;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(214, 40, 40, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-register-sidebar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-register-sidebar:hover::before {
    width: 300px;
    height: 300px;
}

.btn-register-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(214, 40, 40, 0.7);
    border-color: #ffd700;
}

.btn-register-sidebar span {
    position: relative;
    z-index: 1;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.7);
    border-color: #ffd700;
}

.btn-download-old:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 0.8rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-item:hover {
    background: rgba(212, 160, 23, 0.1);
    color: #ffffff;
    border-left-color: var(--primary-gold);
}

.nav-item.active {
    background: rgba(212, 160, 23, 0.15);
    color: #ffffff;
    border-left-color: var(--primary-gold);
    font-weight: 700;
}

.nav-icon {
    font-size: 1.1rem;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.zalo-widget {
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 120, 255, 0.1);
    border-radius: 8px;
}

.zalo-widget img {
    margin-bottom: 0.5rem;
}

.zalo-widget p {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.zalo-btn {
    padding: 0.4rem 0.8rem;
    background: #0078FF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zalo-btn:hover {
    background: #0056cc;
}

/* Main Wrapper */
.main-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    background: url('Anhnenmu.jpg') center center / cover fixed;
    position: relative;
}

.main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 0;
}

.main-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Top Navigation */
.top-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
}

.top-nav-left {
    display: flex;
    gap: 2rem;
}

.top-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.top-nav-link:hover {
    color: var(--primary-gold);
}

.top-nav-link:hover::after {
    width: 100%;
}

.top-nav-right {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-register:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--bg-dark);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.85) 0%, 
        rgba(20, 15, 10, 0.9) 50%, 
        rgba(10, 10, 15, 0.85) 100%
    );
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        var(--primary-gold), 
        var(--accent-gold), 
        var(--primary-gold)
    ) 1;
    border-radius: 20px;
    box-shadow: 
        0 0 40px rgba(212, 160, 23, 0.3),
        0 0 80px rgba(212, 160, 23, 0.15),
        inset 0 0 60px rgba(212, 160, 23, 0.05);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(212, 160, 23, 0.3);
    letter-spacing: 8px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(212, 160, 23, 0.8)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-inline {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Events Section */
.events-section {
    background: rgba(10, 10, 10, 0.8);
    padding: 3rem 0;
}

/* Event Categories */
.event-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-cat-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.event-cat-btn.active,
.event-cat-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 160, 23, 0.1);
}

.cat-icon {
    font-size: 2rem;
}

.cat-info {
    text-align: left;
}

.cat-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.cat-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Event Types */
.event-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.event-type-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-type-btn.active,
.event-type-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
}

/* Event Content */
.event-content {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.event-detail-panel {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-placeholder {
    font-size: 8rem;
    filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.5));
}

.event-detail-info h2 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.event-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.event-rules h3 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
}

.event-rules ul {
    list-style: none;
    padding: 0;
}

.event-rules li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.event-rules p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Rewards Table */
.rewards-section {
    margin-top: 2rem;
}

.rewards-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.rewards-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.rewards-table thead {
    background: rgba(212, 160, 23, 0.2);
}

.rewards-table th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-gold);
    font-weight: 600;
}

.rewards-table td {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.rank-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000;
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #000;
}

.reward-items {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.reward-item {
    font-size: 1.5rem;
}

.reward-value {
    color: var(--primary-gold);
    font-weight: 600;
}

/* All Events Grid Section */
.all-events-grid-section {
    padding: 3rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.event-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon-big {
    font-size: 4rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.event-card-body {
    padding: 1.5rem;
}

.event-card-body h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.event-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-times-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-times-preview span {
    padding: 0.3rem 0.6rem;
    background: rgba(212, 160, 23, 0.2);
    color: var(--primary-gold);
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid var(--primary-gold);
}

.event-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.btn-view-detail {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-detail:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

/* Features Section */
.features-section {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* News Section */
.news-section {
    padding: 3rem 0;
}

.news-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.news-filter-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-filter-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.news-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), #c9941a);
    border-color: var(--primary-gold);
    color: #000;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
    border-radius: 16px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
}

.news-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}

.news-thumbnail {
    font-size: 3rem;
    flex-shrink: 0;
}

.news-meta {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 160, 23, 0.2);
    color: var(--primary-gold);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-body {
    padding: 1.5rem;
}

.news-card h3 {
    color: var(--primary-gold);
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-secondary);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.news-read-more {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(15, 15, 20, 0.98) 100%);
    border-top: 2px solid var(--primary-gold);
    padding: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-social a span {
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info li span {
    color: var(--primary-gold);
    font-weight: 700;
    min-width: 100px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact li span {
    font-size: 1.1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
    margin-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
}

/* Event Modal */
.event-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: var(--sidebar-width);
    top: 0;
    width: calc(100% - var(--sidebar-width));
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.event-modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.event-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.event-modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.event-modal-body {
    padding: 2rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .event-detail-panel {
        grid-template-columns: 1fr;
    }
    
    .event-categories {
        grid-template-columns: 1fr;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
