@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;700;900&family=MedievalSharp&display=swap');

:root {
    --royal-gold: #ffd700;
    --royal-gold-dark: #b8860b;
    --royal-gold-light: #ffe55c;
    --royal-purple: #4a0080;
    --royal-purple-light: #7b2cbf;
    --royal-red: #8b0000;
    --royal-red-light: #dc143c;
    --royal-blue: #00008b;
    --diamond: #b9f2ff;
    --parchment: #f4e4bc;
    --dark-bg: #0a0612;
    --darker-bg: #050308;
    --castle-stone: #2d2d2d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cinzel', serif;
    background: var(--darker-bg);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== KINGDOM BACKGROUND ===== */
.kingdom-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars-layer {
    position: absolute;
    width: 100%;
    height: 200%;
    background: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 40% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(2px 2px at 60% 20%, #fff, transparent),
        radial-gradient(1px 1px at 70% 80%, #fff, transparent),
        radial-gradient(2px 2px at 80% 40%, #fff, transparent),
        radial-gradient(1px 1px at 90% 60%, #fff, transparent),
        radial-gradient(1px 1px at 10% 90%, #fff, transparent),
        radial-gradient(2px 2px at 30% 10%, #fff, transparent),
        radial-gradient(1px 1px at 85% 15%, #fff, transparent);
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.castle-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%);
    clip-path: polygon(
        0% 100%, 0% 80%, 5% 80%, 5% 60%, 8% 60%, 8% 40%, 10% 40%, 10% 60%, 
        12% 60%, 12% 80%, 20% 80%, 20% 50%, 22% 50%, 22% 30%, 25% 20%, 28% 30%, 
        28% 50%, 30% 50%, 30% 80%, 40% 80%, 40% 60%, 45% 60%, 45% 40%, 48% 30%, 
        50% 25%, 52% 30%, 55% 40%, 55% 60%, 60% 60%, 60% 80%, 70% 80%, 70% 50%, 
        72% 50%, 72% 30%, 75% 20%, 78% 30%, 78% 50%, 80% 50%, 80% 80%, 88% 80%, 
        88% 60%, 90% 60%, 90% 40%, 92% 40%, 92% 60%, 95% 60%, 95% 80%, 100% 80%, 100% 100%
    );
    opacity: 0.3;
}

/* TORCHES */
.torch {
    position: fixed;
    top: 150px;
    width: 30px;
    height: 80px;
    background: linear-gradient(180deg, #8b4513 0%, #654321 100%);
    border-radius: 5px;
    z-index: 10;
}

.torch-left { left: 20px; }
.torch-right { right: 20px; }

.flame {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 40px;
    background: radial-gradient(ellipse at bottom, #ff6600 0%, #ff9900 40%, #ffcc00 70%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.3s ease-in-out infinite alternate;
    box-shadow: 0 0 30px #ff6600, 0 0 60px #ff9900;
}

@keyframes flicker {
    0% { transform: translateX(-50%) scale(1) rotate(-2deg); }
    100% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
}

/* FLOATING CROWNS */
.float-crown {
    position: absolute;
    opacity: 0.15;
    animation: floatCrown 20s linear infinite;
    filter: drop-shadow(0 0 10px var(--royal-gold));
}

@keyframes floatCrown {
    0% { top: 110%; transform: rotate(0deg) translateX(0); }
    100% { top: -10%; transform: rotate(360deg) translateX(50px); }
}

/* GOLD PARTICLES */
.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--royal-gold);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ROYAL BANNERS */
.royal-banners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner {
    position: absolute;
    top: 80px;
    width: 60px;
    height: 200px;
    background: linear-gradient(180deg, var(--royal-purple) 0%, var(--royal-red) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    animation: bannerWave 3s ease-in-out infinite;
}

.banner-left { left: 50px; animation-delay: 0s; }
.banner-right { right: 50px; animation-delay: 0.5s; }

.banner::after {
    content: '⚜️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
}

@keyframes bannerWave {
    0%, 100% { transform: skewX(0deg); }
    50% { transform: skewX(2deg); }
}

/* ===== NAVBAR ===== */
.royal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(180deg, rgba(74, 0, 128, 0.9) 0%, rgba(10, 6, 18, 0.95) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--royal-gold);
    box-shadow: 0 5px 30px rgba(255, 215, 0, 0.3);
}

.navbar .logo img { height: 50px; }

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--royal-gold);
    text-shadow: 0 0 20px var(--royal-gold);
}

.auth-buttons { display: flex; gap: 15px; }

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--royal-gold);
    color: var(--royal-gold);
}

.btn-login:hover {
    background: var(--royal-gold);
    color: var(--dark-bg);
}

.btn-register {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    color: var(--dark-bg);
}

/* ===== THRONE HERO ===== */
.throne-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(74, 0, 128, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    overflow: hidden;
    z-index: 1;
}

.throne-room {
    position: absolute;
    left: 10%;
    bottom: 0;
    width: 300px;
    height: 400px;
}

/* THRONE */
.throne {
    position: relative;
    width: 200px;
    height: 350px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.throne-back {
    position: absolute;
    bottom: 100px;
    left: 25px;
    width: 150px;
    height: 200px;
    background: linear-gradient(180deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    border-radius: 75px 75px 0 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.throne-back::before {
    content: '♔';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    color: var(--royal-purple);
    text-shadow: 0 0 20px var(--royal-gold);
}

.throne-seat {
    position: absolute;
    bottom: 50px;
    left: 10px;
    width: 180px;
    height: 60px;
    background: linear-gradient(180deg, var(--royal-red) 0%, var(--royal-red-light) 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.throne-arms {
    position: absolute;
    bottom: 50px;
    left: -20px;
    width: 240px;
    height: 80px;
    background: linear-gradient(90deg, var(--royal-gold-dark) 0%, var(--royal-gold) 20%, var(--royal-gold) 80%, var(--royal-gold-dark) 100%);
    border-radius: 20px 20px 0 0;
    z-index: -1;
}

.crown-holder {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

/* ANIMATED CROWN */
.royal-crown {
    position: relative;
    width: 100px;
    height: 70px;
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.crown-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 30px;
    background: linear-gradient(180deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.crown-peak {
    position: absolute;
    bottom: 25px;
    width: 15px;
    height: 40px;
    background: linear-gradient(180deg, var(--royal-gold-light) 0%, var(--royal-gold) 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.peak-1 { left: 5px; height: 35px; }
.peak-2 { left: 22px; height: 45px; }
.peak-3 { left: 42px; height: 50px; }
.peak-4 { left: 62px; height: 45px; }
.peak-5 { left: 80px; height: 35px; }

.jewel {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: jewelGlow 2s ease-in-out infinite;
}

.jewel-1 { bottom: 35px; left: 25px; background: #ff0000; box-shadow: 0 0 15px #ff0000; }
.jewel-2 { bottom: 40px; left: 45px; background: #00ff00; box-shadow: 0 0 15px #00ff00; animation-delay: 0.3s; }
.jewel-3 { bottom: 35px; left: 65px; background: #0000ff; box-shadow: 0 0 15px #0000ff; animation-delay: 0.6s; }

@keyframes jewelGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.royal-carpet {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 50px;
    background: linear-gradient(90deg, transparent, var(--royal-red), var(--royal-red), transparent);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
}

/* HERO CONTENT */
.hero-content {
    max-width: 600px;
    text-align: center;
    z-index: 10;
    margin-left: 200px;
}

.royal-crest {
    margin-bottom: 30px;
}

.crest-shield {
    width: 100px;
    height: 120px;
    margin: 0 auto 10px;
    background: linear-gradient(180deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 10px 60px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 215, 0, 0.3); }
}

.crest-symbol {
    font-size: 50px;
    color: var(--royal-purple);
}

.crest-ribbon {
    background: var(--royal-purple);
    color: var(--royal-gold);
    padding: 8px 30px;
    font-size: 14px;
    letter-spacing: 3px;
}

.royal-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 20px;
    color: var(--royal-gold);
    letter-spacing: 5px;
}

.title-main {
    display: block;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--royal-gold-light) 0%, var(--royal-gold) 50%, var(--royal-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.3));
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.3)); }
    50% { filter: drop-shadow(0 5px 30px rgba(255, 215, 0, 0.6)); }
}

.royal-decree {
    font-family: 'MedievalSharp', cursive;
    font-size: 18px;
    color: var(--parchment);
    font-style: italic;
    margin-bottom: 30px;
}

.royal-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-scroll {
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.1) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 2px solid var(--royal-gold);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}

.benefit-scroll:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-enter-kingdom {
    position: relative;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    border: 3px solid var(--royal-gold-light);
    color: var(--dark-bg);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    animation: pulseGold 2s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.4); }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-enter-kingdom:hover {
    transform: scale(1.05);
}

/* ROYAL GUARDS */
.royal-guards {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
}

.guard {
    font-size: 80px;
    animation: guardStand 2s ease-in-out infinite;
}

.guard-left { animation-delay: 0s; }
.guard-right { animation-delay: 0.5s; }

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

.guard.salute {
    animation: salute 0.5s ease-in-out;
}

@keyframes salute {
    0%, 100% { transform: rotate(0); }
    50% { transform: rotate(15deg); }
}

/* ===== ROYAL HIERARCHY ===== */
.royal-hierarchy {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.royal-emblem {
    font-size: 60px;
    margin-bottom: 20px;
    animation: embleSpin 10s linear infinite;
}

@keyframes embleSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.decree-text {
    font-family: 'MedievalSharp', cursive;
    font-size: 18px;
    color: var(--parchment);
}

.hierarchy-pyramid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.tier-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.tier-card {
    position: relative;
    background: linear-gradient(180deg, rgba(74, 0, 128, 0.3) 0%, rgba(10, 6, 18, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.tier-card.emperor { width: 280px; }
.tier-card.emperor::before { background: linear-gradient(90deg, var(--royal-gold), var(--diamond), var(--royal-gold)); }
.tier-card.king::before, .tier-card.queen::before { background: var(--royal-gold); }
.tier-card.duke::before { background: silver; }
.tier-card.baron::before { background: #cd7f32; }
.tier-card.knight::before { background: #808080; }
.tier-card.squire::before { background: #5c4033; }

.tier-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--royal-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.tier-crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    animation: crownBob 2s ease-in-out infinite;
}

@keyframes crownBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.tier-shield {
    width: 80px;
    height: 90px;
    margin: 20px auto;
    background: linear-gradient(180deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-shield.small {
    width: 60px;
    height: 70px;
}

.shield-inner {
    width: 70%;
    height: 70%;
    background: var(--royal-purple);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon {
    font-size: 30px;
}

.tier-card h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 24px;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.tier-points {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.tier-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.tier-card:hover .tier-glow {
    opacity: 1;
}

/* ===== TIER MODAL ===== */
.tier-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.tier-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
}

.royal-scroll {
    background: linear-gradient(180deg, var(--parchment) 0%, #e8d4a2 100%);
    border-radius: 10px;
    padding: 40px;
    color: var(--dark-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--royal-red);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.scroll-top, .scroll-bottom {
    height: 20px;
    background: linear-gradient(90deg, #8b4513, #654321, #8b4513);
    margin: -40px -40px 20px;
    border-radius: 10px 10px 0 0;
}

.scroll-bottom {
    margin: 20px -40px -40px;
    border-radius: 0 0 10px 10px;
}

#tierDetails h3 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 28px;
    color: var(--royal-purple);
    text-align: center;
    margin-bottom: 10px;
}

.tier-subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

.tier-points-display, .tier-multiplier-display {
    text-align: center;
    padding: 10px;
    background: rgba(74, 0, 128, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tier-multiplier-display {
    background: rgba(255, 215, 0, 0.2);
    color: var(--royal-gold-dark);
}

#tierDetails h4 {
    margin: 20px 0 10px;
    color: var(--royal-purple);
}

.tier-benefits-list {
    list-style: none;
}

.tier-benefits-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

/* ===== ROYAL TREASURY ===== */
.royal-treasury {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.treasury-gate {
    text-align: center;
    margin-bottom: 60px;
}

.gate-arch {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(180deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    border-radius: 100px 100px 0 0;
    position: relative;
}

.gate-arch h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 36px;
    color: var(--dark-bg);
}

.treasure-room {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* TREASURE CHEST */
.treasure-chest {
    position: relative;
    width: 200px;
    height: 150px;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.treasure-chest:hover {
    transform: scale(1.05);
}

.chest-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 100px;
    background: linear-gradient(180deg, #8b4513 0%, #654321 100%);
    border-radius: 10px;
    border: 4px solid var(--royal-gold);
}

.chest-lid {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 200px;
    height: 60px;
    background: linear-gradient(180deg, #a0522d 0%, #8b4513 100%);
    border-radius: 50% 50% 0 0;
    border: 4px solid var(--royal-gold);
    transform-origin: bottom;
    transition: transform 0.8s ease;
}

.chest-lock {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    z-index: 10;
    transition: all 0.5s;
}

.treasure-chest.open .chest-lid {
    transform: rotateX(-110deg);
}

.treasure-chest.open .chest-lock {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px);
}

.chest-glow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.treasure-chest.open .chest-glow {
    opacity: 1;
    animation: glowPulse 1s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

.treasure-inside {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s 0.3s;
}

.treasure-chest.open .treasure-inside {
    opacity: 1;
}

.gold-coin, .jewel-treasure {
    font-size: 24px;
    animation: treasureBounce 0.5s ease-in-out infinite;
}

.c1 { animation-delay: 0s; }
.c2 { animation-delay: 0.1s; }
.c3 { animation-delay: 0.2s; }
.j1 { animation-delay: 0.15s; }
.j2 { animation-delay: 0.25s; }

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

.chest-instruction {
    color: var(--royal-gold);
    font-style: italic;
    margin-bottom: 40px;
}

.burst-coin {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: coinBurst 1.5s ease-out forwards;
    z-index: 9999;
}

@keyframes coinBurst {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(720deg); opacity: 0; }
}

/* REWARDS DISPLAY */
.rewards-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s;
}

.rewards-display.visible {
    opacity: 1;
    transform: translateY(0);
}

.reward-item {
    background: linear-gradient(180deg, rgba(74, 0, 128, 0.3) 0%, rgba(10, 6, 18, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s;
}

.reward-item.show {
    opacity: 1;
    transform: scale(1);
}

.reward-item:hover {
    border-color: var(--royal-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.reward-gem {
    font-size: 40px;
    margin-bottom: 15px;
}

.reward-item h4 {
    font-size: 18px;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.reward-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== POINTS FORGE ===== */
.points-forge {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(139, 0, 0, 0.1) 50%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.forge-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.forge-flames {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.forge-flame {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #ff6600, #ff9900, #ffcc00);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: forgeFlicker 0.5s ease-in-out infinite alternate;
    opacity: 0.7;
}

@keyframes forgeFlicker {
    0% { transform: scaleY(1) scaleX(1); }
    100% { transform: scaleY(1.2) scaleX(0.9); }
}

.anvil {
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border-radius: 20px 20px 0 0;
    border: 3px solid var(--royal-gold);
    border-bottom: none;
}

.anvil h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 36px;
    color: var(--royal-gold);
}

.anvil p {
    color: rgba(255, 255, 255, 0.7);
}

.forge-calculator {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-bg) 100%);
    border: 3px solid var(--royal-gold);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 40px;
}

.calc-input {
    text-align: center;
    margin-bottom: 30px;
}

.calc-input label {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--royal-gold);
}

.gold-input {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--royal-gold);
    border-radius: 10px;
    padding: 10px 20px;
}

.gold-input .currency {
    font-size: 24px;
    color: var(--royal-gold);
    margin-right: 10px;
}

.gold-input input {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    font-family: 'Cinzel', serif;
    width: 150px;
    outline: none;
}

.gold-input .gold-icon {
    font-size: 24px;
    margin-left: 10px;
}

.forge-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.result-card.royal {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(74, 0, 128, 0.2) 100%);
    border-color: var(--royal-gold);
}

.result-card .card-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.result-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.result-value {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 24px;
    color: var(--royal-gold);
}

.rank-progress {
    position: relative;
}

.progress-bar {
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: visible;
    position: relative;
    border: 2px solid var(--royal-gold);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5c4033, #cd7f32, silver, var(--royal-gold), var(--diamond));
    border-radius: 8px;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.progress-marker {
    position: absolute;
    top: -15px;
    font-size: 30px;
    transform: translateX(-50%);
    transition: left 0.5s ease;
    filter: drop-shadow(0 0 10px var(--royal-gold));
}

.rank-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== ROYAL OATH ===== */
.royal-oath {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.royal-oath h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 10px;
}

.oath-subtitle {
    text-align: center;
    color: var(--parchment);
    font-family: 'MedievalSharp', cursive;
    margin-bottom: 60px;
}

.oath-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.oath-step {
    background: linear-gradient(180deg, rgba(244, 228, 188, 0.1) 0%, rgba(74, 0, 128, 0.2) 100%);
    border: 2px solid var(--royal-gold);
    border-radius: 15px;
    padding: 30px;
    width: 220px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.oath-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.step-seal {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--royal-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 20px;
    color: var(--royal-gold);
    border: 3px solid var(--royal-gold);
}

.step-icon {
    font-size: 50px;
    margin: 20px 0;
}

.oath-step h4 {
    font-size: 18px;
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.oath-step ul {
    list-style: none;
    text-align: left;
}

.oath-step li {
    padding: 5px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.oath-connector {
    font-size: 30px;
    color: var(--royal-gold);
    margin-top: 60px;
    animation: swordSwing 2s ease-in-out infinite;
}

@keyframes swordSwing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* ===== ROYAL PRIVILEGES ===== */
.royal-privileges {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.royal-privileges h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.privileges-subtitle {
    text-align: center;
    color: var(--parchment);
    font-family: 'MedievalSharp', cursive;
    margin-bottom: 60px;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.privilege-card {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(74, 0, 128, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.privilege-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.privilege-card:hover {
    transform: translateY(-10px);
    border-color: var(--royal-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.privilege-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: privilegeFloat 3s ease-in-out infinite;
}

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

.privilege-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.privilege-card ul {
    list-style: none;
    text-align: left;
}

.privilege-card li {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== KINGDOM EVENTS ===== */
.kingdom-events {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.kingdom-events h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 10px;
}

.events-subtitle {
    text-align: center;
    color: var(--parchment);
    font-family: 'MedievalSharp', cursive;
    margin-bottom: 60px;
}

.events-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, rgba(74, 0, 128, 0.2) 0%, rgba(10, 6, 18, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
}

.event-card:hover {
    border-color: var(--royal-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
}

.event-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(139, 0, 0, 0.2) 100%);
    border-color: var(--royal-gold);
}

.event-date {
    min-width: 80px;
    text-align: center;
    background: var(--royal-gold);
    padding: 15px;
    border-radius: 15px;
    color: var(--dark-bg);
}

.date-day {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.date-num {
    display: block;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 24px;
    font-weight: 900;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 20px;
    color: var(--royal-gold);
    margin-bottom: 5px;
}

.event-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.event-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-info li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
}

.event-badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--royal-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.event-badge.special {
    background: linear-gradient(135deg, var(--royal-red) 0%, var(--royal-red-light) 100%);
    color: white;
    animation: specialPulse 2s ease-in-out infinite;
}

@keyframes specialPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(220, 20, 60, 0); }
}

/* ===== NOBLE TESTIMONIALS ===== */
.noble-testimonials {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(74, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.noble-testimonials h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--parchment);
    font-family: 'MedievalSharp', cursive;
    margin-bottom: 60px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(244, 228, 188, 0.05) 0%, rgba(74, 0, 128, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--royal-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.testimonial-crown {
    font-size: 40px;
    margin-bottom: 10px;
    animation: testimonialCrown 3s ease-in-out infinite;
}

@keyframes testimonialCrown {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.testimonial-rank {
    display: inline-block;
    background: var(--royal-gold);
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 50px;
    color: var(--royal-gold);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    margin-bottom: 10px;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--royal-gold);
    font-size: 16px;
}

.author-location {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-rating {
    font-size: 14px;
    letter-spacing: 2px;
}

/* ===== ROYAL FAQ ===== */
.royal-faq {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.royal-faq h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    text-align: center;
    margin-bottom: 50px;
}

.scroll-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-scroll {
    background: linear-gradient(180deg, var(--parchment) 0%, #e8d4a2 100%);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-scroll:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.scroll-header {
    display: flex;
    align-items: center;
    padding: 20px;
    color: var(--dark-bg);
    font-weight: 600;
}

.scroll-seal {
    font-size: 24px;
    margin-right: 15px;
}

.scroll-header span:nth-child(2) {
    flex: 1;
}

.scroll-toggle {
    transition: transform 0.3s;
}

.faq-scroll.open .scroll-toggle {
    transform: rotate(180deg);
}

.scroll-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background: rgba(0, 0, 0, 0.05);
}

.faq-scroll.open .scroll-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.scroll-answer ul {
    list-style: none;
    color: var(--dark-bg);
}

.scroll-answer li {
    padding: 6px 0;
    font-size: 14px;
}

/* ===== ROYAL CTA ===== */
.royal-cta {
    padding: 120px 20px;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, #000 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.coronation-stage {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-crown {
    position: relative;
    margin-bottom: 30px;
}

.crown-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: raysRotate 10s linear infinite;
}

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

.crown-emoji {
    font-size: 100px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--royal-gold));
    animation: crownFloat 3s ease-in-out infinite;
}

.royal-cta h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 42px;
    color: var(--royal-gold);
    margin-bottom: 15px;
}

.cta-decree {
    font-family: 'MedievalSharp', cursive;
    font-size: 20px;
    color: var(--parchment);
    margin-bottom: 30px;
}

.cta-promises {
    list-style: none;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--royal-gold);
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom: 40px;
    text-align: left;
}

.cta-promises li {
    padding: 10px 0;
    font-size: 16px;
}

.btn-coronation {
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--royal-gold-dark) 100%);
    border: 3px solid var(--royal-gold-light);
    color: var(--dark-bg);
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulseGold 2s ease-in-out infinite;
}

.btn-coronation:hover {
    transform: scale(1.1);
}

/* CONFETTI */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti {
    position: absolute;
    top: -20px;
    width: 15px;
    height: 15px;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== FOOTER ===== */
.royal-footer {
    background: linear-gradient(180deg, #000 0%, var(--royal-purple) 100%);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--royal-gold);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-crest {
    font-size: 50px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-motto {
    font-family: 'MedievalSharp', cursive;
    font-size: 18px;
    color: var(--royal-gold);
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy a {
    color: var(--royal-gold);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .tier-row { flex-wrap: wrap; }
    .rewards-display { grid-template-columns: repeat(2, 1fr); }
    .forge-results { grid-template-columns: repeat(2, 1fr); }
    .privileges-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-carousel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .throne-room { display: none; }
    .hero-content { margin-left: 0; }
    .oath-connector { display: none; }
    .oath-steps { flex-direction: column; align-items: center; }
    .event-card { flex-direction: column; text-align: center; }
    .event-info ul { justify-content: center; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 20px; padding: 15px; }
    .navbar-menu { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .torch { display: none; }
    .banner { display: none; }
    .title-main { font-size: 36px; }
    .royal-benefits { flex-direction: column; }
    .tier-card { width: 100% !important; max-width: 280px; }
    .rewards-display { grid-template-columns: 1fr; }
    .forge-results { grid-template-columns: 1fr; }
    .rank-labels { font-size: 9px; }
    .section-header h2, .royal-oath h2, .royal-faq h2, .royal-cta h2, 
    .royal-privileges h2, .kingdom-events h2, .noble-testimonials h2 { font-size: 28px; }
    .privileges-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .testimonials-carousel { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .event-badge { position: static; margin-top: 15px; }
}

@media (max-width: 480px) {
    .title-main { font-size: 28px; }
    .crest-shield { width: 80px; height: 96px; }
    .crest-symbol { font-size: 40px; }
    .btn-enter-kingdom, .btn-coronation { padding: 15px 30px; font-size: 16px; }
    .treasure-chest { transform: scale(0.8); }
}