/* ZYRA WEB3 DESIGN SYSTEM - BLUE & RED CREATOR GRADIENT */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0b0b10;
    --bg-card: rgba(16, 16, 26, 0.6);
    --bg-card-hover: rgba(22, 22, 36, 0.85);
    --bg-input: rgba(8, 8, 14, 0.9);
    
    /* Brand custom colors: Blue and Red Gradient */
    --brand-blue: #00d2ff;
    --brand-red: #ff2a5f;
    --brand-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-red) 100%);
    --brand-gradient-hover: linear-gradient(135deg, #00bcd4 0%, #e91e63 100%);
    
    --neon-green: var(--brand-blue);
    --neon-green-glow: rgba(0, 210, 255, 0.35);
    --neon-green-dim: rgba(0, 210, 255, 0.08);
    --neon-green-border: rgba(0, 210, 255, 0.2);
    
    --purple-accent: var(--brand-red);
    --purple-glow: rgba(255, 42, 95, 0.35);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a6b5;
    --text-muted: #5d6374;
    
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-active: rgba(0, 210, 255, 0.45);
    --border-radius: 14px;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET & BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* BACKGROUND ORBS - RED AND BLUE */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: screen;
    animation: pulse-orb 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, var(--neon-green-glow) 0%, transparent 70%);
}

.orb-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes pulse-orb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.15);
    }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Premium zoom build-up reveal animation for images and canvases */
.reveal img, .reveal canvas {
    opacity: 0 !important;
    transform: scale(0.92) translateY(12px) !important;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.reveal.revealed img, .reveal.revealed canvas {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}

/* staggered animation delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* HEADER STYLE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.logo-small {
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 8px 4px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-gradient);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* CONNECT WALLET BUTTON */
.connect-wallet-btn {
    background: transparent;
    border: 1px solid var(--neon-green-border);
    color: var(--text-primary);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: inset 0 0 0 transparent;
}

.connect-wallet-btn:hover {
    border-color: var(--brand-blue);
    background-color: var(--neon-green-dim);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2), inset 0 0 10px rgba(0, 210, 255, 0.1);
    transform: translateY(-1px);
}

.connect-wallet-btn.connected {
    background: var(--brand-gradient);
    border-color: transparent;
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}



/* MAIN CONTENT CONTAINER */
.content-container {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 80px auto 0 auto;
    padding: 60px 24px 80px 24px;
}

/* PAGE LOADER */
.page-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--brand-blue);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.page-loader p {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
}

/* HERO SECTION */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--neon-green-dim) 0%, transparent 100%);
    border-left: 3px solid var(--brand-blue);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--brand-blue);
    width: fit-content;
    border-radius: 0 4px 4px 0;
}

.hero-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-blue);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--brand-blue); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1.5px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.hero-title span {
    display: inline;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 520px;
}

/* TYPEWRITER ANIMATION STYLES */
.typewriter-container {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--brand-red);
    min-height: 28px;
    display: flex;
    align-items: center;
}

.typewriter-cursor {
    border-right: 2px solid var(--brand-blue);
    margin-left: 2px;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--brand-blue); }
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn {
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.25);
}

.btn-primary:hover {
    background: var(--brand-gradient-hover);
    box-shadow: 0 0 30px rgba(255, 42, 95, 0.45), 0 0 15px rgba(0, 210, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-blue);
    transform: translateY(-2px);
}

/* 3D MINECRAFT SKIN CANVAS CONTAINER */
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(0, 210, 255, 0.2);
    aspect-ratio: 0.85;
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45)), url('/uploads/minecraft_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.skin-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
    outline: none;
}

.skin-canvas:active {
    cursor: grabbing;
}

/* METRICS STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, var(--stat-color, var(--brand-blue)), transparent);
    opacity: 0.6;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-active);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.04);
}

.stat-label {
    font-size: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.stat-change {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ABOUT SECTION (CREATOR BIO) */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 1.2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.about-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* EXPLORE PAGE & CARDS GRID */
.explore-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.explore-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
}

.explore-toolbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    gap: 12px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.filter-btn.active {
    background-color: var(--neon-green-dim);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-fast);
}

/* Card reveal sweep shine effect */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.card.revealed::after {
    left: 150%;
    transition: left 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-active);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.05);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-youtube { background-color: #ef4444; color: #fff; }
.badge-twitch { background-color: #a855f7; color: #fff; }
.badge-tiktok { background-color: #000; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.badge-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.card-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.card-actions {
    margin-top: 8px;
}

.card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.card-btn:hover {
    background-color: var(--neon-green-dim);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

/* DASHBOARD / TELEMETRY PAGE */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.dashboard-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--brand-blue);
    font-size: 16px;
}

.panel-title-badge {
    background-color: var(--neon-green-dim);
    border: 1px solid var(--neon-green-border);
    color: var(--brand-blue);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

/* STREAM SCHEDULE LIST */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.schedule-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.schedule-day {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.schedule-time {
    color: var(--text-secondary);
}

.schedule-status {
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.schedule-row.active {
    border-color: var(--neon-green-border);
    background-color: var(--neon-green-dim);
}

.schedule-row.active .schedule-status {
    color: var(--brand-blue);
    font-weight: 700;
}

/* SETUP LIST */
.setup-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.setup-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.setup-category {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.setup-value {
    color: var(--text-primary);
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 6px;
}

/* SIMULATED WEB3 TELEMETRY GRAPH - USING GRADIENT BARS */
.telemetry-chart {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding: 20px 0 10px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease-in-out;
    height: var(--bar-height, 20px);
}

/* Stagger bar colors using red and blue */
.chart-bar-wrapper:nth-child(3) .chart-bar {
    background: linear-gradient(180deg, var(--brand-blue) 0%, rgba(0, 210, 255, 0.05) 100%);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}
.chart-bar-wrapper:nth-child(4) .chart-bar {
    background: linear-gradient(180deg, var(--brand-red) 0%, rgba(255, 42, 95, 0.05) 100%);
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.2);
}
.chart-bar-wrapper:nth-child(5) .chart-bar {
    background: linear-gradient(180deg, #a855f7 0%, rgba(168, 85, 247, 0.05) 100%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}
.chart-bar-wrapper:nth-child(6) .chart-bar {
    background: var(--brand-gradient);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.chart-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.chart-grid-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.line-100 { top: 0%; }
.line-50 { top: 50%; }

/* WALLET CONNECTION MODAL OR DETAILS */
.wallet-detail-box {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.05) 0%, rgba(255, 42, 95, 0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-info-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wallet-connected-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--brand-red);
}

.wallet-connected-status i {
    font-size: 10px;
}

.wallet-address {
    font-family: monospace;
    font-size: 16px;
    color: var(--text-primary);
}

.mint-nft-btn {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mint-nft-btn:hover {
    background: var(--brand-gradient-hover);
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.4);
    transform: translateY(-1px);
}

/* TOAST NOTIFICATIONS */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background-color: #0c0c11;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-blue);
    border-radius: 6px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 280px;
    animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: auto;
}

@keyframes toast-in {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.toast-error {
    border-left-color: #ef4444;
}

.toast i {
    font-size: 16px;
}

.toast-success i { color: var(--brand-blue); }
.toast-error i { color: #ef4444; }

/* ANIMATED BACKGROUND PIXELS & SCANLINES */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 999;
    pointer-events: none;
    opacity: 0.12;
}

.pixel-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.pixel {
    position: absolute;
    bottom: -50px;
    width: var(--px-size);
    height: var(--px-size);
    left: var(--px-left);
    background-color: var(--px-color);
    box-shadow: 0 0 15px var(--px-color), inset 0 0 5px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: float-pixel var(--px-duration) linear infinite;
    animation-delay: var(--px-delay);
}

@keyframes float-pixel {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* PREMIUM NEON BORDER SWEEP & GLOW */
.stat-card, .card, .dashboard-panel {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-card:hover, .card:hover, .dashboard-panel:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(255, 42, 95, 0.6) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(255, 42, 95, 0.15), 
                0 0 10px rgba(0, 210, 255, 0.1) !important;
}

/* CARD SHINE ANIMATION EFFECT */
.stat-card::before, .card::before, .dashboard-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 1;
}

.stat-card:hover::before, .card:hover::before, .dashboard-panel:hover::before {
    left: 150%;
}

/* MINECRAFT SHOWCASE SECTION - VERTICAL TIMELINE STACK */
.gallery-section {
    margin-top: 80px;
    margin-bottom: 120px;
    text-align: center;
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.showcase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.showcase-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* 3D SCROLL REVEAL ROTATION FOR PANELS */
.showcase-list {
    perspective: 1500px;
}

.reveal-rotate {
    opacity: 0;
    transform: rotateX(25deg) translateY(100px) scale(0.92);
    transform-origin: top center;
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-rotate.revealed {
    opacity: 1;
    transform: rotateX(0deg) translateY(0) scale(1);
}

/* IMAGE CONTAINER WITH BACKGROUND & OVERLAY SKIN */
.showcase-image-container {
    position: relative;
    flex: 1.1;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--bg-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) contrast(1.1) saturate(0.85);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.showcase-image-container:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 42, 95, 0.5);
    box-shadow: 0 20px 45px rgba(255, 42, 95, 0.18), 0 0 25px rgba(0, 210, 255, 0.12);
}

.showcase-image-container:hover .showcase-bg {
    transform: scale(1.07);
    filter: brightness(0.7) contrast(1.15) saturate(1.0);
}

/* SKIN LAYER WITHIN ROW */
.showcase-skin-wrapper {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    pointer-events: none;
}

.showcase-skin {
    height: 85%;
    object-fit: contain;
    transform: translateY(50px) scale(0.78) rotate(10deg);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.9s ease, filter 0.5s ease;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.85));
}

.reveal-rotate.revealed .showcase-skin {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
}

.showcase-image-container:hover .showcase-skin {
    transform: translateY(-8px) scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 18px 32px rgba(255, 42, 95, 0.65)) drop-shadow(0 5px 12px rgba(0, 210, 255, 0.3));
    animation: skin-float 2.5s infinite alternate ease-in-out;
}

/* Floating animation while hovering */
@keyframes skin-float {
    0% { transform: translateY(-8px) scale(1.06) rotate(-2deg); }
    100% { transform: translateY(-16px) scale(1.06) rotate(1deg); }
}

/* TEXT CONTENT WITHIN ROW */
.showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.showcase-row:nth-child(even) .showcase-content {
    transform: translateX(-40px);
    text-align: right;
    align-items: flex-end;
}

.reveal-rotate.revealed .showcase-content {
    opacity: 1;
    transform: translateX(0);
}

.showcase-number {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 2.5px;
    color: var(--brand-red);
    text-shadow: 0 0 10px rgba(255, 42, 95, 0.25);
}

.showcase-row:nth-child(even) .showcase-number {
    color: var(--brand-blue);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.25);
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.showcase-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 460px;
}

/* RESPONSIVE LAYOUT FOR SHOWCASE TIMELINE */
@media (max-width: 860px) {
    .showcase-row, .showcase-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .showcase-row:nth-child(even) .showcase-content {
        align-items: center;
        text-align: center;
    }
    
    .showcase-image-container {
        width: 100%;
        max-width: 480px;
        height: 300px;
    }
    
    .showcase-content {
        align-items: center;
        text-align: center;
        transform: translateY(30px) !important;
    }
    
    .reveal-rotate.revealed .showcase-content {
        transform: translateY(0) !important;
    }
}

/* FOOTER STYLING */
.footer {
    background-color: #030305;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-secondary);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.social-icon-btn.yt:hover { background-color: rgba(239, 68, 68, 0.15); border-color: #ef4444; color: #ef4444; }
.social-icon-btn.tw:hover { background-color: rgba(168, 85, 247, 0.15); border-color: #a855f7; color: #a855f7; }
.social-icon-btn.tk:hover { background-color: rgba(255, 255, 255, 0.08); border-color: #fff; color: #fff; }
.social-icon-btn.ig:hover { background-color: rgba(236, 72, 153, 0.15); border-color: #ec4899; color: #ec4899; }

.footer-copy {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0 16px;
    }
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 44px;
        white-space: normal;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- OVER-THE-TOP INTERACTIVE GLOW EFFECTS & PARTICLES --- */

/* Mouse Follower Glow */
.mouse-trail {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.55) 0%, rgba(255, 42, 95, 0.25) 100%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    filter: blur(4px);
    mix-blend-mode: screen;
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    will-change: top, left;
}

.mouse-trail.hovered {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 42, 95, 0.65) 0%, rgba(0, 210, 255, 0.25) 100%);
    filter: blur(2px);
}

/* 3D Floating Background Cubes */
.cube-container {
    position: absolute;
    top: var(--c-top);
    left: var(--c-left);
    width: var(--c-size);
    height: var(--c-size);
    perspective: 1000px;
    z-index: -1;
    pointer-events: none;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube var(--c-dur) linear infinite;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--c-color);
    background-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 12px var(--c-color), 0 0 8px var(--c-color);
    opacity: 0.45;
}

.front  { transform: rotateY(  0deg) translateZ(calc(var(--c-size) / 2)); }
.back   { transform: rotateY(180deg) translateZ(calc(var(--c-size) / 2)); }
.left   { transform: rotateY(-90deg) translateZ(calc(var(--c-size) / 2)); }
.right  { transform: rotateY( 90deg) translateZ(calc(var(--c-size) / 2)); }
.top    { transform: rotateX( 90deg) translateZ(calc(var(--c-size) / 2)); }
.bottom { transform: rotateX(-90deg) translateZ(calc(var(--c-size) / 2)); }

@keyframes rotate-cube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Blocky Minecraft Particles on Click */
.neon-pixel-particle {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    border-radius: 2px;
    opacity: 1;
    box-shadow: 0 0 8px currentColor;
    animation: particle-fly 1.2s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
}

@keyframes particle-fly {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dest-x), var(--dest-y)) scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* Spotlight lighting gradients for cards */
.stat-card, .dashboard-panel, .card {
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 210, 255, 0.08),
        transparent 50%
    ), var(--bg-card);
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.stat-card:hover, .dashboard-panel:hover, .card:hover {
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.1);
}

/* Glowing text scramble */
.scramble-glow {
    color: var(--brand-red);
    text-shadow: 0 0 10px var(--brand-red), 0 0 20px var(--brand-red);
}

/* Continuous border glowing animated beams */
.stat-card::before, .dashboard-panel::before, .card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before, .dashboard-panel:hover::before, .card:hover::before {
    opacity: 0.85;
}
