/* ==========================================
   OWL ARC - AAA Web3 Custom Stylesheet
   ========================================== */

:root {
    --bg-dark: #040b16;
    --bg-card: #0a192f;
    --bg-card-hover: #0f2444;
    --text-primary: #f5eedc;
    --text-secondary: #8e9bb0;
    --accent-gold: #f9c253;
    --accent-gold-glow: rgba(249, 194, 83, 0.4);
    --accent-gold-dark: #d6982b;
    --accent-cyan: #4cc9f0;
    --accent-red: #e63946;
    --status-green: #2ec4b6;
    --border-color: rgba(249, 194, 83, 0.12);
    --border-highlight: rgba(249, 194, 83, 0.4);
    
    --font-title: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Text Selection */
::selection {
    background: var(--accent-gold);
    color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(249, 194, 83, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* ==========================================
   Particle Canvas & Custom Cursor
   ========================================== */
#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-gold-glow);
    background: rgba(249, 194, 83, 0.05);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

/* Hovering interactive elements enlarges cursor */
button:hover ~ .cursor-glow,
a:hover ~ .cursor-glow,
.card:hover ~ .cursor-glow {
    transform: scale(1.8);
}

/* ==========================================
   Buttons & General Typography
   ========================================== */
a, button {
    cursor: pointer;
}

.highlight-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 12px rgba(249, 194, 83, 0.3);
}

.highlight-status {
    color: var(--status-green);
    text-shadow: 0 0 12px rgba(46, 196, 182, 0.4);
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #050b14;
    border: none;
    padding: 0.85rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 3px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(249, 194, 83, 0.2);
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(249, 194, 83, 0.5);
    color: #000;
}

.glow-btn {
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    padding: 1.1rem 2.8rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.secondary-btn {
    background: rgba(10, 25, 47, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--border-highlight);
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 3px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(249, 194, 83, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.full-width {
    width: 100%;
}

/* ==========================================
   Navigation Bar
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(4, 11, 22, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: radial-gradient(circle, var(--accent-gold), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe49e 45%, #f9c253 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(249, 194, 83, 0.5));
    transition: var(--transition-smooth);
    display: inline-block;
}

.logo-text:hover {
    background: linear-gradient(135deg, #ffffff 0%, #4cc9f0 50%, #f9c253 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(76, 201, 240, 0.8));
    transform: translateY(-1px) scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-x-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.sound-toggle-btn {
    background: rgba(249, 194, 83, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.sound-toggle-btn:hover {
    background: rgba(249, 194, 83, 0.2);
    border-color: var(--accent-gold);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--bg-dark) 90%),
                linear-gradient(to bottom, rgba(4, 11, 22, 0.4) 0%, var(--bg-dark) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    margin-top: 4rem;
    max-width: 900px;
    padding: 0 1.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.2rem;
    background: rgba(249, 194, 83, 0.08);
    border: 1px solid var(--border-highlight);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-gold);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 7.5rem;
    font-weight: 900;
    letter-spacing: 18px;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9));
}

.hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    letter-spacing: 4px;
    z-index: 10;
}

.scroll-indicator .line-wrapper {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line {
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: scrollPulse 2.2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollPulse {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.side-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: rgba(249, 194, 83, 0.15);
    font-family: var(--font-title);
    font-size: 1.1rem;
    letter-spacing: 18px;
    z-index: 5;
    pointer-events: none;
}

.side-text.left { left: 50px; }
.side-text.right { right: 50px; }

/* ==========================================
   General Section Layout
   ========================================== */
section {
    padding: 8rem 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
}

.section-header .line {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}
.section-header .line:last-child {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.header-text {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-subdesc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 4rem;
}

/* ==========================================
   Sneak Peeks Cards
   ========================================== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(4, 11, 22, 0.8), 0 0 20px rgba(249, 194, 83, 0.15);
}

.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.card:hover .card-glare {
    opacity: 1;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(4, 11, 22, 0.85);
    border: 1px solid var(--border-highlight);
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 8px;
    border-radius: 2px;
    backdrop-filter: blur(8px);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0.4rem 0.4rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-num {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.card-name {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.card-footer .kanji {
    color: var(--accent-gold);
    font-family: var(--font-title);
    font-size: 1.3rem;
}

/* ==========================================
   The Rite Section
   ========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.info-box {
    border: 1px solid var(--border-color);
    padding: 3rem 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.info-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.box-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.box-label {
    color: var(--text-secondary);
    font-size: 0.72rem;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.box-value {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.box-sub {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.bg-kanji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-title);
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
    z-index: -1;
}

/* ==========================================
   The Path Section
   ========================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 5rem;
}

.step-card {
    border: 1px solid var(--border-color);
    padding: 3rem 2.2rem;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    background: rgba(15, 36, 68, 0.5);
}

.step-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(249, 194, 83, 0.08);
}

.step-number {
    color: var(--accent-red);
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.step-title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.action-container {
    text-align: center;
}

/* ==========================================
   Infinite Marquee & Footer
   ========================================== */
.marquee-bar {
    background: #02070f;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-title);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer {
    background: #02060d;
    padding: 3rem 4rem;
    border-top: 1px solid var(--border-color);
    z-index: 2;
    position: relative;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer-socials a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    text-decoration: underline;
}

/* ==========================================
   Interactive Stepper Wizard Modal
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 8, 18, 0.9);
    backdrop-filter: blur(24px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.wizard-modal {
    background: linear-gradient(160deg, #091322 0%, #050b14 100%);
    border: 1px solid var(--accent-gold-dark);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(249, 194, 83, 0.22);
    border-radius: 4px;
    padding: 2.8rem;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.wizard-modal::after {
    content: '⛩️';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(249, 194, 83, 0.02);
    pointer-events: none;
}

.modal-overlay.active .wizard-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(249, 194, 83, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(249, 194, 83, 0.2);
}

/* Stepper Header */
.stepper-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.35;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.active .step-num {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(249, 194, 83, 0.4);
    background: rgba(249, 194, 83, 0.1);
    transform: scale(1.1);
}

.step-indicator.active .step-label {
    color: var(--accent-gold);
    font-weight: 700;
}

.step-num {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background: rgba(4, 11, 22, 0.5);
}

.step-label {
    font-family: var(--font-title);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.step-line {
    height: 2px;
    width: 45px;
    background: var(--border-color);
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
}

.step-line.completed {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
    box-shadow: 0 0 10px rgba(249, 194, 83, 0.5);
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeInStep 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-tag {
    color: var(--accent-red);
    font-size: 0.75rem;
    letter-spacing: 3.5px;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.wizard-title {
    font-family: var(--font-title);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.wizard-title.large {
    font-size: 2.6rem;
}

.wizard-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 2.2rem;
}

.wizard-desc strong {
    color: var(--accent-gold);
}

/* Input Boxes */
.input-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.input-box-wrapper input {
    width: 100%;
    background: rgba(4, 11, 22, 0.9);
    border: 1px solid var(--border-highlight);
    padding: 1.15rem 1.4rem 1.15rem 45px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.02rem;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

.input-box-wrapper input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(249, 194, 83, 0.3);
}

.input-box-wrapper.error input {
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.4) !important;
    animation: inputShake 0.4s ease;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

.input-error-msg {
    color: var(--accent-red);
    font-size: 0.82rem;
    margin-top: -1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    min-height: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wizard-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.inline-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.back-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.title-with-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.offerings-badge {
    background: rgba(249, 194, 83, 0.1);
    border: 1px solid var(--border-highlight);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

/* Offerings List (Step 3) */
.offerings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.offering-card {
    background: rgba(4, 11, 22, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.3rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.offering-card:hover {
    border-color: var(--border-highlight);
    background: rgba(10, 25, 47, 0.85);
}

.offering-card.completed {
    border-color: var(--status-green);
    background: rgba(46, 196, 182, 0.08);
}

.offering-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.offering-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(249, 194, 83, 0.06);
    color: var(--accent-gold);
}

.offering-info h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.offering-info p {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.offering-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.65rem 1.3rem;
    border-radius: 3px;
    transition: var(--transition-fast);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.offering-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(249, 194, 83, 0.6);
}

.offering-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.offering-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(249, 194, 83, 0.05);
    color: var(--accent-gold);
}

.offering-info h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.offering-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.offering-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.2rem;
    border-radius: 3px;
    transition: var(--transition-fast);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.offering-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(249, 194, 83, 0.5);
}

/* Gold Pass Card (Step 4) */
.gold-pass-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.gold-pass-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1.6;
    background: linear-gradient(180deg, #101c2e 0%, #060e1a 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(249, 194, 83, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.gold-pass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(249, 194, 83, 0.08), transparent 70%);
    pointer-events: none;
}

.pass-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.pass-logo-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 194, 83, 0.1);
}

.pass-soul-num {
    font-family: var(--font-title);
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: right;
    letter-spacing: 1px;
}

.pass-soul-num strong {
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.sealed-stamp {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.6);
    transform: rotate(-12deg);
}

.pass-center {
    text-align: center;
    z-index: 2;
    margin: 1.5rem 0;
}

.pass-img-container {
    width: 105px;
    height: 105px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(249, 194, 83, 0.6);
    transition: var(--transition-smooth);
}

.pass-img-container:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(249, 194, 83, 0.9);
}

.pass-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pass-handle {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.pass-wallet-tag {
    display: inline-block;
    background: rgba(249, 194, 83, 0.1);
    border: 1px solid var(--border-highlight);
    color: var(--accent-gold);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.candidate-badge {
    display: inline-block;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 4px 12px;
}

.pass-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    z-index: 2;
}

.pass-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.post-link-section {
    background: rgba(4, 11, 22, 0.7);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.post-link-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.post-link-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-input-group {
    display: flex;
    gap: 0.8rem;
}

.input-box-wrapper.compact {
    margin-bottom: 0;
    flex: 1;
}

.input-box-wrapper.compact input {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-size: 0.85rem;
}

.compact-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.75rem;
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1100px) {
    .hero-title { font-size: 5.5rem; }
    .cards-container, .info-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.8rem; letter-spacing: 8px; }
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .side-text { display: none; }
    .cards-container, .info-grid { grid-template-columns: 1fr; }
    section { padding: 5rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .stepper-bar { gap: 0.4rem; }
    .step-line { width: 15px; }
    .wizard-actions.inline-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
}
