/* ================================
   ENTSPANNTERES, STRUKTURIERTES DESIGN
   ================================ */

/* Homepage Body - Subtilere Hintergründe */
.home-page {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0705 0%, #1a1410 50%, #0a0705 100%);
    background-attachment: fixed;
}

.home-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" opacity="0.015"><circle cx="100" cy="100" r="40" stroke="%23DAA520" stroke-width="1" fill="none"/></svg>');
    pointer-events: none;
    z-index: 0;
}

/* ================================
   HERO SECTION - Subtil und klar
   ================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: 
        radial-gradient(ellipse at top, rgba(218, 165, 32, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 7, 5, 0.3) 0%, rgba(10, 7, 5, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 7, 5, 0.9) 80%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

/* Hero Sigil - dezenter */
.hero-sigil {
    font-size: 5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    animation: sigilMysticalPulse 6s ease-in-out infinite;
}

@keyframes sigilMysticalPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Title - weniger extrem */
.hero-title {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 
        0 0 8px rgba(255, 215, 0, 0.5),
        0 0 15px rgba(218, 165, 32, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    line-height: 1.1;
}

/* Hero Subtitle - klarer */
.hero-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 235, 205, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons - klare Hierarchie */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-button.primary {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #DAA520 100%);
    border-color: #FFD700;
    color: #1a1410;
}

.hero-button.secondary {
    background: rgba(26, 20, 16, 0.6);
    border-color: rgba(218, 165, 32, 0.5);
    color: #FFD700;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-button:hover.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 50%, #FFD700 100%);
}

.hero-button:hover.secondary {
    background: rgba(218, 165, 32, 0.2);
    border-color: #FFD700;
}

/* ================================
   NATIONS SHOWCASE - 5 ELEMENTE NEBENEINANDER
   ================================ */

.nations-showcase {
    padding: 5rem 2rem;
    position: relative;
    background: rgba(26, 20, 16, 0.3);
}

.section-title-epic {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFD700;
    letter-spacing: 2px;
}

/* Nations Grid für 5 Elemente nebeneinander */
.nations-grid.compact {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #DAA520 transparent;
}

.nations-grid.compact::-webkit-scrollbar {
    height: 6px;
}

.nations-grid.compact::-webkit-scrollbar-thumb {
    background: #DAA520;
    border-radius: 3px;
}

/* Kompakte Nation Cards */
.nation-card.compact {
    flex: 0 0 auto;
    width: 220px;
    min-width: 200px;
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nation-card.compact:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.nation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.4));
}

.nation-card.compact h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 0.75rem;
}

.nation-card.compact p {
    color: rgba(255, 235, 205, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.nation-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    font-size: 0.85rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 235, 205, 0.8);
}

.stat-item i {
    color: #DAA520;
    font-size: 0.9rem;
}

/* ================================
   FEATURES SECTION - Klar und übersichtlich
   ================================ */

.features-section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #FFD700;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 235, 205, 0.85);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Features Grid - einfacher */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(218, 165, 32, 0.9);
    color: #1a1410;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-content {
    padding: 1.5rem;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(255, 235, 205, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-highlights li {
    color: rgba(255, 235, 205, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.feature-highlights li:last-child {
    border-bottom: none;
}

.feature-highlights li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-size: 0.8rem;
}

.feature-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 50px;
    color: #FFD700;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-cta:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* ================================
   SERVER INFO - Klare Statistik-Karten
   ================================ */

.server-info-modern {
    padding: 4rem 0;
    background: rgba(26, 20, 16, 0.2);
    border-radius: 12px;
    margin: 2rem 0;
}

.info-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card-glass {
    background: rgba(26, 20, 16, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.card-icon {
    font-size: 2.5rem;
    color: #FFD700;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.info-card-glass h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.server-ip-display {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #FFF8DC;
    background: rgba(10, 7, 5, 0.6);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    margin: 1rem 0;
}

.copy-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 50px;
    color: #FFD700;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn-modern:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.player-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Cinzel', serif;
}

.uptime-percent {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Cinzel', serif;
}

.uptime-bar {
    width: 100%;
    height: 8px;
    background: rgba(10, 7, 5, 0.6);
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.uptime-fill {
    height: 100%;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ================================
   HEADER & FOOTER - Subtil
   ================================ */

/* ================================
   HEADER & FOOTER - Subtil
   ================================ */

.home-header {
    background: rgba(18, 17, 15, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    color: #f4ead5;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 
        0 1px 0 rgba(201, 166, 107, 0.1),
        0 4px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.home-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a66b 50%, transparent);
    opacity: 0.3;
}

.home-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    gap: 2rem;
}

.home-header a {
    color: #f4ead5;
}

.home-footer {
    background: linear-gradient(to top, rgba(15, 14, 13, 0.98), rgba(26, 24, 20, 0.95));
    backdrop-filter: blur(20px);
    color: #c9c4b8;
    border-top: 1px solid rgba(201, 166, 107, 0.2);
    flex-shrink: 0;
    width: 100%;
    margin-top: auto;
    position: relative;
    box-shadow: 
        0 -1px 0 rgba(201, 166, 107, 0.1),
        0 -4px 24px rgba(0, 0, 0, 0.3);
}

.home-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a66b 50%, transparent);
    opacity: 0.3;
}

.home-footer .wrapper {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.home-footer p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: rgba(232, 227, 217, 0.7);
    letter-spacing: 0.3px;
}

.home-footer-sigil {
    font-size: 1.5rem;
    letter-spacing: 0.75rem;
    margin-top: 1rem !important;
    color: #c9a66b;
    opacity: 0.4;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px rgba(201, 166, 107, 0.3);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
    .nations-grid.compact {
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    
    .nation-card.compact {
        width: 200px;
        min-width: 180px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nations-grid.compact {
        gap: 1rem;
    }
    
    .nation-card.compact {
        width: 180px;
        min-width: 160px;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-sigil {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .nations-showcase {
        padding: 3rem 1rem;
    }
    
    .section-title-epic {
        font-size: 2rem;
    }
    
    .nations-grid.compact {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nation-card.compact {
        width: calc(50% - 1rem);
        min-width: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nation-card.compact {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title,
    .section-title-epic {
        font-size: 1.75rem;
    }
}

/* ================================
   ANIMATIONEN & UTILITIES
   ================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}