/* Runes of Eternity - CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --secondary: #14b8a6;
    --secondary-light: #5eead4;
    --background: #0f172a;
    --surface: rgba(30, 41, 59, 0.5);
    --border: rgba(245, 158, 11, 0.2);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

/* Utility Classes */
.text-center { text-align: center; }
.btn-full { width: 100%; }

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0f172a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #b45309);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
}

.btn-secondary {
    background: rgba(71, 85, 105, 1);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 1);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.btn-outline:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: between;
    height: 5rem;
    gap: 1rem;
}

.logo-img {
    height: 4rem;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

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

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 10rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
main {
    padding-top: 5rem;
}

.page-section {
    display: none;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.05) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle at 5rem 8rem, var(--primary) 2px, transparent 2px),
        radial-gradient(circle at 8rem 20rem, var(--secondary) 1px, transparent 1px),
        radial-gradient(circle at 15rem 15rem, var(--primary) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25rem 10rem, var(--secondary) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
}

.hero-logo {
    height: 10rem;
    width: auto;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #fbbf24, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: row; /* statt column */
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column; /* Auf kleineren Bildschirmen wieder untereinander */
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 100 * (16/9) → sorgt für Fullscreen in Höhe */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

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

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(20, 184, 166, 0.03));
    border-bottom: 1px solid var(--border);
}

.page-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.page-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    flex-direction: column;  
    align-items: center;      
    justify-content: center;  
    text-align: center;       
    margin: 0 auto 4rem;      
    max-width: 100rem;         
}


.section-header h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.section-header-flex h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-flex p {
    font-size: 1.25rem;
    color: #cbd5e1;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  gap: 30px;               
  margin: 0 auto;              
  max-width: 1200px;           
}


.feature-card {
  flex: 1 1 300px;             
  max-width: 350px;            
  text-align: center;       
}

.feature-card {
    max-width: 320px;
    width: 100%;
}


.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cbd5e1;
}

/* News Section */
.news-section {
    background: rgba(30, 41, 59, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    group: hover;
}

.news-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.news-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-meta i {
    width: 1rem;
    height: 1rem;
}

.news-card h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.news-card:hover h3 {
    color: var(--primary-light);
}

.news-card p {
    color: #cbd5e1;
}

/* Events Section */
.events-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.event-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.event-header h3 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.event-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-badge-xp {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.event-badge-pvp {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.event-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.event-dates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.event-date i {
    width: 1rem;
    height: 1rem;
}

/* Classes Section */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.class-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.class-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.class-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    position: relative;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-role {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.class-role i {
    width: 1rem;
    height: 1rem;
}

.class-content {
    padding: 1.5rem;
}

.class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.class-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.class-difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.difficulty-beginner {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.difficulty-intermediate {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.difficulty-advanced {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.class-content p {
    color: #cbd5e1;
    text-align: center;
    line-height: 1.6;
}

/* Dual Class Info */
.dual-class-info {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.info-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.info-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.info-feature p {
    color: #cbd5e1;
}

/* Diamonds Section */
.diamonds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.diamond-package {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.diamond-package:hover {
    transform: translateY(-5px);
}

.diamond-package.popular {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(20, 184, 166, 0.1));
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0f172a;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.package-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.package-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.diamond-package h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.package-diamonds {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bonus {
    display: block;
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.feature i {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

/* Diamond Benefits */
.diamond-benefits {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefits-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 50%;
    margin-bottom: 1rem;
}

.benefit-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.benefit h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.benefit p {
    color: #cbd5e1;
}

/* Fair Play Notice */
.fair-play-notice {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.fair-play-notice h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fair-play-notice p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #000000 100%);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 50%;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
}

.social-links i {
    width: 1.25rem;
    height: 1.25rem;
}

.server-status {
    margin-bottom: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.status-indicator.online {
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.status-item i {
    width: 1rem;
    height: 1rem;
}

.contact-info h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header-flex {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-wrapper {
        height: 4rem;
    }
    
    .logo-img {
        height: 3rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .hero-logo {
        height: 8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .features-grid,
    .news-grid,
    .events-grid,
    .classes-grid,
    .diamonds-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-features,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .dual-class-info,
    .diamond-benefits {
        padding: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    main {
        padding-top: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
}

/* ===== Base Theme ===== */
:root{
  --bg-900:#0b1220;
  --bg-800:#111a2b;
  --bg-700:#162236;
  --text-100:#e6edf6;
  --text-300:#b9c2d0;
  --accent:#f59e0b;      /* amber */
  --accent-2:#2dd4bf;    /* teal */
  --muted:#334155;       /* slate-700 */
  --border:#f59e0b33;
  --border-2:#2dd4bf33;
  --ok:#22c55e;
  --warn:#ef4444;
  --shadow:0 10px 30px rgb(245 158 11 / .15);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  background: linear-gradient(180deg,var(--bg-900), var(--bg-800) 50%, var(--bg-900));
  color:var(--text-100);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* ===== Layout ===== */
.container{max-width:1120px; margin:0 auto; padding:0 20px}
.section{padding:80px 0}
.section-header{text-align:center; margin:0 0 32px}
.section-title{
  font-size:clamp(28px,4vw,40px);
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  margin:0 0 8px
}
.section-sub{color:var(--text-300); font-size:18px}

/* ===== Grid ===== */
.grid{display:grid; gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:960px){ .grid-2,.grid-3{grid-template-columns:1fr} }

/* ===== Card ===== */
.card{
  background:rgba(17,26,43,.6);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden
}
.card-body{padding:20px}
.card-header{padding:20px; border-bottom:1px solid var(--border)}
.card-title{font-weight:700; color:var(--accent); margin:0 0 8px}
.card-desc{color:var(--text-300)}

/* ===== Badges & Pills ===== */
.badges{display:flex; gap:8px; flex-wrap:wrap; justify-content:center}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid var(--border); padding:4px 10px; border-radius:999px;
  font-size:12px; color:#ffd590; background:rgba(245,158,11,.12)
}
.badge.blue{border-color:#60a5fa40; background:#60a5fa20; color:#93c5fd}
.badge.green{border-color:#22c55e40; background:#22c55e20; color:#86efac}
.badge.purple{border-color:#a78bfa40; background:#a78bfa20; color:#c4b5fd}
.badge.red{border-color:#ef444440; background:#ef444420; color:#fca5a5}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 18px; border-radius:12px; border:1px solid var(--border);
  background:linear-gradient(90deg,var(--accent),#d97706);
  color:#0b1220; font-weight:700; cursor:pointer; transition:.2s transform, .2s filter
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.05)}
.btn.outline{
  background:transparent; color:#ffd590; border-color:var(--border)
}
.btn.block{width:100%}

/* ===== Lists & Tables ===== */
.kv{display:grid; grid-template-columns:1fr auto; gap:10px; color:var(--text-300)}
.table{width:100%; border-collapse:collapse}
.table th,.table td{padding:12px 14px; border-bottom:1px solid var(--border); text-align:left}
.table th{color:#ffd590; font-weight:600}

/* ===== Forms ===== */
.form{display:grid; gap:16px}
.input, .select, .textarea{
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--border);
  background:rgba(22,34,54,.6); color:var(--text-100)
}
.input:focus, .select:focus, .textarea:focus{outline:2px solid var(--border-2); outline-offset:0}
.checkbox-row{display:flex; align-items:center; gap:10px; color:var(--text-300)}
.help{font-size:12px; color:#fca5a5}

/* ===== Hero (optional) ===== */
.hero{min-height:60vh; display:grid; place-items:center; text-align:center; position:relative; overflow:hidden}
.hero .title{
  font-size:clamp(36px,6vw,64px);
  background:linear-gradient(90deg,var(--accent),#ffe08a,var(--accent-2));
  -webkit-background-clip:text; background-clip:text; color:transparent; margin:0 0 14px
}
.hero .lead{color:var(--text-300); font-size:18px; max-width:760px; margin:0 auto}

/* ===== Utilities ===== */
.center{text-align:center}
.m0{margin:0} .mt24{margin-top:24px} .mt32{margin-top:32px} .mt48{margin-top:48px}
.ok{color:#86efac} .warn{color:#fda4af}
.aspect-video{position:relative; padding-top:56.25%}
.aspect-video > *{position:absolute; inset:0}
