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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    /* Brand Colors from Design Requirements */
    --picton-blue: #4CB7FE;
    --lavender-indigo: #8841FF;
    --deep-magenta: #D909C4;
    --indigo: #151C67;
    --rich-black: #010A1B;
    --granite-gray: #585858;
    --white: #FFFFFF;
    
    /* Refined Functional Color Mappings for Better Visual Harmony */
    --primary-color: rgba(76, 183, 254, 0.8);
    --secondary-color: rgba(136, 65, 255, 0.7);
    --accent-color: rgba(217, 9, 196, 0.6);
    --success-color: #00DC82;
    --warning-color: #FFB800;
    --danger-color: #FF3B3B;
    --bg-primary: #151C67;
    --bg-secondary: #010A1B;
    --bg-card: #232530;
    --text-primary: var(--white);
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-brand: linear-gradient(135deg, rgba(76, 183, 254, 0.9) 0%, rgba(136, 65, 255, 0.8) 50%, rgba(21, 28, 247, 0.7) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(136, 65, 255, 0.3) 0%, rgba(217, 9, 196, 0.2) 100%);
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Fixed background using pseudo-element for better mobile support */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 30%, var(--bg-primary) 100%),
        url('images/bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-blend-mode: overlay;
    z-index: -1;
    pointer-events: none;
}

/* Mobile optimization for background */
@media (max-width: 768px) {
    body::before {
        background-size: cover;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
    border-bottom: 2px solid rgba(123, 104, 238, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

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

.logo {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-logo {
    height: auto;
    width: auto;
    max-width: 250px;
    filter: drop-shadow(0 2px 8px rgba(76, 183, 254, 0.3));
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(76, 183, 254, 0.5));
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    align-items: center;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    text-align: left;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    transition: width 0.3s;
}

.nav-link:hover {
    color: #7B68EE;
}

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

/* Desktop Nav Styles */
@media (min-width: 769px) {
    .nav {
        display: flex !important;
        gap: 3rem !important;
        flex-direction: row !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }
    
    .nav-link {
        font-size: 1rem !important;
        padding: 0.5rem 1.5rem !important;
        background: transparent !important;
        border: none !important;
        width: auto !important;
        max-width: none !important;
        display: inline-block !important;
        text-align: left !important;
    }
    
    .nav-link:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span {
    background: var(--primary-color);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    padding-top: calc(4rem + 70px);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        padding-top: 120px;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
        padding-top: 110px;
        margin-top: 0;
    }
}

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

.main-title {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 20px rgba(123, 104, 238, 0.3);
}

.hero-tagline {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.1rem;
    }
}

.hero-cta {
    margin-bottom: 2.5rem;
}

.stay-updated-btn {
    display: inline-block;
    background: var(--gradient-brand);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(76, 183, 254, 0.3);
}

.stay-updated-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 183, 254, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-logo {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
        margin-top: 1rem;
        display: block;
        visibility: visible;
        position: relative;
        z-index: 1;
    }
    
    .hero {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

.hero-title {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(123, 104, 238, 0.3);
    border: 1px solid rgba(123, 104, 238, 0.5);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.25) 0%, rgba(123, 104, 238, 0.25) 50%, rgba(155, 89, 182, 0.25) 100%);
}

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

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Rankings Section */
.rankings-section {
    padding: 5rem 0;
    scroll-margin-top: 100px;
}

@media (max-width: 480px) {
    .rankings-section {
        padding: 3rem 0;
    }
}

.scoring-note {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 50%, rgba(155, 89, 182, 0.1) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.scoring-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.scoring-details {
color: var(--text-secondary);
font-size: 0.9rem;
line-height: 1.4;
}

.scoring-details strong {
color: var(--primary-color);
font-weight: 600;
}

.section-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
gap: 0.5rem;
text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
    text-align: center;
}

.section-title {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(76, 183, 254, 0.3);
}

.filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.rankings-container {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(76, 183, 254, 0.2);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
    width: 100%;
}

.rankings-header {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 150px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    border-bottom: 1px solid rgba(76, 183, 254, 0.3);
    font-weight: 600;
    color: #ffffff;
    align-items: center;
}

.rankings-header .action-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rankings-list {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ranking-item {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 150px;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(76, 183, 254, 0.15);
    transition: all 0.3s ease;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 50%, rgba(155, 89, 182, 0.1) 100%);
    overflow: visible;
}

.ranking-item:nth-child(even) {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
}

.ranking-item:hover {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.25) 0%, rgba(123, 104, 238, 0.25) 50%, rgba(155, 89, 182, 0.25) 100%);
    border-left: 3px solid #7B68EE;
}

.rank-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: #FFF;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.rank-badge.default {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

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

.project-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.project-name {
    font-weight: 600;
}

.rankings-header .volume-col {
    text-align: LEFT;
}

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

.referrals-count {
    color: var(--text-secondary);
}

.action-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: auto;
}


.boost-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    color: white;
    border: 2px solid #7B68EE;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
}

.boost-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.boost-btn:hover::before {
    left: 100%;
}

.boost-btn:hover {
    background: linear-gradient(135deg, #5AA0F2 0%, #8B78FE 50%, #AB69C6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(123, 104, 238, 0.6);
    border-color: #8B78FE;
}

.boost-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(76, 183, 254, 0.3);
}

/* Boost options for rankings (simple dropdown) */
.boost-options {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(-10px);
}

.boost-options.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.boost-menu {
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(123, 104, 238, 0.5);
}

/* Compact boost menu when inside matchup modal */
.boost-options-modal .boost-menu {
    min-width: 260px;
    max-width: min(300px, 85%);
    padding: 0.75rem;
    max-height: 90%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

/* Better touch/hover scrolling */
.boost-options-modal .boost-menu::-webkit-scrollbar {
    width: 6px;
}

.boost-options-modal .boost-menu::-webkit-scrollbar-track {
    background: transparent;
}

.boost-options-modal .boost-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.boost-options-modal .boost-menu::-webkit-scrollbar-thumb:hover {
    background: #0040CC;
}

/* Boost options for tournament brackets (overlay within matchup card) */
.matchup .boost-options-modal {
    position: absolute;
    /* Position relative to the .matchup card (covers entire card) */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: auto;
}

/* Dark overlay backdrop - covers only the matchup card */
.boost-options-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.boost-options-modal.active {
    display: flex;
    opacity: 1;
}

.boost-options-modal .boost-menu {
    position: relative;
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.boost-options-modal.active .boost-menu {
    transform: scale(1);
}

.boost-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    color: var(--text-primary);
}

.boost-option:hover {
    background: var(--bg-card);
}

.boost-option-icon {
    font-size: 1.2rem;
}

.boost-option-content {
    flex: 1;
}

.boost-option-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.boost-option-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Slightly compact options in modal */
.boost-options-modal .boost-option {
    padding: 0.65rem;
    gap: 0.6rem;
}

.boost-options-modal .boost-option-icon {
    font-size: 1.1rem;
}

.boost-options-modal .boost-option-title {
    font-size: 0.875rem;
}

.boost-options-modal .boost-option-desc {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Rewards Section */
.rewards-section {
    margin: 3rem 0;
    text-align: center;
}

.rewards-section h3 {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(76, 183, 254, 0.3);
}

.rewards-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.rewards-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

/* Raffle Section */
.raffle-section {
    padding: 4rem 0;
    scroll-margin-top: 100px;
}

@media (max-width: 480px) {
    .raffle-section {
        padding: 3rem 0;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
}

.raffle-content {
    display: grid;
    gap: 3rem;
    width: 100%;
    overflow-x: hidden;
}

.raffle-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.raffle-rules-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.raffle-rules-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.raffle-rules-image:hover {
    transform: scale(1.02);
}

.raffle-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.raffle-graphic {
    display: flex;
    justify-content: center;
}

.raffle-wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #0052FF 0deg 60deg,
        #00D4FF 60deg 120deg,
        #00DC82 120deg 180deg,
        #FFB800 180deg 240deg,
        #FF3B3B 240deg 300deg,
        #667eea 300deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spin 20s linear infinite;
}

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

.wheel-center {
    width: 200px;
    height: 200px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-color);
}

.wheel-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.wheel-prize {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.raffle-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.raffle-list {
    list-style: none;
    margin-bottom: 2rem;
}

.raffle-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.raffle-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
}

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

.raffle-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.raffle-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.winners-section {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 50%, rgba(155, 89, 182, 0.1) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.winners-section h3 {
    margin-bottom: 1.5rem;
}

.round-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.round-btn {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.round-btn.active {
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    color: white;
    border-color: #7B68EE;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.round-btn.closed {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(123, 104, 238, 0.05) 100%);
    border-color: rgba(76, 183, 254, 0.2);
}

.round-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(123, 104, 238, 0.3) 100%);
    border-color: rgba(123, 104, 238, 0.5);
    transform: translateY(-2px);
}

.round-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.round-btn.current .round-status {
    display: inline-block;
    background: rgba(0, 220, 130, 0.2);
    color: #00DC82;
    border: 1px solid rgba(0, 220, 130, 0.4);
}

.round-btn.active.current .round-status {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.round-btn.closed .round-status {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
    border-radius: 8px;
    border: 1px solid rgba(76, 183, 254, 0.2);
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.winner-item:hover {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.25) 0%, rgba(123, 104, 238, 0.25) 50%, rgba(155, 89, 182, 0.25) 100%);
    border-color: rgba(123, 104, 238, 0.4);
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.winner-place {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.winner-place.first {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.winner-place.second {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: #000;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

.winner-place.third {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: #FFF;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.winner-place:not(.first):not(.second):not(.third) {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.winner-name {
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    cursor: help;
}

.winner-prize {
    font-weight: 700;
    color: var(--success-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.no-winners-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 50%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 12px;
    border: 2px dashed rgba(123, 104, 238, 0.3);
}

.no-winners-content {
    text-align: center;
    padding: 2rem;
}

.no-winners-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-winners-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.no-winners-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.prize-info {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(123, 104, 238, 0.2) 50%, rgba(155, 89, 182, 0.2) 100%);
    border: 1px solid rgba(123, 104, 238, 0.4);
    border-radius: 8px;
    padding: 1rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(123, 104, 238, 0.15);
}

.prize-detail {
    color: #7B68EE;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(123, 104, 238, 0.3);
}

.raffle-cta {
    text-align: center;
    position: relative;
    margin: 2.5rem 0;
}

.raffle-cta:hover::before {
    content: attr(data-hover-text);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: var(--gradient-brand);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 183, 254, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 183, 254, 0.6);
    border-color: var(--picton-blue);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    scroll-margin-top: 100px;
}

@media (max-width: 480px) {
    .info-section {
        padding: 3rem 0;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(123, 104, 238, 0.12) 50%, rgba(155, 89, 182, 0.12) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(123, 104, 238, 0.3);
    border-color: rgba(123, 104, 238, 0.5);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.18) 0%, rgba(123, 104, 238, 0.18) 50%, rgba(155, 89, 182, 0.18) 100%);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card .info-icon {
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    margin-bottom: 4rem;
}

.timeline h3 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.timeline-date {
    position: absolute;
    left: 30%;
    transform: translateX(-100%);
    color: var(--text-secondary);
    font-weight: 600;
    margin-right: 2rem;
}

.timeline-content {
    position: absolute;
    left: 55%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 400px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ */
.faq h3 {
    font-family: 'Metropolis', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(76, 183, 254, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(123, 104, 238, 0.12) 50%, rgba(155, 89, 182, 0.12) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.08);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.5);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.18) 0%, rgba(123, 104, 238, 0.18) 50%, rgba(155, 89, 182, 0.18) 100%);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
}

/* Tournament Bracket Styles */
.tournament-container {
    width: 100%;
    padding: 2rem 0;
    overflow: hidden;
    box-sizing: border-box;
}

.tournament-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tournament-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tournament-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.tournament-bracket {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

/* Scroll Indicator for Mobile Tournament Brackets */
.scroll-indicator {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.98) 0%, rgba(123, 104, 238, 0.98) 50%, rgba(155, 89, 182, 0.98) 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(123, 104, 238, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 100;
    pointer-events: none;
    animation: gentleBounce 2.5s ease-in-out infinite;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.02em;
    text-align: center;
    min-width: 240px;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(76, 183, 254, 0.4) 0%, rgba(136, 65, 255, 0.4) 50%, rgba(217, 9, 196, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.scroll-indicator.visible {
    display: block;
}

.scroll-indicator.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: block;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .scroll-indicator.visible {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        min-width: 220px;
    }
}

.matchup {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(123, 104, 238, 0.08) 50%, rgba(155, 89, 182, 0.08) 100%);
    border: 1px solid rgba(76, 183, 254, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.matchup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.matchup:hover {
    border-color: rgba(123, 104, 238, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.25);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(123, 104, 238, 0.12) 50%, rgba(155, 89, 182, 0.12) 100%);
}

.matchup:hover::before {
    opacity: 1;
}

.matchup-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vs-container {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: visible;
}

.competitor {
    flex: 1;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(123, 104, 238, 0.05) 100%);
    border: 1px solid rgba(76, 183, 254, 0.2);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.competitor-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    position: static;
}

.competitor.winner {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(123, 104, 238, 0.2) 50%, rgba(155, 89, 182, 0.2) 100%);
    border-color: rgba(123, 104, 238, 0.5);
    box-shadow: 0 0 20px rgba(123, 104, 238, 0.3);
}

.competitor-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.competitor-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.competitor.winner .competitor-logo {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(76, 183, 254, 0.3);
}

.competitor-details {
    flex: 1;
}

.competitor-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.competitor-volume {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.competitor.winner .competitor-volume {
    color: var(--primary-color);
}

.vs-divider {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
    min-width: 40px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.winner-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 50%, #9B59B6 100%);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    pointer-events: none;
}

.matchup-result {
    text-align: center;
    font-weight: 600;
    color: #7B68EE;
    font-size: 0.9rem;
    padding: 0.5rem;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.1) 0%, rgba(123, 104, 238, 0.1) 50%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 6px;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

.matchup-status {
    text-align: center;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.tournament-info {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.tournament-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.round-status {
    margin-top: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.upcoming {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: var(--warning-color);
}

/* Responsive Tournament Brackets */
@media (max-width: 1024px) and (min-width: 769px) {
    .tournament-bracket {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .tournament-bracket {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .matchup {
        padding: 1rem;
    }
    
    .matchup-header {
        font-size: 0.85rem;
    }
    
    .vs-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .vs-divider {
        order: 1;
        transform: none;
        font-size: 0.9rem;
        padding: 0.5rem 0;
        min-width: auto;
    }
    
    .competitor {
        padding: 0.85rem;
    }
    
    .competitor-info {
        justify-content: flex-start;
        text-align: left;
    }
    
    .competitor-logo {
        width: 45px;
        height: 45px;
    }
    
    .competitor-name {
        font-size: 0.9rem;
    }
    
    .competitor-volume {
        font-size: 0.8rem;
    }
    
    .winners-section {
        padding: 1.5rem;
    }
    
    .winner-item {
        padding: 0.75rem;
    }
    
    .winner-place {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .winner-info {
        gap: 0.75rem;
    }
    
    .winner-name {
        font-size: 0.9rem;
    }
    
    .winner-prize {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.4) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-top: 2px solid rgba(76, 183, 254, 0.2);
    margin-top: 5rem;
    padding: 3rem 0;
    box-shadow: 0 -4px 20px rgba(74, 144, 226, 0.1);
}

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

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.footer-link:hover .footer-icon-img {
    filter: brightness(1.2);
}

/* Round Button Styles */
.round-btn:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.round-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.round-btn.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0040CC;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .raffle-overview {
        grid-template-columns: 1fr;
    }
    
    .timeline-date {
        left: 0;
        position: relative;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        left: 0;
        position: relative;
        max-width: 100%;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 50%, rgba(155, 89, 182, 0.15) 100%);
        backdrop-filter: blur(15px);
        padding: 0;
        z-index: 10000;
        border-bottom: 2px solid rgba(123, 104, 238, 0.4);
        box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
    }
    
    .header-logo {
        max-width: 160px;
        max-height: 40px;
        height: auto;
        display: block;
        object-fit: contain;
    }
    
    .logo-section {
        display: flex;
        align-items: center;
    }
    
    .rankings-header,
    .ranking-item {
        grid-template-columns: 40px 1fr 70px 120px;
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }
    
    .boost-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .boost-options {
        right: -10px;
        min-width: 260px;
        max-width: 280px;
        left: auto;
        transform: translateX(10px);
    }
    
    .boost-options.active {
        transform: translateX(10px) scale(1);
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .raffle-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .raffle-content {
        gap: 2rem;
    }
    
    .round-selector {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .round-btn {
        flex: 0 1 auto;
        min-width: 90px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger-menu {
        display: flex !important;
        position: relative;
        z-index: 10001;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(123, 104, 238, 0.2) 100%);
        backdrop-filter: blur(10px);
        padding: 0.75rem;
        border-radius: 12px;
        border: 1px solid rgba(76, 183, 254, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh;
        background: #050a1b !important;
        background: linear-gradient(180deg, #050a1b 0%, #0a0f23 100%) !important;
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999;
        overflow: hidden;
        transform: none !important;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    body:has(.nav.active) {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100vh !important;
        top: 0 !important;
    }
    
    html:has(.nav.active) {
        overflow: hidden !important;
    }
    
    .nav-menu-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 2rem;
    }
    
    .nav-link {
        font-size: 1.8rem;
        font-weight: 600;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 100%);
        border: 2px solid rgba(76, 183, 254, 0.3);
        border-radius: 12px;
        width: 80%;
        max-width: 300px;
        text-align: center;
        transition: all 0.3s ease;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(123, 104, 238, 0.3) 100%);
        border-color: rgba(123, 104, 238, 0.6);
        transform: translateY(-2px);
        color: var(--primary-color);
    }
    
    .hero {
        padding-top: 130px !important;
        padding-bottom: 2rem !important;
        position: relative;
        z-index: 1;
    }
    
    section {
        position: relative;
        z-index: 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .raffle-wheel {
        width: 250px;
        height: 250px;
    }
    
    .wheel-center {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-logo {
        max-width: 140px !important;
        max-height: 35px !important;
        object-fit: contain !important;
    }
    
    .header-content {
        padding: 0.75rem 1rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        gap: 1rem;
    }
    
    .tournament-header h3 {
        font-size: 1.3rem;
    }
    
    .tournament-header p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .rankings-header,
    .ranking-item {
        grid-template-columns: 35px 2fr 1fr 90px;
        padding: 0.75rem 0.4rem;
        gap: 0.3rem;
        font-size: 0.85rem;
    }
    
    .rankings-header .action-col,
    .ranking-item .action-col {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .project-info {
        gap: 0.75rem;
    }
    
    .project-logo {
        width: 35px;
        height: 35px;
    }
    
    .project-name {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .volume-display {
        font-size: 0.8rem;
    }
    
    .rank-badge {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .boost-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .boost-options {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.95);
        min-width: 90vw;
        max-width: 350px;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1001;
        background: var(--bg-secondary);
        border: 2px solid var(--border-color);
        border-radius: 16px;
        padding: 1rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    .boost-options.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .boost-options::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
    }
    
    .boost-option {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .boost-option:last-child {
        margin-bottom: 0;
    }
    
    .boost-option-title {
        font-size: 1rem;
    }
    
    .boost-option-desc {
        font-size: 0.9rem;
    }
    
    .round-selector {
        gap: 0.25rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .round-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .round-status {
        font-size: 0.6rem;
        padding: 0.15rem 0.35rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .no-winners-content {
        padding: 1.5rem 1rem;
    }
    
    .no-winners-content h4 {
        font-size: 1.1rem;
    }
    
    .prize-detail {
        font-size: 1rem;
    }
    
    /* Tournament specific mobile styles */
    .matchup {
        padding: 0.75rem;
    }
    
    .matchup-header {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .vs-container {
        gap: 0.5rem;
    }
    
    .competitor {
        padding: 0.75rem;
    }
    
    .competitor-info {
        gap: 0.5rem;
    }
    
    .competitor-logo {
        width: 45px;
        height: 45px;
    }
    
    .competitor-name {
        font-size: 0.85rem;
    }
    
    .competitor-volume {
        font-size: 0.75rem;
    }
    
    .competitor-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .competitor-actions .boost-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .winner-badge {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -8px;
        right: -8px;
        z-index: 10;
    }
    
    /* Winner items mobile */
    .winners-section {
        padding: 1rem;
    }
    
    .winner-item {
        padding: 0.6rem;
        gap: 0.5rem;
    }
    
    .winner-place {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .winner-info {
        gap: 0.5rem;
        min-width: 0;
    }
    
    .winner-name {
        font-size: 0.8rem;
    }
    
    .winner-prize {
        font-size: 0.85rem;
    }
}
