/* Dashboard Styles - Premium Glassmorphism Design */

:root {
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 40px rgba(233, 30, 99, 0.2);
}

/* Dashboard Body - Gradient Background with Pattern */
.dashboard-body {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 50%, #2196F3 100%);
    background-attachment: scroll;
    min-height: 100vh;
    position: relative;
    padding-top: 75px; /* Account for fixed navigation - compact height */
}

@media (max-width: 968px) {
    .dashboard-body {
        padding-top: 65px; /* Slightly less on mobile */
    }
}

.dashboard-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

/* Fixed Navigation - Always Visible */
.dashboard-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(156, 39, 176, 0.2) 50%, rgba(33, 150, 243, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
    padding: 0 !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 0 !important;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: auto;
    min-height: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 55px;
    max-width: 170px;
    overflow: hidden;
}

.nav-logo {
    position: relative;
}

.nav-logo img {
    height: 100%;
    min-height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    filter: none;
    opacity: 1;
}

.nav-logo::after {
    content: none;
    display: none;
}

.logo-text {
    display: none; /* Hide text - logo image only */
}

.nav-tabs {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-tab {
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-tab.active {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.nav-tab-play {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white !important;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1.5rem !important;
    transform: scale(1.05);
}

.nav-tab-play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

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

/* Play Button in Nav */
.play-button-nav {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 44px;
    width: 44px;
    height: 44px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.play-button-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-20deg);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.play-button-nav * {
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

@media (max-width: 768px) {
    .play-button-nav::before {
        display: block;
        animation: shimmer 2s infinite;
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 30%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 70%,
            transparent 100%
        );
    }
}

@media (max-width: 480px) {
    .play-button-nav::before {
        animation: shimmer 1.8s infinite;
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 25%,
            rgba(255, 255, 255, 1) 50%,
            transparent 75%,
            transparent 100%
        );
    }
}

.play-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
}

.play-icon {
    font-size: 1rem;
    display: inline-block;
}

.play-text {
    font-size: 0.95rem;
}

/* Token Pill */
.token-pill {
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
}

.token-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
    color: white !important;
}

.token-icon {
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.token-amount {
    font-size: 0.95rem;
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.user-menu-toggle:hover {
    transform: scale(1.05);
}

.user-avatar {
    font-size: 1rem;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: background 0.2s ease;
    border-radius: 12px;
}

.menu-item:first-child {
    border-radius: 12px 12px 0 0;
}

.menu-item:last-child {
    border-radius: 0 0 12px 12px;
}

.menu-item:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dashboard-nav.mobile-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #1a1a1a;
}

.dashboard-nav.mobile-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.dashboard-nav.mobile-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #1a1a1a;
}

/* Hero Section - Split Layout (Reduced Height) */
.hero-dashboard {
    padding: 2rem 2rem 3rem 2rem;
    position: relative;
    z-index: 1;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    color: white;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: white;
    color: #E91E63;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-hero-tertiary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-hero-tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Featured Prize Card - Glassmorphism */
.hero-right {
    position: relative;
}

.featured-prize-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-prize-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.prize-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.prize-image-featured {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prize-title-featured {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.prize-value-featured {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.countdown-compact {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-item-compact {
    flex: 1;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.countdown-number-compact {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #E91E63;
    margin-bottom: 0.25rem;
}

.countdown-label-compact {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-indicator {
    margin-top: 1rem;
}

.progress-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E91E63 0%, #2196F3 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Dashboard Grid */
.dashboard-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Glassmorphism Card Base */
.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

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

.card-link {
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: #2196F3;
}

/* Daily Check-in Card */
.card-checkin {
    grid-column: span 1;
}

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

.streak-display {
    margin-bottom: 1.5rem;
}

.streak-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.streak-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.btn-checkin {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-checkin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.btn-checkin:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-checkin.claimed {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.checkin-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

/* Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Upcoming Prizes Card */
.card-prizes {
    grid-column: span 2;
}

.prizes-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 99, 0.3) transparent;
}

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

.prizes-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.prizes-carousel::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.3);
    border-radius: 3px;
}

.prizes-scroll {
    display: flex;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.prize-item-mini {
    min-width: 180px;
    padding: 1.25rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prize-item-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

.prize-mini-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.prize-mini-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.prize-mini-date {
    font-size: 0.8rem;
    color: #666;
}

/* Winners Feed Card */
.card-winners {
    grid-column: span 2;
}

.winners-feed {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 99, 0.3) transparent;
}

.winners-feed::-webkit-scrollbar {
    width: 6px;
}

.winners-feed::-webkit-scrollbar-track {
    background: transparent;
}

.winners-feed::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.3);
    border-radius: 3px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.03);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.winner-item:hover {
    transform: translateX(5px);
    background: rgba(233, 30, 99, 0.08);
}

.winner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.winner-prize {
    font-size: 0.9rem;
    color: #666;
}

.winner-value {
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

/* How it Works Card */
.card-howto {
    grid-column: span 1;
}

.howto-steps {
    margin-bottom: 1.5rem;
}

.howto-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.05);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.step-number-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    font-weight: 600;
    color: #1a1a1a;
}

.btn-card-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: rgba(233, 30, 99, 0.1);
    color: #E91E63;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-card-link:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: translateY(-2px);
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: #666;
}

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

/* Footer */
.dashboard-footer {
    padding: 3rem 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(33, 150, 243, 0.4) 0%, rgba(156, 39, 176, 0.5) 50%, rgba(233, 30, 99, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: white;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
}

.dashboard-footer p {
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .card-prizes,
    .card-winners {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Mobile Menu Overlay */
    .dashboard-nav.mobile-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: block;
        cursor: pointer;
    }
    
    .nav-tabs {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        padding-top: 80px;
        padding-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
        width: 100%;
        box-sizing: border-box;
        height: auto;
    }
    
    .nav-tabs li {
        width: 100%;
        margin: 0;
    }
    
    .nav-tab {
        width: 100%;
        text-align: center;
        padding: 1rem;
        color: #1a1a1a;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        box-sizing: border-box;
    }
    
    .nav-tab:hover {
        background: rgba(233, 30, 99, 0.1);
        color: #E91E63;
    }
    
    .nav-tab-play {
        transform: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .dashboard-nav.mobile-open .nav-tabs {
        display: flex;
    }
    
    /* Hide nav-right items when mobile menu is open - they're already in header */
    .dashboard-nav.mobile-open .nav-right {
        display: none;
    }
    
    /* Ensure hamburger button stays visible and transforms to X when menu is open */
    .dashboard-nav.mobile-open .mobile-menu-toggle {
        z-index: 1002;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo {
        height: 50px;
        max-width: 160px;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .play-button-nav {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
    
    .play-text {
        display: none !important; /* Hide text - icon only */
    }
    
    .play-icon {
        font-size: 1.1rem;
    }
    
    .token-pill {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
    
    .user-menu-toggle {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 640px) {
    .hero-dashboard {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .dashboard-section {
        padding: 1.5rem 1rem;
    }
    
    .dashboard-container {
        padding: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .play-button-nav {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .play-text {
        display: none; /* Hide text on mobile, show only icon */
    }
    
    .play-icon {
        font-size: 1rem;
    }
    
    .token-pill {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .token-icon {
        font-size: 1rem;
    }
    
    .prize-image-wrapper {
        height: 200px;
    }
    
    .countdown-compact {
        gap: 0.5rem;
    }
    
    .countdown-item-compact {
        padding: 0.75rem 0.5rem;
    }
    
    .countdown-number-compact {
        font-size: 1.5rem;
    }
    
    .countdown-label-compact {
        font-size: 0.7rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .prizes-scroll {
        gap: 1rem;
    }
    
    .prize-item-mini {
        min-width: 120px;
        padding: 1rem;
    }
    
    .prize-mini-value {
        font-size: 1.25rem;
    }
    
    .prize-mini-title {
        font-size: 0.85rem;
    }
    
    .prize-mini-date {
        font-size: 0.7rem;
    }
    
    .winner-item {
        padding: 1rem;
    }
    
    .winner-name {
        font-size: 1rem;
    }
    
    .winner-prize {
        font-size: 0.85rem;
    }
    
    .winner-date {
        font-size: 0.75rem;
    }
    
    .btn-card-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Games grid mobile */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-prize-card {
        padding: 1.5rem;
    }
    
    .game-icon-large {
        font-size: 4rem;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .prize-value {
        font-size: 1.5rem;
    }
    
    .play-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* User menu mobile */
    .user-menu-dropdown {
        right: 0;
        left: auto;
        min-width: 140px;
    }
    
    /* Footer mobile */
    .dashboard-footer {
        padding: 2rem 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-list {
        align-items: center;
    }
    
    .footer-list a:hover {
        transform: none;
    }
    
    /* Touch-friendly targets */
    .btn-hero,
    .play-button,
    .btn-card-link,
    .nav-tab,
    .menu-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for touch */
    .dashboard-card {
        margin-bottom: 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .game-icon-large {
        font-size: 3.5rem;
    }
    
    .game-title {
        font-size: 1.25rem;
    }
    
    .token-pool-progress {
        padding: 0.75rem;
    }
    
    .game-stats {
        padding: 0.75rem;
    }
    
    .game-stat-value {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        gap: 0.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .nav-logo {
        height: 50px;
        max-width: 150px;
    }
    
    .play-button-nav {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .play-text {
        display: none; /* Hide text on small mobile, show only icon */
    }
    
    .play-icon {
        font-size: 0.9rem;
    }
    
    .token-pill {
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .user-menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Phones (360px and below) */
@media (max-width: 360px) {
    .nav-logo {
        height: 45px;
        max-width: 120px;
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }
    
    .play-button-nav {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        min-width: 36px;
        width: 36px;
        height: 36px;
    }
    
    .token-pill {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .token-icon {
        font-size: 0.9rem;
    }
    
    .token-amount {
        font-size: 0.75rem;
    }
    
    .user-menu-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .dashboard-section {
        padding: 1rem 0.75rem;
    }
    
    .dashboard-card {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Very Small Mobile Phones (320px and below - old small phones) */
@media (max-width: 320px) {
    .nav-logo {
        height: 40px;
        max-width: 100px;
    }
    
    .nav-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .play-button-nav {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
        min-width: 32px;
        width: 32px;
        height: 32px;
    }
    
    .token-pill {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .token-icon {
        font-size: 0.8rem;
    }
    
    .token-amount {
        font-size: 0.7rem;
        color: #ffffff;
    }
    
    .user-menu-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .dashboard-section {
        padding: 0.75rem 0.5rem;
    }
    
    .dashboard-card {
        padding: 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
}