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

:root {
    --dungeon-black: #0a0a0f;
    --dungeon-dark: #151520;
    --dungeon-grey: #1f1f2e;
    --dungeon-stone: #2a2a3a;
    --flame-red: #dc2626;
    --flame-orange: #ea580c;
    --flame-gold: #f59e0b;
    --mystical-purple: #7c3aed;
    --shadow-blue: #1e3a8a;
    --fog-white: #e5e7eb;
    --text-light: #d1d5db;
    --text-dim: #9ca3af;
}

body {
    font-family: 'Spectral', serif;
    background: var(--dungeon-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.dungeon-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1f1f2e 50%, #0a0a0f 100%);
    animation: gatePulse 3s ease-in-out infinite;
}

@keyframes gatePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.gate-chamber {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #1f1f2e, #151520);
    border: 3px solid var(--flame-gold);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.3),
                0 0 100px rgba(124, 58, 237, 0.2),
                inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.torch {
    position: absolute;
    top: 20px;
    width: 30px;
    height: 40px;
    background: var(--flame-orange);
    border-radius: 50% 50% 0 0;
    animation: torchFlicker 1.5s ease-in-out infinite;
}

.torch-left {
    left: 20px;
}

.torch-right {
    right: 20px;
}

@keyframes torchFlicker {
    0%, 100% {
        box-shadow: 0 0 15px var(--flame-orange),
                    0 0 30px var(--flame-red);
    }
    50% {
        box-shadow: 0 0 25px var(--flame-orange),
                    0 0 50px var(--flame-red);
    }
}

.gate-content {
    text-align: center;
}

.skull-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: skullFloat 2s ease-in-out infinite;
}

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

.gate-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--flame-gold);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    margin-bottom: 15px;
}

.gate-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.gate-btn {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-enter {
    background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
    border-color: var(--flame-gold);
    color: white;
}

.gate-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.5);
}

.gate-leave {
    background: var(--dungeon-stone);
    border-color: var(--text-dim);
    color: var(--text-light);
}

.gate-leave:hover {
    background: var(--dungeon-grey);
    transform: translateY(-3px);
}

.dungeon-realm {
    display: none;
    position: relative;
}

.dungeon-realm.visible {
    display: block;
}

.fog-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 15, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.dungeon-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(220, 38, 38, 0.3), transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    animation: particleDrift 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 200px 200px, -300px 300px, 250px -250px; }
}

.crypt-banner {
    background: linear-gradient(90deg,
        var(--dungeon-black) 0%,
        var(--flame-red) 50%,
        var(--dungeon-black) 100%);
    padding: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: bannerGlow 2s ease-in-out infinite;
}

@keyframes bannerGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
    }
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner-icon {
    font-size: 24px;
    animation: iconSpin 3s linear infinite;
}

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

.banner-message {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
}

.dungeon-header {
    background: linear-gradient(180deg, var(--dungeon-dark) 0%, transparent 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dungeon-logo {
    text-decoration: none;
}

.logo-emblem {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emblem-flame {
    font-size: 40px;
    animation: flamePulse 2s ease-in-out infinite;
}

@keyframes flamePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--flame-orange));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px var(--flame-red));
    }
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--flame-gold);
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.crypt-nav {
    display: flex;
    gap: 40px;
}

.crypt-link {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.crypt-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flame-gold);
    transition: width 0.3s ease;
}

.crypt-link:hover {
    color: var(--flame-gold);
}

.crypt-link:hover::after {
    width: 100%;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background: var(--flame-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.throne-chamber {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg,
        var(--dungeon-black) 0%,
        var(--dungeon-dark) 50%,
        var(--dungeon-black) 100%);
}

.chamber-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 70%);
    animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.chamber-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.throne-emblem {
    display: inline-block;
    background: linear-gradient(135deg, var(--mystical-purple), var(--shadow-blue));
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--flame-gold);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.emblem-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.throne-headline {
    font-family: 'Cinzel', serif;
    margin-bottom: 30px;
}

.headline-top {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--flame-orange);
    text-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
    margin-bottom: 10px;
}

.headline-main {
    display: block;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--flame-gold), var(--flame-orange), var(--flame-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.8));
    }
}

.throne-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.throne-signal {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--dungeon-stone);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--flame-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.signal-pulse {
    width: 15px;
    height: 15px;
    background: var(--flame-red);
    border-radius: 50%;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px var(--flame-red);
    }
    50% {
        box-shadow: 0 0 25px var(--flame-red), 0 0 40px var(--flame-orange);
    }
}

.signal-text {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--flame-gold);
    letter-spacing: 2px;
}

.chamber-flames {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
}

.flame {
    width: 80px;
    height: 120px;
    background: linear-gradient(to top, var(--flame-red), var(--flame-orange), var(--flame-gold));
    border-radius: 50% 50% 0 0;
    animation: flameFlicker 2s ease-in-out infinite;
}

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

.dungeon-section {
    padding: 100px 40px;
    position: relative;
}

.vault-container,
.arsenal-container,
.sanctum-container,
.chamber-container,
.warning-container,
.codex-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vault-heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--flame-gold);
    background: var(--dungeon-stone);
    padding: 8px 25px;
    border-radius: 20px;
    border: 1px solid var(--flame-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.heading-text {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--flame-gold);
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
    margin-bottom: 20px;
}

.heading-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--flame-gold), transparent);
    margin: 0 auto;
}

.vault-section {
    background: linear-gradient(180deg, var(--dungeon-black), var(--dungeon-dark));
}

.vault-grid {
    display: grid;
    gap: 30px;
}

.vault-panel {
    background: linear-gradient(145deg, var(--dungeon-grey), var(--dungeon-stone));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vault-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
}

.panel-top h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--flame-gold);
    margin-bottom: 20px;
}

.panel-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.arsenal-section {
    background: var(--dungeon-dark);
}

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

.arsenal-item {
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.arsenal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arsenal-item:hover {
    transform: translateY(-5px);
    border-color: var(--mystical-purple);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
}

.arsenal-item:hover::before {
    opacity: 1;
}

.item-header {
    margin-bottom: 20px;
}

.item-number {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--mystical-purple);
    opacity: 0.3;
}

.item-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--flame-gold);
    margin-bottom: 15px;
}

.item-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dim);
}

.footer-indicator.active {
    background: var(--flame-red);
    box-shadow: 0 0 15px var(--flame-red);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-label {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.sanctum-section {
    background: linear-gradient(180deg, var(--dungeon-dark), var(--dungeon-black));
}

.sanctum-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

.details-box {
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.box-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--flame-gold);
    margin-bottom: 20px;
}

.box-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.game-frame {
    background: linear-gradient(145deg, var(--dungeon-grey), var(--dungeon-stone));
    border: 3px solid var(--flame-gold);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(245, 158, 11, 0.3);
}

.frame-header {
    background: var(--dungeon-dark);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--flame-gold);
}

.frame-lights {
    display: flex;
    gap: 10px;
}

.light-orb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.light-orb.red {
    background: var(--flame-red);
    box-shadow: 0 0 10px var(--flame-red);
}

.light-orb.yellow {
    background: var(--flame-gold);
    box-shadow: 0 0 10px var(--flame-gold);
}

.light-orb.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.frame-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--flame-gold);
    letter-spacing: 2px;
}

.frame-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
}

.status-orb {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% {
        box-shadow: 0 0 10px #10b981;
    }
    50% {
        box-shadow: 0 0 20px #10b981;
    }
}

.game-viewport {
    background: var(--dungeon-black);
    min-height: 600px;
}

.chamber-section {
    background: var(--dungeon-dark);
}

.chamber-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portrait-frame {
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 3px solid var(--flame-gold);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
    display: flex;
    justify-content: center;
}

.portrait-frame img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-block {
    background: linear-gradient(145deg, var(--dungeon-grey), var(--dungeon-stone));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.text-block:hover {
    transform: translateX(10px);
    border-color: var(--mystical-purple);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.block-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--flame-gold);
    margin-bottom: 15px;
}

.block-content {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.warning-section {
    background: linear-gradient(180deg, var(--dungeon-black), var(--dungeon-dark));
}

.warning-box {
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 3px solid var(--flame-red);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(220, 38, 38, 0.4);
}

.warning-header {
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange));
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.warning-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    color: white;
}

.warning-indicators {
    display: flex;
    gap: 15px;
}

.indicator-light {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    animation: warningBlink 1s ease-in-out infinite;
}

.indicator-light:nth-child(2) {
    animation-delay: 0.3s;
}

.indicator-light:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes warningBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 15px white;
    }
    50% {
        opacity: 0.3;
    }
}

.warning-body {
    padding: 40px;
}

.warning-message {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.codex-section {
    background: var(--dungeon-dark);
}

.codex-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.codex-scroll {
    background: linear-gradient(145deg, var(--dungeon-grey), var(--dungeon-stone));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.codex-scroll:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.4);
}

.scroll-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
}

.scroll-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--flame-gold);
}

.scroll-seal {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--mystical-purple);
    background: rgba(124, 58, 237, 0.2);
    padding: 6px 15px;
    border-radius: 15px;
    border: 1px solid var(--mystical-purple);
    letter-spacing: 1px;
}

.scroll-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.dungeon-footer {
    background: linear-gradient(180deg, var(--dungeon-black), var(--dungeon-dark));
    border-top: 3px solid var(--flame-gold);
}

.footer-warning-bar {
    background: linear-gradient(90deg,
        var(--dungeon-dark) 0%,
        var(--shadow-blue) 50%,
        var(--dungeon-dark) 100%);
    padding: 15px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.warning-flames {
    display: flex;
    gap: 15px;
}

.flame-orb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.flame-orb.red {
    background: var(--flame-red);
    animation: flameBlink 1s ease-in-out infinite;
}

.flame-orb.blue {
    background: #3b82f6;
    animation: flameBlink 1s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes flameBlink {
    0%, 100% {
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        box-shadow: 0 0 25px currentColor;
    }
}

.warning-text {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-link {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--flame-gold);
}

.footer-notice {
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-icon {
    font-size: 32px;
}

.notice-header h4 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--flame-red);
}

.notice-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.notice-text strong {
    color: var(--flame-gold);
}

.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.copyright-seal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--text-dim);
}

.seal-symbol {
    font-size: 18px;
    color: var(--flame-gold);
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, var(--dungeon-stone), var(--dungeon-grey));
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    border-color: var(--flame-gold);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.badge-item img {
    width: 64px;
    height: 44px;
}

.badge-label {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .sanctum-layout,
    .chamber-layout,
    .codex-layout {
        grid-template-columns: 1fr;
    }

    .arsenal-grid {
        grid-template-columns: 1fr;
    }

    .header-wrapper {
        padding: 0 20px;
    }

    .crypt-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dungeon-dark);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 2px solid var(--flame-gold);
    }

    .crypt-nav.active {
        right: 0;
    }

    .nav-burger {
        display: flex;
        z-index: 1000;
    }

    .headline-main {
        font-size: 48px;
    }

    .chamber-flames {
        padding: 0 20px;
    }

    .flame {
        width: 50px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .gate-chamber {
        margin: 20px;
        padding: 40px 30px;
    }

    .gate-title {
        font-size: 28px;
    }

    .gate-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .gate-btn {
        width: 100%;
    }

    .heading-text {
        font-size: 36px;
    }

    .headline-main {
        font-size: 36px;
    }

    .throne-chamber {
        padding: 80px 20px;
    }

    .dungeon-section {
        padding: 60px 20px;
    }

    .footer-base {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}
.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #ffffff;
}

.content-block p,
.content-block ul {
    color: rgba(226, 226, 226, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: rgba(0, 0, 0, 0);
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}