/* ================================================================
   SPYFLY - UNIFIED STYLES
   Corporate Identity: #2DD47F (Green), #001213 (Dark), #9945ff (Purple)
   ================================================================ */

/* Imports & CSS Variables */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-color: #2DD47F;
    --secondary-color: #2DD47F;
    --dark-bg: #001213;
    --darker-bg: #000810;
    --text-color: #eeeeee;
    --accent-color: #2DD47F;
    --purple-color: #9945ff;
    --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

body.loading .main-content {
    opacity: 0;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Consistent link hover styles following corporate identity */
#header nav ul li a:hover:not(.header-cta-btn):not(.nav-cta-btn) {
    color: var(--purple-color) !important;
    text-decoration: none;
}

/* Content links hover (not buttons) */
.section p a:hover:not(.btn):not(.cta-btn),
.footer-content a:hover:not(.btn):not(.cta-btn),
.content a:hover:not(.btn):not(.cta-btn) {
    color: var(--purple-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

section.section {
    padding: var(--section-padding);
}

/* Typography */
h1, h2, h3, .section-title, .headline, .genesis-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--primary-color);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(45, 212, 127, 0.5);
}

.headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.subheadline {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    background-color: var(--darker-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(153, 69, 255, 0.2);
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 10px 28px;
    background-color: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 25px rgba(153, 69, 255, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

#header .logo img {
    height: 56px !important;
    width: auto !important;
    max-height: 56px !important;
    max-width: none !important;
    object-fit: contain;
}

#header .logo h1 {
    display: none;
}


#header nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

#header nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

#header nav ul li:last-child {
    margin-left: 40px;
}

nav ul li a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Inter", sans-serif;
}

.nav-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(153, 69, 255, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.nav-cta-btn::after {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(45, 212, 127, 0.15));
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-genesis {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(153, 69, 255, 0.4);
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-5px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #22c55e);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(153, 69, 255, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    border: 2px solid transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(153,69,255,0.5);
}

.genesis-cta a.btn-genesis:hover {
    background: linear-gradient(135deg, #7c3aed, #22c55e);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(153, 69, 255, 0.6);
    color: #fff;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
    position: relative;
    padding: 100px 0 120px 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Special 24/7 Styling */
.highlight-24-7 {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: gradientShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

.highlight-24-7::before {
    content: '24/7';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.7;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite reverse;
}

/* Image Comparison Slider */
.image-comparison-container {
    max-width: 680px;
    margin: 60px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(45, 212, 127, 0.15);
    position: relative;
    background-color: #000;
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: containerGlow 3s ease-in-out infinite alternate;
}

@keyframes containerGlow {
    0% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(45, 212, 127, 0.15); }
    100% { box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(45, 212, 127, 0.3); }
}

.image-comparison {
    position: relative;
    width: 100%;
    height: 450px;
    aspect-ratio: auto;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.after-image img, .before-image img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background-color: #000;
    padding: 0;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 25%;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 30;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(45, 212, 127, 0.6));
}

.slider-line {
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(45, 212, 127, 0.8);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 15px rgba(45, 212, 127, 0.8); }
    100% { box-shadow: 0 0 25px rgba(45, 212, 127, 1), 0 0 35px rgba(45, 212, 127, 0.6); }
}

.slider-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--primary-color), #22c55e);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(45, 212, 127, 0.8), 0 0 30px rgba(45, 212, 127, 0.4);
    animation: circleGlow 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes circleGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(45, 212, 127, 0.8), 0 0 30px rgba(45, 212, 127, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(45, 212, 127, 1), 0 0 45px rgba(45, 212, 127, 0.6);
    }
}

/* SpyFly Genesis Pass Section */
#genesis-pass {
    background: linear-gradient(135deg, var(--darker-bg), #001a1f);
    position: relative;
    overflow: hidden;
}

.genesis-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.genesis-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.genesis-icon {
    font-size: 2rem;
    filter: hue-rotate(120deg);
}

.genesis-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(45, 212, 127, 0.5);
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

.genesis-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 40px 0;
}

.genesis-benefits {
    flex: 1;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 500;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.6);
}

.genesis-fly {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.genesis-fly-video {
    width: 380px;
    height: auto;
    mix-blend-mode: screen;
    background: transparent;
    object-fit: cover;
    object-position: center top;
    clip-path: inset(0 0 15% 0);
}

.genesis-disclaimer {
    margin: 30px 0;
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
}

.genesis-cta {
    margin: 40px 0;
}

.genesis-link {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-family: monospace;
}

.genesis-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tagline-icon {
    font-size: 1.5rem;
    animation: buzz 2s ease-in-out infinite;
}

/* Meet Jeffrey Section */
#meet-jeffrey {
    background-color: var(--darker-bg);
}

.jeffrey-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    flex-direction: row-reverse;
}

.jeffrey-image {
    flex: 1;
    text-align: center;
}

.jeffrey-image video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    mix-blend-mode: normal;
    filter: brightness(1.1);
    transform: scaleX(-1);
}

.jeffrey-image video:hover {
    transform: scaleX(-1) scale(1.05) rotate(-3deg);
}

.jeffrey-text {
    flex: 1;
    text-align: center;
}

.jeffrey-text p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* How It Works Section */
#how-it-works {
    position: relative;
    overflow: hidden;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.fly-decorator {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 120px;
    height: 120px;
}

.animated-fly {
    max-width: 100%;
    height: auto;
    animation: fly 10s infinite alternate;
}

.steps-fly-video {
    position: absolute;
    right: -5%;
    top: -30px;
    max-width: 380px;
    height: auto;
    z-index: 5;
    transition: transform 0.3s ease;
    mix-blend-mode: normal;
    filter: brightness(1.1);
}

.steps-fly-video:hover {
    transform: rotate(5deg) scale(1.05);
}

/* Highlights Section */
#highlights {
    background-color: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    padding: 30px;
    text-align: center;
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Photo Album Styles */
.photo-album {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    position: relative;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.photo-item {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-large {
    width: 480px;
    height: 420px;
    transform: rotate(-2deg);
    z-index: 3;
}

.photo-medium {
    width: 480px;
    height: 360px;
    transform: rotate(3deg);
    z-index: 2;
}

.photo-small {
    width: 340px;
    height: 320px;
    transform: rotate(-1deg);
    z-index: 1;
}

.album-photo, .album-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.photo-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.photo-item:hover .album-photo,
.photo-item:hover .album-video {
    transform: scale(1.02);
}

.photo-shadow {
    position: absolute;
    bottom: -10px;
    left: 5px;
    right: 5px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

/* FAQ Section */
#faq {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.faq-question {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Leaderboard Preview Section */
#leaderboard-preview {
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    position: relative;
    overflow: hidden;
}

/* New horizontal layout - KPIs across top, leaders below full width */
.leaderboard-stats-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.leaderboard-mini-fullwidth {
    width: 100%;
    background: var(--darker-bg);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Legacy styles for old layout (keeping for compatibility) */
.leaderboard-preview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.leaderboard-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: "Orbitron", monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    font-family: "Inter", sans-serif;
}

.leaderboard-mini {
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(45, 212, 127, 0.2);
}

.leaderboard-header h3 {
    font-family: "Orbitron", monospace;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.live-indicator {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leader-row {
    display: grid;
    grid-template-columns: 40px 1fr 80px 50px;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 212, 127, 0.1);
}

.leader-row:last-child {
    border-bottom: none;
}

.rank {
    font-size: 1.2rem;
    text-align: center;
}

.username {
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
}

.pnl.positive {
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Orbitron", monospace;
    font-size: 0.9rem;
}

.winrate {
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Orbitron", monospace;
    font-size: 0.9rem;
}

.leaderboard-cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(45, 212, 127, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(45, 212, 127, 0.3);
}

.leaderboard-cta h3 {
    font-family: "Orbitron", monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leaderboard-cta p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 25px;
    font-family: "Inter", sans-serif;
}

/* Footer */
#footer {
    background-color: var(--darker-bg);
    padding: 30px 0;
}

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

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Loader Animation Styles */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #001213, #000);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.loading .loader-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.loader-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-icon {
    position: relative;
    width: 120px;
    height: 120px;
    animation: iconSpin 2s ease-in-out;
    transform-origin: center;
}

.loader-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(45, 212, 127, 0.6));
}

.loader-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(45, 212, 127, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.impact-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
}

.ring-1 {
    width: 160px;
    height: 160px;
    top: -20px;
    left: -20px;
    border-color: rgba(153, 69, 255, 0.8);
    animation: ringExplosion 0.6s ease-out 2s forwards;
}

.ring-2 {
    width: 220px;
    height: 220px;
    top: -50px;
    left: -50px;
    border-color: rgba(45, 212, 127, 0.6);
    animation: ringExplosion 0.8s ease-out 2.2s forwards;
}

.ring-3 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
    border-color: rgba(153, 69, 255, 0.4);
    animation: ringExplosion 1s ease-out 2.4s forwards;
}

.crack-effect {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: -50vh;
    left: -50vw;
    opacity: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 41%, rgba(255,255,255,0.1) 43%, transparent 44%),
        linear-gradient(-45deg, transparent 40%, rgba(255,255,255,0.1) 41%, rgba(255,255,255,0.1) 43%, transparent 44%),
        linear-gradient(135deg, transparent 30%, rgba(45, 212, 127, 0.2) 31%, rgba(45, 212, 127, 0.2) 33%, transparent 34%);
    animation: crackEffect 0.4s ease-out 2.6s forwards;
    pointer-events: none;
}

.screen-shatter {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: -50vh;
    left: -50vw;
    pointer-events: none;
}

.shard {
    position: absolute;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.3), rgba(45, 212, 127, 0.2));
    opacity: 0;
    transform: scale(0);
}

.shard-1 {
    width: 200px;
    height: 100px;
    top: 20%;
    left: 10%;
    clip-path: polygon(0 0, 100% 30%, 80% 100%, 20% 80%);
    animation: shardExplode 0.8s ease-out 2.8s forwards;
}

.shard-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 15%;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    animation: shardExplode 0.9s ease-out 2.9s forwards;
}

.shard-3 {
    width: 180px;
    height: 120px;
    bottom: 30%;
    left: 20%;
    clip-path: polygon(0 0, 60% 0, 100% 100%, 40% 100%);
    animation: shardExplode 1s ease-out 3s forwards;
}

.shard-4 {
    width: 120px;
    height: 200px;
    top: 10%;
    right: 30%;
    clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
    animation: shardExplode 0.7s ease-out 2.7s forwards;
}

.shard-5 {
    width: 160px;
    height: 80px;
    bottom: 15%;
    right: 25%;
    clip-path: polygon(0 20%, 80% 0, 100% 80%, 20% 100%);
    animation: shardExplode 1.1s ease-out 3.1s forwards;
}

.shard-6 {
    width: 100px;
    height: 180px;
    top: 60%;
    left: 5%;
    clip-path: polygon(0 0, 100% 20%, 80% 100%, 20% 80%);
    animation: shardExplode 0.6s ease-out 2.5s forwards;
}

.loader-overlay.boom {
    animation: screenFlash 0.3s ease-out 2.6s;
}

.loading .main-content {
    opacity: 0;
    pointer-events: none;
}

.main-content {
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

/* Sound Controls */
#sound-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1500;
}

.sound-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(153, 69, 255, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.sound-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.5);
}

.sound-btn:active {
    transform: scale(0.95);
}

/* Flying Fly Animation */
#flying-fly {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 5100;
    pointer-events: auto;
    top: 50%;
    left: 50%;
    transform-origin: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

/* Fly Swatter Game */
#fly-swatter {
    position: fixed;
    width: 120px;
    height: 120px;
    z-index: 5200;
    pointer-events: auto;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    /* Removed transition to fix mouse lag when picked up */
    justify-content: center;
    transition: all 0.2s ease;
}

.swatter-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4));
}

#fly-swatter:hover .swatter-image {
    transform: scale(1.1);
    filter: drop-shadow(3px 3px 12px rgba(45, 212, 127, 0.6));
}

#fly-swatter.picked-up {
    pointer-events: none !important;
    z-index: 5201;
    transition: none !important; /* Disable transitions when picked up for smooth following */
    opacity: 1 !important; /* Ensure visibility */
    visibility: visible !important; /* Force visibility */
    display: flex !important; /* Ensure display */
}

#fly-swatter.returning {
    pointer-events: none !important;
    transition: all 1s ease-in-out !important;
}

#fly-swatter.smack {
    animation: smackAnimation 0.3s ease-out;
}

@keyframes smackAnimation {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(-15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Smashed fly animation styles */
.smashed-fly {
    position: fixed;
    width: 80px;
    height: 80px;
    z-index: 5000;
    pointer-events: none;
    animation: squashAppear 0.5s ease-out;
}

.smashed-fly-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.6));
}

@keyframes squashAppear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fly smacked (hidden) state */
#flying-fly.smacked {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
    transition: all 0.3s ease;
}

.fly-image {
    width: 50px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    mix-blend-mode: multiply;
    background: transparent;
}

.fly-wings {
    position: absolute;
    width: 70px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.fly-wings::before,
.fly-wings::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 15px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(200, 200, 255, 0.4));
    border-radius: 60% 40% 60% 40%;
    animation: wingFlap 0.06s infinite alternate;
}

.fly-wings::before {
    left: 10px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1) rotate(15deg);
    opacity: 0.8;
}

.fly-wings::after {
    right: 10px;
    top: 50%;
    transform: translateY(-50%) scaleX(1) rotate(-15deg);
    opacity: 0.7;
}

/* Section Animation */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, 10px) rotate(-5deg);
    }
    50% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(-3deg);
    }
    100% {
        transform: translate(20px, 15px) rotate(8deg);
    }
}

@keyframes genesisFlyFloat {
    0% { transform: translateY(0px) rotate(-5deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes buzz {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes iconSpin {
    0% {
        transform: scale(0.3) rotate(0deg);
        filter: blur(20px);
    }
    50% {
        transform: scale(0.7) rotate(180deg);
        filter: blur(5px);
    }
    100% {
        transform: scale(1) rotate(360deg);
        filter: blur(0px);
    }
}

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

@keyframes ringExplosion {
    0% {
        transform: scale(0.5);
        opacity: 0;
        border-width: 4px;
    }
    50% {
        opacity: 1;
        border-width: 2px;
    }
    100% {
        transform: scale(2);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes crackEffect {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes shardExplode {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    30% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(2) rotate(360deg) translate(200px, -200px);
    }
}

@keyframes screenFlash {
    0% {
        background: linear-gradient(135deg, #001213, #000);
    }
    50% {
        background: linear-gradient(135deg, rgba(45, 212, 127, 0.3), rgba(153, 69, 255, 0.2));
    }
    100% {
        background: linear-gradient(135deg, #001213, #000);
    }
}

@keyframes wingFlap {
    0% {
        transform: translateY(-50%) scaleY(1) rotateX(0deg);
    }
    100% {
        transform: translateY(-50%) scaleY(0.7) rotateX(45deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .jeffrey-content {
        flex-direction: column;
        text-align: center;
    }
    
    .leaderboard-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile responsiveness for new horizontal layout */
    .leaderboard-stats-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .leaderboard-mini-fullwidth {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    #header {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
    }
    
    #header nav ul {
        margin-left: 20px;
        gap: 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .headline {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .subheadline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    #hero {
        padding: 80px 0 100px 0;
    }
    
    .image-comparison {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .genesis-title {
        font-size: 2rem;
    }
    
    .genesis-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .genesis-benefits {
        text-align: center;
    }
    
    .genesis-fly-video {
        width: 250px;
    }
    
    .benefit-item {
        font-size: 1.1rem;
    }
    
    .photo-album {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        overflow-x: visible;
    }
    
    .photo-item {
        margin: 0;
    }
    
    .photo-large, .photo-medium, .photo-small {
        width: 300px;
        height: 280px;
        transform: rotate(0deg);
    }
    
    .leader-row {
        grid-template-columns: 30px 1fr 70px 40px;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .loader-icon {
        width: 80px;
        height: 80px;
    }
    
    .shard {
        transform: scale(0.7);
    }
    
    .ring-1 { width: 120px; height: 120px; top: -10px; left: -10px; }
    .ring-2 { width: 160px; height: 160px; top: -30px; left: -30px; }
    .ring-3 { width: 200px; height: 200px; top: -50px; left: -50px; }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .photo-large, .photo-medium, .photo-small {
        width: 280px;
        height: 260px;
        transform: rotate(0deg);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   LEADERBOARD PAGE STYLES - SPYFLY 2025  
   =================================================================== */

/* Hide fly game elements on leaderboard page - they were covering content */
.leaderboard-page #flying-fly,
.leaderboard-page #fly-swatter,
.leaderboard-page #sound-control {
    display: none !important;
}

/* Ensure leaderboard sections are visible above any overlays */
.leaderboard-page #leaderboard-hero,
.leaderboard-page #leaderboard-controls,
.leaderboard-page #main-leaderboard,
.leaderboard-page #footer,
.leaderboard-page #prize-hub {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--dark-bg) !important; /* Force consistent background */
}

.leaderboard-page {
    background: var(--dark-bg) !important;
    min-height: 100vh;
}

/* Force consistent background for all sections on leaderboard page */
.leaderboard-page .section {
    background: var(--dark-bg) !important;
    opacity: 1 !important;
}

/* Leaderboard Hero Section */
#leaderboard-hero {
    background: var(--dark-bg); /* Consistent background */
    padding: 60px 0 40px;
    text-align: center;
}

#leaderboard-hero .headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Leaderboard Controls */
#leaderboard-controls {
    padding: 20px 0;
    border-bottom: 1px solid rgba(45, 212, 127, 0.2);
}

.controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.period-selector {
    display: flex;
    background: rgba(45, 212, 127, 0.1);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(45, 212, 127, 0.3);
}

.period-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.period-btn.active {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    transform: scale(1.05);
}

.period-btn:hover:not(.active) {
    background: rgba(153, 69, 255, 0.2);
    color: var(--purple-color);
}

.metric-selector select {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Main Leaderboard Table */
#main-leaderboard {
    padding: 40px 0 60px;
}

.leaderboard-table-container {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table th {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(45, 212, 127, 0.2));
    color: var(--text-color);
    padding: 20px 15px;
    text-align: left;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-table td {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(45, 212, 127, 0.1);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.leaderboard-table tr:hover {
    background: rgba(45, 212, 127, 0.05);
}

/* Special styling for top 3 */
.rank-1 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    border-left: 4px solid #ffd700;
}

.rank-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), transparent);
    border-left: 4px solid #c0c0c0;
}

.rank-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), transparent);
    border-left: 4px solid #cd7f32;
}

.rank-medal {
    font-size: 1.2rem;
    margin-right: 8px;
}

.trader-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trader-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.premium {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
}

.badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.pnl.negative {
    color: #ff4444;
    font-weight: 600;
}

.winrate.excellent {
    color: var(--primary-color);
    font-weight: 600;
}

.winrate.good {
    color: #22c55e;
    font-weight: 600;
}

.winrate.average {
    color: #fbbf24;
    font-weight: 600;
}

.volume {
    font-weight: 600;
    color: var(--primary-color);
}

.best-trade {
    font-weight: 600;
    color: var(--primary-color);
}

/* Join Competition CTA */
.join-competition {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(45, 212, 127, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(45, 212, 127, 0.3);
}

.join-competition h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.join-competition p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Navigation Back Button */
.back-btn {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-right: 20px;
}

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

nav ul li a.active {
    color: var(--purple-color) !important;
}

/* Exception: leaderboard button when active should be white (CI standards) */
.header-cta-btn.active,
.nav-cta-btn.active {
    color: #ffffff !important;
}

/* Prize Promotion System */
.prize-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: prizeGlow 3s ease-in-out infinite alternate;
}

@keyframes prizeGlow {
    0% { box-shadow: 0 0 20px rgba(45, 212, 127, 0.3); }
    100% { box-shadow: 0 0 30px rgba(45, 212, 127, 0.6); }
}

.prize-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.prize-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.prize-text {
    flex: 1;
}

.prize-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.prize-countdown {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.btn-prize {
    background: linear-gradient(135deg, var(--primary-color), #22c55e);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(45, 212, 127, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(45, 212, 127, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(45, 212, 127, 0.5); }
}

.prize-pill {
    background: linear-gradient(135deg, var(--primary-color), #22c55e);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.header-pills {
    display: flex;
    align-items: center;
}

/* Prize Hub Styles */
#prize-hub {
    background: var(--dark-bg); /* Consistent with page background */
    padding: 60px 0;
    margin-bottom: 80px; /* Add significant spacing after prize section for better visual separation */
    opacity: 1 !important; /* Force visibility - override any hiding rules */
}

/* Total Jackpot Banner - Prominent Display */
.total-jackpot-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(45, 212, 127, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.total-jackpot-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.jackpot-content {
    position: relative;
    z-index: 2;
}

.jackpot-label {
    color: #ffd700;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.jackpot-amount {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jackpot-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Big Prize Display in Visual Section */
.big-prize-display {
    margin-bottom: 30px;
}

.prize-spotlight {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.15), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(45, 212, 127, 0.1) 50%, transparent 60%);
    animation: prizeShine 2s infinite;
}

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

.prize-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.prize-value {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(45, 212, 127, 0.5);
    position: relative;
    z-index: 2;
}

.prize-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Enhanced Transition Stats */
.countdown-inline {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 5px;
}

.countdown-inline span {
    background: rgba(45, 212, 127, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin: 0 2px;
}

.countdown-expired {
    color: #ffd700;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Updated Transition Visual Layout */
.transition-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Sophisticated View Styles */
.sophisticated-kpis {
    margin: 40px 0;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.kpi-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-card.highlight {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 127, 0.15);
}

.kpi-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.kpi-value {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.kpi-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ecosystem Total Jackpot Banner */
.total-jackpot-banner.ecosystem {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(45, 212, 127, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.total-jackpot-banner.ecosystem .jackpot-label {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* History Section */
.history-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(45, 212, 127, 0.2);
}

/* Hall of Fame */
.hall-of-fame {
    margin-bottom: 50px;
}

.hall-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hall-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.winners-carousel-container {
    overflow: hidden;
    position: relative;
}

.winners-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.winner-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.winner-rank {
    font-size: 2rem;
    margin-bottom: 15px;
}

.winner-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.winner-prize {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-competition {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.winner-type {
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.no-winners {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    font-style: italic;
}

/* Past Tournaments List */
.past-tournaments h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tournament-item {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tournament-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 212, 127, 0.15);
}

.tournament-summary {
    flex: 1;
}

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

.tournament-header h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.tournament-type {
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tournament-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tournament-stats .stat {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.no-tournaments {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    font-style: italic;
}

/* Sophisticated Historical Section */
.sophisticated-historical-section {
    margin: 80px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(45, 212, 127, 0.2);
}

.sophisticated-historical-section .subsection-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

/* Historical KPIs */
.historical-kpis {
    margin-bottom: 60px;
}

.historical-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

/* Hall of Fame Section */
.hall-of-fame-section {
    margin-bottom: 60px;
}

.hall-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.competition-indicator {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.hall-of-fame-display {
    margin-top: 30px;
}

.hall-winners-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hall-winner-card {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.08), rgba(45, 212, 127, 0.02));
    border: 2px solid rgba(45, 212, 127, 0.25);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hall-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(45, 212, 127, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hall-winner-card:hover::before {
    opacity: 1;
}

.hall-winner-card.champion {
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.03));
    transform: scale(1.02);
}

.hall-winner-card.champion::before {
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15), transparent);
}

.hall-winner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(45, 212, 127, 0.3);
    border-color: rgba(45, 212, 127, 0.4);
}

.hall-winner-card.champion:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.winner-position {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.winner-details {
    position: relative;
    z-index: 2;
}

.winner-username {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.winner-prize {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-performance {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.no-hall-data, .no-winners-competition {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    font-style: italic;
}

/* Championship History Table */
.championship-history-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.championship-history-table {
    background: rgba(45, 212, 127, 0.03);
    border: 1px solid rgba(45, 212, 127, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.history-table-header {
    background: rgba(45, 212, 127, 0.1);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr;
    gap: 20px;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-table-body {
    display: flex;
    flex-direction: column;
}

.history-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1fr 1fr;
    gap: 20px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(45, 212, 127, 0.05);
    transition: background-color 0.3s ease;
    align-items: center;
}

.history-table-row:hover {
    background: rgba(45, 212, 127, 0.05);
}

.history-table-row:last-child {
    border-bottom: none;
}

.history-table-row.no-data {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 25px;
    font-style: italic;
}

.table-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.table-col-full {
    grid-column: 1 / -1;
    text-align: center;
}

.competition-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.competition-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.comp-type-badge {
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comp-type-badge.pnl {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.comp-type-badge.volume {
    background: rgba(138, 43, 226, 0.2);
    color: #ba68c8;
}

.comp-type-badge.winrate {
    background: rgba(0, 191, 255, 0.2);
    color: #00bfff;
}

.prize-amount {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

.winners-count {
    color: white;
    font-weight: 600;
}

.comp-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Status Messages for Testing */
.status-message {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.status-message h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.status-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Button Styles for Sophisticated View */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(45, 212, 127, 0.3);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(45, 212, 127, 0.1);
    border-color: var(--primary-color);
}

.btn-ghost.active {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Test Controls */
.test-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 127, 0.3);
}

.test-controls button {
    font-size: 0.8rem;
    padding: 6px 12px;
    white-space: nowrap;
}

/* Fix Prize Distribution Section Names */
.prize-distribution-section,
.prize-structure-section {
    margin: 60px 0;
}

.prize-distribution-section .subsection-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.prize-distribution-grid,
.prize-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.prize-position,
.prize-tier-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-position.champion,
.prize-tier-card.champion {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.prize-position.runner-up,
.prize-tier-card.runner-up {
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(192, 192, 192, 0.05);
}

.prize-position.third,
.prize-tier-card.third-place {
    border-color: rgba(205, 127, 50, 0.4);
    background: rgba(205, 127, 50, 0.05);
}

.prize-position:hover,
.prize-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.15);
}

.position-icon,
.tier-rank {
    font-size: 2rem;
    margin-bottom: 15px;
}

.position-details h4,
.tier-details .tier-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.prize-amount,
.tier-amount {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.percentage,
.tier-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Next Championships Section */
.next-championships-section,
.next-competitions-section {
    margin: 60px 0;
}

.next-championships-section .subsection-title,
.next-competitions-section .subsection-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.next-championships-grid,
.next-competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.next-championship-card,
.next-comp-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-championship-card:hover,
.next-comp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 127, 0.15);
}

.next-championship-header,
.next-comp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.next-championship-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.championship-type,
.next-comp-type {
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.championship-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.championship-prize,
.next-comp-prize {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
}

.championship-title,
.next-comp-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.next-comp-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .prize-value {
        font-size: 2rem;
    }
    
    .total-jackpot-banner {
        padding: 20px;
    }
    
    .kpi-row {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .kpi-card {
        padding: 20px 15px;
    }
    
    .kpi-value {
        font-size: 1.5rem;
    }
    
    .winner-card {
        min-width: 200px;
    }
    
    .tournament-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tournament-stats {
        gap: 15px;
    }
    
    .hall-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .test-controls {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .test-controls button {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .historical-kpi-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .hall-winners-display {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: none;
        margin: 20px 0;
    }
    
    .hall-winner-card {
        padding: 25px 15px;
    }
    
    .winner-position {
        font-size: 2.5rem;
    }
    
    .winner-username {
        font-size: 1.2rem;
    }
    
    .winner-prize {
        font-size: 1.3rem;
    }
    
    .history-table-header,
    .history-table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .history-table-header {
        display: none; /* Hide header on mobile for cleaner look */
    }
    
    .history-table-row {
        padding: 15px 20px;
        border: 1px solid rgba(45, 212, 127, 0.1);
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .table-col::before {
        content: attr(data-label) ': ';
        font-weight: 600;
        color: var(--primary-color);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* Transition View Styles - Consistent with Launch View */
.transition-hero-card {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.1), rgba(153, 69, 255, 0.05));
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.live-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(239, 68, 68, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3); }
}

.upcoming-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9500, #ff7b00);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
    animation: upcomingGlow 2s infinite;
}

@keyframes upcomingGlow {
    0% { box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 149, 0, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3); }
}

/* Stay Tuned Hero Section */
.stay-tuned-hero {
    background: linear-gradient(135deg, var(--darker-bg), rgba(45, 212, 127, 0.05));
    border: 2px solid rgba(45, 212, 127, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stay-tuned-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 127, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.stay-tuned-content {
    position: relative;
    z-index: 2;
}

.stay-tuned-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    animation: stayTunedPulse 3s infinite;
}

@keyframes stayTunedPulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
        transform: scale(1.02);
    }
}

.stay-tuned-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(45, 212, 127, 0.3);
}

.stay-tuned-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.stay-tuned-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


/* Mobile Responsiveness for Stay Tuned Hero */
@media (max-width: 768px) {
    .stay-tuned-hero {
        padding: 30px 20px;
    }
    
    .stay-tuned-title {
        font-size: 2.2rem;
    }
    
    .stay-tuned-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .stay-tuned-actions {
        flex-direction: column;
        align-items: center;
    }
}

.transition-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.transition-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.transition-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transition-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(45, 212, 127, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(45, 212, 127, 0.2);
}

.transition-stat i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.transition-stat strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.transition-stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.transition-cta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.transition-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.current-standings-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
}

.standings-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

.standings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.standing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: rgba(45, 212, 127, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 127, 0.1);
}

.standing-row.leader {
    background: rgba(45, 212, 127, 0.1);
    border-color: rgba(45, 212, 127, 0.3);
}

.standing-row .position {
    font-size: 1.1rem;
    width: 30px;
}

.standing-row .trader {
    color: white;
    font-weight: 500;
    flex: 1;
    margin-left: 10px;
}

.standing-row .performance {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.standings-footer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

/* Prize Structure Section */
.prize-structure-section {
    margin-bottom: 50px;
}

.prize-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.prize-tier-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.prize-tier-card.champion {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.tier-rank {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tier-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tier-amount {
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tier-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Next Competitions Section */
.next-competitions-section {
    margin-bottom: 50px;
}

.next-competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.next-comp-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.next-comp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 127, 0.15);
}

.next-comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.next-comp-type {
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.next-comp-prize {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

.next-comp-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.next-comp-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design for Transition View */
@media (max-width: 768px) {
    .transition-hero-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .transition-title {
        font-size: 2rem;
    }
    
    .transition-cta {
        flex-direction: column;
    }
    
    .prize-breakdown-grid,
    .next-competitions-grid {
        grid-template-columns: 1fr;
    }
}

/* Launch View Countdown Timer */
.launch-countdown {
    margin: 30px 0;
    text-align: center;
}

.launch-countdown h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(45, 212, 127, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px 15px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0.1;
    z-index: 0;
}

.countdown-item span {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(45, 212, 127, 0.3);
    position: relative;
    z-index: 1;
}

.countdown-item label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.countdown-expired {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    background: rgba(45, 212, 127, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(45, 212, 127, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(45, 212, 127, 0.6);
    }
}

/* Mobile responsiveness for countdown */
@media (max-width: 768px) {
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 10px;
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .countdown-item label {
        font-size: 0.7rem;
    }
}

/* ===================================================================
   TRANSITION VIEW - LIVE COMPETITION TICKER & PRIZE BREAKDOWN
   =================================================================== */

.live-ticker-section {
    margin: 40px 0;
    background: rgba(45, 212, 127, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.live-ticker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 50%, var(--primary-color) 100%);
    opacity: 0.05;
}

.ticker-container {
    display: grid;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.live-competition-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 18, 19, 0.9));
    border: 2px solid rgba(255, 68, 68, 0.6);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.live-competition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.05), transparent, rgba(45, 212, 127, 0.05));
    z-index: 0;
}

.live-competition-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.competition-badges {
    display: flex;
    gap: 10px;
}

.badge-live {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse-glow 2s infinite;
}

.badge-type {
    background: rgba(45, 212, 127, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.competition-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.competition-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.prize-display {
    text-align: left;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(45, 212, 127, 0.5);
    font-family: 'Orbitron', monospace;
}

.prize-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

.competition-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-join {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border: none;
    padding: 15px 25px;
    font-weight: 700;
    animation: glow-pulse 2s infinite;
    min-width: 160px;
}

.btn-view-leaderboard {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
}

.btn-view-leaderboard:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    }
}

.live-text {
    color: #ff4444;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.competition-details {
    flex: 1;
}

.competition-details h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-family: 'Orbitron', monospace;
}

.competition-stats {
    display: flex;
    gap: 20px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.btn-live {
    animation: glow-pulse 2s infinite;
    min-width: 120px;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(45, 212, 127, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(45, 212, 127, 0.8);
    }
}

.upcoming-ticker {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.ticker-header {
    margin-bottom: 15px;
}

.upcoming-label {
    color: #ff9500;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ticker-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.upcoming-comp-item {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid #ff9500;
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 200px;
    text-align: center;
    position: relative;
}

/* Competition type specific styling */
.upcoming-comp-item.pnl {
    border-color: var(--primary-color);
    background: rgba(45, 212, 127, 0.1);
}

.upcoming-comp-item.volume {
    border-color: #9945ff;
    background: rgba(153, 69, 255, 0.1);
}

.upcoming-comp-item.winrate {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.comp-type-badge {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 0.9;
}

.comp-name {
    display: block;
    color: #ff9500;
    font-weight: 600;
    margin-bottom: 5px;
}

.comp-prize {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Prize Breakdown Section */
.prize-breakdown-section {
    margin: 50px 0;
}

.prize-incentive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.prize-breakdown-card {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.1), rgba(45, 212, 127, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prize-breakdown-card.main-prize {
    transform: scale(1.05);
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.prize-rank {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.prize-amount {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.main-prize .prize-amount {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.prize-desc {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.prize-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Live Battle Status */
.live-battle-status {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 18, 19, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.live-battle-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05), transparent);
    animation: battle-pulse 3s ease-in-out infinite;
}

@keyframes battle-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.battle-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.battle-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
}

.fire-icon {
    font-size: 1.5rem;
    animation: flicker 1.5s infinite;
}

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

.battle-title h4 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-family: 'Orbitron', monospace;
}

.battle-pulse {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-red 1s infinite;
}

.battle-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.current-leaders {
    margin: 40px 0;
}

.leader-spotlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.leader-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: spotlight-sweep 4s infinite;
}

@keyframes spotlight-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.leader-crown {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

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

.leader-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.leader-name {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-performance {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(45, 212, 127, 0.4);
}

.leader-status {
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.challengers-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.leader-challenger {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.rank-badge {
    font-size: 1.5rem;
    opacity: 0.8;
}

.challenger-info .name {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.challenger-info .performance {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.battle-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-battle {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    animation: battle-glow 2s infinite;
}

@keyframes battle-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.8); }
}

.battle-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urgency-pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

.urgency-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 600;
}

.progress-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.progress-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.leader-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.leader-item {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.leader-first {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.leader-rank {
    font-size: 1.8rem;
}

.leader-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.leader-performance {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.join-urgency {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.urgency-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .live-competition-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .prize-incentive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prize-breakdown-card.main-prize {
        transform: none;
        order: -1;
    }
    
    .leader-preview {
        flex-direction: column;
        gap: 15px;
    }
    
    .competition-stats {
        justify-content: center;
    }
    
    .ticker-scroll {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===================================================================
   SOPHISTICATED VIEW - COMPACT & EXCITING DESIGN
   =================================================================== */

.sophisticated-header {
    margin-bottom: 40px;
}

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

.kpi-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.kpi-card.highlight {
    border-color: var(--primary-color);
    background: rgba(45, 212, 127, 0.1);
    transform: scale(1.02);
}

.kpi-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(45, 212, 127, 0.2);
}

.kpi-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.kpi-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
}

.kpi-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Sophisticated Live Competition */
.sophisticated-live-competition {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 18, 19, 0.8));
    border: 2px solid rgba(255, 68, 68, 0.6);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.live-comp-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

.live-label {
    color: #ff4444;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.live-comp-title {
    color: white;
    font-size: 1.4rem;
    margin: 0;
    font-family: 'Orbitron', monospace;
}

.live-comp-details {
    display: flex;
    gap: 30px;
}

.detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

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

.live-status-text {
    color: #ff4444;
}

.live-comp-actions {
    display: flex;
    gap: 15px;
}

.btn-compact {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Upcoming Competitions */
.upcoming-competitions-section {
    margin: 40px 0;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: 'Orbitron', monospace;
}

.upcoming-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.upcoming-card {
    background: rgba(45, 212, 127, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upcoming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.upcoming-card:hover::before {
    transform: scaleX(1);
}

.upcoming-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.upcoming-card.volume {
    border-color: rgba(153, 69, 255, 0.4);
}

.upcoming-card.volume::before {
    background: #9945ff;
}

.upcoming-card.winrate {
    border-color: rgba(255, 215, 0, 0.4);
}

.upcoming-card.winrate::before {
    background: #ffd700;
}

.upcoming-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.upcoming-type-badge {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

.upcoming-prize {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
}

.upcoming-title {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.upcoming-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hall of Fame */
.hall-of-fame-section {
    margin: 50px 0;
}

.champions-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.champion-card {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.1), rgba(45, 212, 127, 0.05));
    border: 2px solid rgba(45, 212, 127, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.champion-card.champion-winner {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    transform: scale(1.05);
}

.champion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.3);
}

.champion-rank {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.champion-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.champion-prize {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
}

.champion-performance {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.proof-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.proof-link:hover {
    opacity: 0.8;
}

/* Historical Section */
.historical-section {
    margin: 50px 0;
}

.history-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ghost:hover,
.btn-ghost.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(45, 212, 127, 0.1);
}

.history-view {
    display: none;
}

.history-view.active {
    display: block;
}

.competition-timeline {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-marker {
    background: rgba(45, 212, 127, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    height: fit-content;
}

.timeline-content h4 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.timeline-details {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.no-history {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    font-style: italic;
}

.detailed-placeholder,
.analytics-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sophisticated-live-competition {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .live-comp-details {
        justify-content: center;
        gap: 20px;
    }
    
    .champions-showcase {
        grid-template-columns: 1fr;
    }
    
    .champion-card.champion-winner {
        transform: none;
        order: -1;
    }
    
    .upcoming-carousel {
        grid-template-columns: 1fr;
    }
    
    .history-controls {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .timeline-details {
        flex-direction: column;
        gap: 5px;
    }
}

.prize-section {
    margin-bottom: 50px;
}

/* ========================================
   LAUNCH VIEW STYLES - BULLISH FROM DAY 1
   ======================================== */

.launch-hero-card {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.15) 0%, rgba(153, 69, 255, 0.15) 100%);
    border: 2px solid rgba(45, 212, 127, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.launch-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(45, 212, 127, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.launch-badge {
    background: linear-gradient(90deg, #2DD47F, #9945ff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

.launch-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 0 0 20px rgba(45, 212, 127, 0.5);
}

.launch-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.launch-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.launch-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.launch-feature i {
    font-size: 24px;
    color: #2DD47F;
    min-width: 30px;
}

.launch-feature div {
    display: flex;
    flex-direction: column;
}

.launch-feature strong {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.launch-feature span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.launch-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.launch-cta .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin: 0;
    animation: bounce-subtle 3s ease-in-out infinite;
}

.launch-cta .btn:not(:last-child) {
    margin-right: 15px;
}

/* For desktop, show buttons side by side */
@media (min-width: 640px) {
    .launch-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Launch buttons row layout (Status 2 specific) */
.launch-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-full-width {
    min-width: 200px;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* Ensure buttons don't break on smaller screens */
@media (max-width: 639px) {
    .launch-buttons-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-full-width {
        width: 100%;
        min-width: auto;
    }
}

.launch-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.launch-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.launch-stats-preview {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: 1px solid rgba(45, 212, 127, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2DD47F;
    text-shadow: 0 0 15px rgba(45, 212, 127, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

.launch-preview-leaderboard {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(153, 69, 255, 0.3);
}

.preview-title {
    color: #9945ff;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 5px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.preview-row:hover {
    background: rgba(45, 212, 127, 0.1);
    transform: translateX(5px);
}

.preview-winner {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
}

.preview-pnl {
    color: #2DD47F;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(45, 212, 127, 0.3);
}

.coming-soon-section {
    margin-top: 60px;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(45, 212, 127, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 127, 0.1), transparent);
    transition: left 0.6s ease;
}

.coming-soon-card:hover::before {
    left: 100%;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 212, 127, 0.4);
    box-shadow: 0 10px 30px rgba(45, 212, 127, 0.2);
}

.coming-soon-card i {
    font-size: 3rem;
    color: #2DD47F;
    margin-bottom: 20px;
}

.coming-soon-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.coming-soon-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Transition View Styles */
.transition-promise {
    background: linear-gradient(45deg, rgba(153, 69, 255, 0.1), rgba(45, 212, 127, 0.1));
    border: 2px solid rgba(153, 69, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.promise-card i {
    font-size: 4rem;
    color: #9945ff;
    margin-bottom: 20px;
}

.promise-card h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.promise-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.history-preview-section {
    margin-top: 60px;
}

.history-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

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

.preview-card i {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.preview-card h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.preview-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.preview-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(45, 212, 127, 0.2);
    transform: translateX(10px);
}

/* Launch View Animations */
@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(45, 212, 127, 0.5); }
    100% { box-shadow: 0 0 20px rgba(45, 212, 127, 0.8); }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Sophisticated View Styles */
.sophisticated-current {
    margin: 40px 0;
}

.sophisticated-upcoming {
    margin: 40px 0;
}

.upcoming-card {
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.upcoming-card h4 {
    color: #9945ff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.upcoming-pool {
    font-size: 2rem;
    color: #2DD47F;
    font-weight: bold;
    margin: 15px 0;
}

.sophisticated-history {
    margin: 60px 0;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    color: #2DD47F;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(45, 212, 127, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 10px;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.winner-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.winner-rank {
    font-size: 2rem;
    margin-bottom: 10px;
}

.winner-name {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.winner-prize {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.winner-competition {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Launch View Mobile Responsiveness */
@media (max-width: 640px) {
    .launch-hero-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .launch-title {
        font-size: 2.5rem;
    }
    
    .launch-stats-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .history-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-stats {
        grid-template-columns: 1fr;
    }
    
    .winners-grid {
        grid-template-columns: 1fr;
    }
}

.current-prize-card {
    background: var(--darker-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.current-prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.1;
}

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

.prize-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.prize-badges {
    display: flex;
    gap: 10px;
}

.prize-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prize-badge.live {
    background: #dc2626;
    color: white;
}

.prize-badge.monthly {
    background: var(--purple-color);
    color: white;
}

.prize-pool {
    margin-bottom: 30px;
}

.pool-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(45, 212, 127, 0.5);
}

.pool-label {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 5px;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    font-family: 'Courier New', monospace;
    margin-top: 10px;
}

.prize-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.breakdown-item {
    background: rgba(45, 212, 127, 0.1);
    border: 1px solid rgba(45, 212, 127, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.breakdown-place {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.breakdown-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.impact-stat {
    text-align: center;
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 25px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.impact-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 8px;
}

.winners-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.winner-card {
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 20px;
    min-width: 250px;
    text-align: center;
    border: 1px solid rgba(45, 212, 127, 0.2);
}

.winner-rank {
    font-size: 2rem;
    margin-bottom: 10px;
}

.winner-username {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.winner-amount {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.winner-proof {
    margin-top: 10px;
}

.winner-proof a {
    color: var(--purple-color);
    text-decoration: none;
    font-size: 0.8rem;
}

.winner-proof a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .prize-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .prize-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pool-amount {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        font-size: 1.5rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Header CTA Button */
.header-cta-btn {
    background: linear-gradient(135deg, var(--purple-color), var(--primary-color));
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(153, 69, 255, 0.4);
}

/* Additional Prize System Styles */
.future-prize-card {
    background: var(--darker-bg);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.future-prize-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.future-pool {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0;
}

.future-start {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 20px;
}

.winner-period {
    color: #ffffff;
    opacity: 0.7;
    font-size: 0.8rem;
    margin-top: 5px;
}

.eligibility-note {
    color: #ffffff;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 10px;
}

.winners-carousel::-webkit-scrollbar {
    height: 6px;
}

.winners-carousel::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 3px;
}

.winners-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Mobile Responsiveness for Leaderboard */
@media (max-width: 768px) {
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .controls-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .leaderboard-table-container {
        overflow-x: auto;
    }
    
    .leaderboard-table {
        min-width: 800px;
    }
    
    #leaderboard-hero .headline {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
    
    .modal-leaderboard {
        overflow-x: auto;
    }
    
    .modal-leaderboard table {
        min-width: 800px;
    }
}

/* Competition Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--darker-bg);
    margin: 2% auto;
    padding: 0;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: linear-gradient(135deg, rgba(45, 212, 127, 0.1), rgba(255, 215, 0, 0.05));
    border-bottom: 1px solid rgba(45, 212, 127, 0.3);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 30px;
}

.competition-info {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(45, 212, 127, 0.2);
}

.competition-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.info-item {
    text-align: center;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.info-value {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-value.prize {
    color: #ffd700;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.competition-type-badge {
    display: inline-block;
    background: rgba(45, 212, 127, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-leaderboard {
    background: var(--dark-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(45, 212, 127, 0.2);
}

.modal-leaderboard h3 {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    text-align: center;
}

.modal-leaderboard table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.modal-leaderboard th,
.modal-leaderboard td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-leaderboard th {
    background: rgba(45, 212, 127, 0.1);
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.modal-leaderboard td {
    color: #ffffff;
}

.modal-leaderboard .username {
    font-weight: 600;
    color: var(--primary-color);
}

.modal-leaderboard .rank {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-align: center;
}

.modal-leaderboard .pnl.positive {
    color: #4CAF50;
    font-weight: 600;
}

.modal-leaderboard .pnl.negative {
    color: #f44336;
    font-weight: 600;
}

.modal-leaderboard .volume {
    font-family: 'Orbitron', monospace;
}

.modal-leaderboard .winner-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}
