/* =====================================
   $WHEEL - MONEY RAINBOW THEME
   Clean, Colorful, Casino Vibes
   ===================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* The $WHEEL Color Palette - Money Theme */
    --bg-dark: #0d1f0d;
    --bg-gradient: linear-gradient(180deg, #0a1a0a 0%, #0d2810 50%, #0a1a0a 100%);
    --bg-card: rgba(10, 40, 20, 0.9);
    --bg-card-light: rgba(20, 60, 30, 0.8);

    /* Gold Accents */
    --gold: #ffd700;
    --gold-light: #ffe44d;
    --gold-dark: #c9a000;
    --gold-glow: rgba(255, 215, 0, 0.5);

    /* Money Green */
    --money-green: #00c853;
    --money-green-light: #5efc82;
    --money-green-dark: #009624;
    --green-glow: rgba(0, 200, 83, 0.4);

    /* Rainbow Wheel Colors */
    --wheel-red: #e53935;
    --wheel-orange: #fb8c00;
    --wheel-yellow: #fdd835;
    --wheel-green: #43a047;
    --wheel-blue: #1e88e5;
    --wheel-purple: #8e24aa;
    --wheel-pink: #d81b60;

    /* Text */
    --text-white: #ffffff;
    --text-light: #e8f5e9;
    --text-muted: #a5d6a7;

    /* Fonts */
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sizing */
    --wheel-size: min(480px, 70vw);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* =====================================
   BACKGROUND - Money Rain Effect
   ===================================== */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 200, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        var(--bg-gradient);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 100px 100px, var(--gold), transparent),
        radial-gradient(2px 2px at 300px 200px, var(--money-green), transparent),
        radial-gradient(1px 1px at 500px 150px, var(--gold-light), transparent),
        radial-gradient(2px 2px at 200px 400px, var(--money-green-light), transparent),
        radial-gradient(1px 1px at 400px 300px, var(--gold), transparent);
    background-size: 600px 500px;
    animation: money-float 30s linear infinite;
    opacity: 0.6;
}

@keyframes money-float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-500px);
    }
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =====================================
   LAYOUT
   ===================================== */

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* =====================================
   HEADER - $WHEEL Branding
   ===================================== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: 0 0 30px var(--gold-glow), inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

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

.logo-wheel {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    animation: logo-spin 10s linear infinite;
}

.logo-wheel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wheel-emoji {
    display: none;
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-ring,
.ring-2 {
    display: none;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow:
        2px 2px 0 var(--gold-dark),
        0 0 20px var(--gold-glow);
    letter-spacing: 2px;
}

.logo-tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--money-green-light);
    letter-spacing: 1px;
}

.header-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--money-green);
    border-radius: var(--radius-md);
    box-shadow: 0 0 15px var(--green-glow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--green-glow);
}

.clickable-ca {
    cursor: pointer;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.clickable-ca:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
    border-color: #00ffff;
}

.clickable-ca:active {
    transform: translateY(0) scale(0.98);
}


.pulse-glow {
    animation: none;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.live-indicator .stat-icon {
    animation: live-pulse 1s ease-in-out infinite;
}

.live-text {
    color: var(--money-green-light) !important;
}

@keyframes live-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* =====================================
   MAIN CONTENT
   ===================================== */

.main-content {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 1rem;
    flex: 1;
}

/* =====================================
   SIDE PANELS
   ===================================== */

.glass-panel {
    background: var(--bg-card);
    border: 2px solid var(--money-green);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 20px var(--green-glow);
}

.history-panel,
.holders-panel {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 220px);
}

.panel-header {
    margin-bottom: 1rem;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon {
    font-size: 1.3rem;
}

.panel-decoration {
    height: 3px;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--gold), var(--money-green), transparent);
    border-radius: 2px;
}

.history-list,
.holders-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.history-list::-webkit-scrollbar,
.holders-list::-webkit-scrollbar {
    width: 6px;
}

.history-list::-webkit-scrollbar-track,
.holders-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb,
.holders-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* History Items */
.history-item {
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.history-item:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.history-item.latest {
    border-color: var(--money-green);
    background: rgba(0, 200, 83, 0.15);
    box-shadow: 0 0 15px var(--green-glow);
}

.history-rank {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.history-address {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.history-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.4rem;
}

.history-amount {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--money-green-light);
    font-weight: 600;
}

.history-prize {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.history-tx-link {
    font-size: 0.75rem;
    color: var(--money-green);
    text-decoration: none;
    background: rgba(0, 200, 83, 0.2);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.history-tx-link:hover {
    background: rgba(0, 200, 83, 0.4);
    color: var(--text-white);
}

.history-item.has-tx {
    border-color: var(--gold);
}

.history-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
}

.panel-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.total-distributed {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
}

.dist-label {
    color: var(--text-muted);
}

.dist-value {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Holder Items */
.holder-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem;
    margin-bottom: 0.4rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.holder-item:hover {
    border-color: var(--gold);
}

.holder-rank {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
}

.holder-rank.top-3 {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 0 10px var(--gold-glow);
}

.holder-rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #888);
}

.holder-rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.holder-info {
    flex: 1;
    min-width: 0;
}

.holder-address {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.holder-percentage {
    font-size: 0.75rem;
    color: var(--money-green-light);
}

.holder-bar {
    height: 4px;
    margin-top: 0.3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.holder-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--money-green), var(--gold));
    border-radius: 2px;
}

/* Empty States */
.history-empty,
.holders-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* =====================================
   WHEEL SECTION
   ===================================== */

.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

/* Live Badge */
.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 83, 0.2);
    border: 2px solid var(--money-green);
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--money-green-light);
    box-shadow: 0 0 15px var(--green-glow);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--money-green);
    border-radius: 50%;
    animation: dot-pulse 1s ease-in-out infinite;
    box-shadow: 0 0 10px var(--money-green);
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-ring {
    position: relative;
    width: 100px;
    height: 100px;
}

.countdown-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.countdown-bg {
    fill: none;
    stroke: rgba(255, 215, 0, 0.2);
    stroke-width: 4;
}

.countdown-progress {
    fill: none;
    stroke: var(--gold);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.countdown-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--gold-glow);
}

.countdown-unit {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.2rem;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--money-green-light);
    letter-spacing: 2px;
    order: -1;
    margin-bottom: 0.5rem;
}

/* Wheel Wrapper */
.wheel-wrapper {
    position: relative;
}

.wheel-outer-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    box-shadow:
        0 0 30px var(--gold-glow),
        inset 0 0 30px var(--gold-glow);
}

.ring-lights {
    display: none;
}

/* Wheel Container */
.wheel-container {
    position: relative;
    width: var(--wheel-size);
    height: var(--wheel-size);
}

.wheel-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--wheel-size) + 80px);
    height: calc(var(--wheel-size) + 80px);
    background: radial-gradient(circle,
            var(--gold-glow) 0%,
            rgba(0, 200, 83, 0.2) 40%,
            transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.glow-2 {
    display: none;
}

#wheelCanvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

/* Wheel Pointer - Red Arrow like the brand */
.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pointer-arrow {
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 50px solid #c62828;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.pointer-arrow::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -18px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 42px solid #e53935;
}

.pointer-glow,
.pointer-shadow {
    display: none;
}

.wheel-container.spinning .pointer-arrow {
    animation: pointer-shake 0.08s ease-in-out infinite;
}

@keyframes pointer-shake {

    0%,
    100% {
        transform: translateX(-50%) rotate(-2deg);
    }

    50% {
        transform: translateX(-50%) rotate(2deg);
    }
}

/* Wheel Center - Gold Hub */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.center-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 50%;
    box-shadow:
        0 0 30px var(--gold-glow),
        inset 0 -5px 10px rgba(0, 0, 0, 0.3);
}

.center-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.center-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    box-shadow:
        inset 0 2px 5px rgba(255, 255, 255, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.center-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: logo-spin 8s linear infinite;
}

.center-text {
    font-size: 1.5rem;
}

/* Spin Button */
.manual-spin-btn {
    position: relative;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 5px 30px var(--gold-glow),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.manual-spin-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 40px var(--gold-glow),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.manual-spin-btn:active {
    transform: translateY(0);
}

.manual-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

@keyframes shine-slide {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

/* =====================================
   WINNER ANNOUNCEMENT
   ===================================== */

.winner-announcement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 26, 10, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.winner-announcement.show {
    display: flex;
}

.winner-confetti {
    display: none;
}

.winner-content {
    position: relative;
    padding: 3rem 4rem;
    background: var(--bg-card);
    border: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 480px;
    box-shadow: 0 0 60px var(--gold-glow);
    animation: winner-pop 0.5s ease-out;
}

@keyframes winner-pop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.winner-rays {
    display: none;
}

.winner-badge {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.winner-title {
    margin-bottom: 1.5rem;
}

.winner-label {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow:
        2px 2px 0 var(--gold-dark),
        0 0 30px var(--gold-glow);
    letter-spacing: 4px;
}

.winner-sparkles {
    display: none;
}

.winner-address-container {
    margin-bottom: 1.5rem;
}

.winner-address {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--money-green);
    border-radius: var(--radius-md);
}

.winner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.winner-stat {
    text-align: center;
}

.ws-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.ws-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--money-green-light);
}

.winner-close {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--money-green-light), var(--money-green), var(--money-green-dark));
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--green-glow);
}

.winner-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px var(--green-glow);
}

/* =====================================
   HOW IT WORKS
   ===================================== */

.how-it-works {
    margin-top: 1rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 25px var(--gold-glow);
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--gold-glow);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.step-card {
    flex: 1;
    max-width: 200px;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--money-green);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.step-number {
    width: 35px;
    height: 35px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1a1a;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--gold-glow);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.step-arrow {
    color: var(--gold);
    font-size: 2rem;
    opacity: 0.7;
}

/* =====================================
   FOOTER
   ===================================== */

.footer {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--money-green);
    border-radius: var(--radius-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.token-address-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.token-address {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-white);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--money-green);
    border-radius: var(--radius-sm);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--gold-glow);
}

.copy-icon {
    font-size: 0.9rem;
}

.footer-branding {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .wheel-section {
        order: 1;
    }

    .history-panel {
        order: 2;
    }

    .holders-panel {
        order: 3;
    }

    .history-panel,
    .holders-panel {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0.5rem;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .header-stats {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    :root {
        --wheel-size: min(340px, 90vw);
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animations */
.countdown-value.pulse {
    animation: count-pulse 0.5s ease-in-out infinite;
    color: var(--money-green-light) !important;
}

@keyframes count-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}