/* --- VARIABLES: THE PALETTE OF GODS --- */
:root {
    --deep-void: #080a12;
    --midnight-blue: #0f1422;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #8a7018;
    --text-cream: #f0f0f0;
    --card-bg: #151a2b;
    --font-title: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

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

body {
    background-color: var(--deep-void);
    color: var(--text-cream);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtiler Nebel-Hintergrund */
    background-image: radial-gradient(circle at 50% 0%, #1a2236 0%, var(--deep-void) 70%);
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 60px; position: fixed; width: 100%; z-index: 1000;
    background: rgba(8, 10, 18, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Feiner Goldrand */
}

.logo-text {
    font-family: var(--font-title); font-weight: 900; font-size: 1.5rem;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text; color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-item {
    font-size: 0.9rem; font-weight: 600; margin: 0 15px; color: #aab2c0; letter-spacing: 1px;
}
.nav-item:hover { color: var(--gold-primary); text-shadow: 0 0 8px var(--gold-primary); }

.btn-gold-small {
    border: 1px solid var(--gold-primary); color: var(--gold-primary);
    padding: 8px 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    transition: 0.3s;
}
.btn-gold-small:hover { background: var(--gold-primary); color: #000; box-shadow: 0 0 15px var(--gold-primary); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; position: relative; padding-top: 80px;
    /* Hintergrund Bild (optional, sonst der Body Gradient) */
    background: url('img/bg_hero.jpg') no-repeat center bottom/cover; 
    box-shadow: inset 0 -100px 150px var(--deep-void); /* Fade to black unten */
}

.hero-content { z-index: 2; max-width: 800px; position: relative; }

.ornament-top {
    width: 100px; height: 2px; background: var(--gold-primary); margin: 0 auto 20px;
    position: relative;
}
.ornament-top::after {
    content: '❖'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    color: var(--gold-primary); background: var(--deep-void); padding: 0 10px;
}

h1 {
    font-size: 5rem; line-height: 1.1; margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text; color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-sub { font-size: 1.2rem; color: #aab2c0; margin-bottom: 40px; font-weight: 300; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.btn-gold-epic {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: #080a12; padding: 18px 40px; font-weight: 700; font-family: var(--font-title);
    border: 1px solid var(--gold-light); box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
}
.btn-gold-epic:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }

.btn-outline-epic {
    border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 18px 40px;
    font-family: var(--font-title); font-weight: 700;
    backdrop-filter: blur(5px);
}
.btn-outline-epic:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* FLOATING ARTIFACTS (Gods Unchained Cards Style) */
.floating-artifacts {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1;
}

.artifact-card {
    position: absolute; width: 200px; height: 280px;
    background: linear-gradient(135deg, #2a324b, #151a2b);
    border: 2px solid var(--gold-dark); border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.left { top: 20%; left: 10%; transform: rotate(-10deg) scale(0.8); }
.right { bottom: 15%; right: 10%; transform: rotate(5deg) scale(0.9); }

.card-inner { width: 100%; height: 100%; overflow: hidden; border-radius: 8px; position: relative; }
.card-inner img { width: 100%; height: 100%; object-fit: cover; }
.card-content-text {
    display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%;
    color: var(--gold-primary); text-align: center;
}

.float-normal { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 7s ease-in-out infinite reverse; }

/* --- LORE SECTION --- */
.lore-section { padding: 100px 0; background: var(--midnight-blue); position: relative; }
.container { width: 85%; max-width: 1200px; margin: 0 auto; text-align: center; }

.section-title { font-size: 3rem; color: var(--gold-primary); margin-bottom: 10px; }
.section-desc { color: #888; margin-bottom: 60px; font-family: var(--font-title); }

.lore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.lore-card {
    background: rgba(255,255,255,0.02); padding: 40px 20px; border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s; position: relative;
}
.lore-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); background: rgba(0,0,0,0.3); }

.icon-gold { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 20px; text-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.lore-card h3 { margin-bottom: 15px; color: #fff; font-size: 1.5rem; }
.lore-card p { font-size: 0.95rem; color: #aab2c0; line-height: 1.7; }

/* --- ARTIFACTS SECTION (Cards) --- */
.artifacts-section { padding: 120px 0; background: url('img/texture_bg.png'), var(--deep-void); }

.cards-showcase {
    display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 50px;
}

.game-card {
    width: 280px; background: var(--card-bg); border-radius: 15px; overflow: hidden;
    border: 1px solid #333; transition: 0.4s; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.main-card { transform: scale(1.1); border: 2px solid var(--gold-primary); z-index: 2; box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
.card-crown {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent;
    border-bottom: 15px solid var(--gold-primary);
}

.card-image {
    height: 180px; display: flex; justify-content: center; align-items: center;
    background: radial-gradient(circle, #2a324b 0%, #151a2b 100%);
}

/* Vector Balls */
.ball-visual {
    width: 70px; height: 70px; background: #111; border-radius: 50%;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,1), 5px 5px 15px rgba(255,255,255,0.1);
    display: flex; justify-content: center; align-items: center; gap: 4px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.blue { background: #0088ff; box-shadow: 0 0 5px #0088ff; }
.red { background: #ff3333; box-shadow: 0 0 5px #ff3333; }
.yellow { background: var(--gold-primary); box-shadow: 0 0 5px var(--gold-primary); }

.card-details { padding: 25px; text-align: center; }
.card-details h4 { color: #fff; margin-bottom: 5px; font-size: 1.2rem; }
.rarity { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 15px; }
.common { color: #0088ff; }
.legendary { color: var(--gold-primary); }
.rare { color: #ff3333; }
.card-details p { font-size: 0.85rem; color: #888; margin-bottom: 20px; }

.btn-card {
    background: transparent; border: 1px solid var(--gold-primary); color: var(--gold-primary);
    padding: 8px 20px; font-family: var(--font-title); font-weight: 700; cursor: pointer;
    transition: 0.3s;
}
.btn-card:hover { background: var(--gold-primary); color: #000; }

/* --- KICKSTARTER EPIC --- */
.kickstarter-epic { padding: 100px 0; position: relative; overflow: hidden; }
.bg-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--deep-void) 0%, #1a1605 100%); /* Gold tint at bottom */
    z-index: -1;
}

.gold-glow { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }

.kickstarter-status {
    display: flex; justify-content: center; align-items: center; gap: 40px; margin: 40px 0 60px;
}
.big-num { font-family: var(--font-title); font-size: 3.5rem; color: #fff; line-height: 1; }
.label { display: block; color: var(--gold-primary); font-size: 0.8rem; letter-spacing: 2px; }
.divider-vertical { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

.tiers-wrapper { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.tier-box {
    background: rgba(21, 26, 43, 0.9); width: 320px; padding: 40px; text-align: center;
    border: 1px solid rgba(255,255,255,0.1); position: relative;
}
.featured { border: 1px solid var(--gold-primary); transform: scale(1.05); box-shadow: 0 0 40px rgba(0,0,0,0.5); }

.ribbon {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--gold-primary); color: #000; font-weight: 700; font-size: 0.8rem; padding: 5px 15px;
}

.price-tag { font-size: 2.5rem; font-family: var(--font-title); margin: 15px 0; color: #fff; }
.price-tag.gold { color: var(--gold-primary); }

.tier-box ul { list-style: none; margin-bottom: 30px; }
.tier-box ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }

.full { display: block; width: 100%; text-align: center; }

/* --- FOOTER --- */
footer { padding: 60px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); background: #05060a; }
.small { font-size: 1.2rem; }
.social-links { margin-top: 20px; font-size: 0.8rem; letter-spacing: 2px; color: #666; }
.social-links a:hover { color: var(--gold-primary); }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 1.5s ease-out; }

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .hero-content { padding: 0 20px; }
    .floating-artifacts { display: none; } /* Zu eng auf Mobile */
    .navbar { padding: 15px; flex-direction: column; gap: 10px; }
    .nav-left, .nav-right { display: none; } /* Vereinfachtes Mobile Menu */
    .cards-showcase { flex-direction: column; }
    .main-card { transform: scale(1); }
}