/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0f1124;
    --bg-secondary: #1a1d3f;
    --bg-card: #252845;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #2d3154;
    --gold: #fbbf24;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding-bottom: 120px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    padding: 10px 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.banner-left i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-btn {
    background: white;
    color: var(--accent-purple);
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Sponsor Section */
.sponsor-section {
    max-width: 1400px;
    margin: 10px auto;
    padding: 0;
}

/* Sponsor Banners - 2.5 Banner Görünümü + Scroll */
.sponsor-banners {
    display: flex;
    gap: 15px;
    padding: 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.sponsor-banners::-webkit-scrollbar {
    display: none;
}

.sponsor-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    flex: 0 0 47%;
    min-width: 47%;
    max-width: 47%;
    transition: border-color 0.3s ease;
    scroll-snap-align: start;
}

.sponsor-card:active {
    opacity: 0.8;
}

.sponsor-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    padding: 10px;
    max-width: 100%;
}

/* Sponsor Pagination */
.sponsor-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.sponsor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sponsor-dot.active {
    background: var(--accent-purple);
    width: 24px;
    border-radius: 4px;
}

.sponsor-dot:hover {
    background: var(--accent-purple);
    opacity: 0.7;
}

/* Container - Minimal Padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Games Stories */
.games-stories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    margin-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.games-stories::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-item:active {
    transform: scale(0.95);
}

.story-ring {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    padding: 3px;
    margin-bottom: 6px;
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid var(--bg-primary);
    background: var(--bg-card);
    padding: 5px;
}

.story-item span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: var(--accent-pink);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}

/* Tab Menu */
.tab-menu {
    display: flex;
    gap: 6px;
    background: var(--bg-secondary);
    padding: 6px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.tab-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:first-child {
    padding: 8px 14px;
}

.tab-btn.active {
    background: var(--accent-purple);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--bg-card);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-header i {
    color: var(--gold);
    font-size: 18px;
    animation: sparkle 2s infinite;
}

.section-header i:nth-child(2) {
    animation-delay: 0.5s;
}

.section-header i:nth-child(4) {
    animation-delay: 1s;
}

.section-header i:nth-child(5) {
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sites List */
.sites-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.site-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
}

.site-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.site-logo {
    flex-shrink: 0;
    position: relative;
    width: 140px;
}

.site-logo img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 10px;
    max-width: 100%;
    display: block;
}

.site-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--gold);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.5);
    white-space: nowrap;
}

.site-stars {
    display: flex;
    gap: 3px;
    margin-top: 8px;
    justify-content: flex-start;
}

.site-stars i {
    color: var(--gold);
    font-size: 14px;
}

.site-info {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bonus-amount {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.bonus-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.site-bonus-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.site-bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.site-bonus-btn i {
    transition: transform 0.3s ease;
}

.site-bonus-btn:hover i {
    transform: translateX(4px);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 99;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 10px;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 10px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item.active {
    color: var(--accent-purple);
}

.nav-item:hover {
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

/* Bottom Banner */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    padding: 10px 12px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(59, 130, 246, 0.3);
}

/* Story Modal */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.story-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.story-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    max-height: 800px;
    background: var(--bg-secondary);
    border-radius: 0;
}

.story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.story-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.story-progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    animation: progressAnim 5s linear forwards;
}

@keyframes progressAnim {
    to { width: 100%; }
}

.story-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.story-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile First - Daha büyük dokunma alanları */
    body {
        font-size: 16px;
    }
    
    /* Sponsor Banner'lar - Mobil */
    .sponsor-banners {
        gap: 16px;
    }
    
    .sponsor-card {
        flex: 0 0 48%;
        min-width: 48%;
        max-width: 48%;
    }
    
    .sponsor-card img {
        height: 100px;
        padding: 12px;
    }
    
    .sponsor-pagination {
        padding: 12px 0;
    }
    
    .sponsor-dot {
        width: 6px;
        height: 6px;
    }
    
    .sponsor-dot.active {
        width: 20px;
    }
    
    .site-card {
        padding: 15px;
        gap: 12px;
    }
    
    .site-logo {
        width: 100px;
    }
    
    .site-logo img {
        height: 60px;
        padding: 8px;
    }
    
    .site-badge {
        font-size: 8px;
        padding: 3px 6px;
    }
    
    .site-stars {
        margin-top: 4px;
    }
    
    .site-stars i {
        font-size: 10px;
    }
    
    .bonus-amount {
        font-size: 18px;
    }
    
    .bonus-label {
        font-size: 10px;
    }
    
    .site-bonus-btn {
        padding: 10px 16px;
        font-size: 11px;
        gap: 4px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    /* Tab Menu - Mobil optimize (yatay) */
    .tab-menu {
        padding: 6px;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .tab-menu::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
        border-radius: 10px;
        white-space: nowrap;
    }
    
    .tab-btn:first-child {
        padding: 10px 14px;
        min-width: 40px;
        margin-right: 6px;
    }
    
    .tab-btn i {
        font-size: 16px;
    }
    
    /* Story'ler - Daha büyük dokunma alanı */
    .story-item {
        min-width: 75px;
    }
    
    .story-ring {
        width: 75px;
        height: 75px;
    }
    
    /* Bottom Nav - Daha büyük */
    .bottom-nav {
        padding: 10px 0;
    }
    
    .nav-item {
        padding: 10px 8px;
        min-height: 60px;
    }
    
    .nav-item i {
        font-size: 24px;
    }
    
    .nav-item span {
        font-size: 11px;
    }
    
    /* Bannerlar - Mobil optimize */
    .top-banner,
    .bottom-banner {
        padding: 10px 16px;
    }
    
    .banner-left {
        font-size: 14px;
    }
    
    .bonus-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .story-modal-content {
        border-radius: 20px;
    }
    
    .bottom-nav,
    .bottom-banner {
        max-width: 1400px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
    }
    
    .bottom-banner {
        border-radius: 0;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top: 4px solid var(--accent-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty stars */
.site-stars i.empty {
    color: var(--border-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-purple);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

/* ========================================
   WINNERS PAGE STYLES
======================================== */

/* Winners Header */
.winners-header {
    text-align: center;
    padding: 20px 0 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.winners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.medal-icon {
    font-size: 36px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.winners-title h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Winners List */
.winners-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

/* Winner Card */
.winner-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.winner-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.winner-card:active {
    transform: translateY(0);
}

/* Winner Rank */
.winner-rank {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-medal {
    font-size: 28px;
    animation: rotate 3s infinite;
}

.winner-medal.gold {
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

.winner-medal.silver {
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.6));
}

.winner-medal.bronze {
    filter: drop-shadow(0 0 10px rgba(205, 127, 50, 0.6));
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.winner-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Winner Site Logo */
.winner-site {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-site img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Winner Info */
.winner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.winner-username {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.winner-time {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Winner Amount */
.winner-amount {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.amount-value {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive - Winners Page */
@media (max-width: 768px) {
    .winners-header {
        padding: 15px 0 12px;
        margin-bottom: 15px;
    }
    
    .medal-icon {
        font-size: 30px;
    }
    
    .winners-title h1 {
        font-size: 24px;
    }
    
    .winners-subtitle {
        font-size: 13px;
    }
    
    .winner-card {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .winner-rank {
        width: 35px;
    }
    
    .winner-medal {
        font-size: 24px;
    }
    
    .winner-number {
        font-size: 16px;
    }
    
    .winner-site {
        width: 50px;
        height: 40px;
    }
    
    .winner-username {
        font-size: 13px;
    }
    
    .winner-time {
        font-size: 10px;
    }
    
    .amount-value {
        font-size: 14px;
    }
}


/* Coming Soon Section */
.coming-soon {
    text-align: center;
    padding: 80px 20px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-icon {
    font-size: 120px;
    color: var(--accent-purple);
    margin-bottom: 30px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-soon h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.coming-soon p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Giveaways Section */
.giveaways-header {
    padding: 0 5px;
    margin-bottom: 15px;
}

.giveaways-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gift-icon, .trophy-icon {
    font-size: 24px;
}

.giveaways-title h1, .giveaways-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.giveaways-count {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: 34px;
}

.giveaways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 5px;
    margin-bottom: 20px;
}

/* Giveaway Card */
.giveaway-card {
    background: linear-gradient(135deg, #3a2f1c 0%, #2d251a 100%);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.giveaway-card.past {
    background: linear-gradient(135deg, #2a2a35 0%, #1f1f28 100%);
    opacity: 0.8;
}

.giveaway-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 12px;
}

.giveaway-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.giveaway-prize {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.giveaway-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.giveaway-participants {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.giveaway-participants i {
    color: var(--gold);
}

.giveaway-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #f59e0b);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.giveaway-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.giveaway-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.giveaway-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.giveaway-btn:active {
    transform: translateY(0);
}

.giveaway-completed {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .coming-soon-icon {
        font-size: 80px;
    }
    
    .coming-soon h1 {
        font-size: 36px;
    }
    
    .giveaways-grid {
        grid-template-columns: 1fr;
    }
}

 / *   = = = = =   P O P - U P S   = = = = =   * / 
 . s i t e - p o p u p   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         z - i n d e x :   9 9 9 9 9 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         o p a c i t y :   0 ; 
         v i s i b i l i t y :   h i d d e n ; 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ,   v i s i b i l i t y   0 . 3 s   e a s e ; 
 } 
 
 . s i t e - p o p u p . a c t i v e   { 
         o p a c i t y :   1 ; 
         v i s i b i l i t y :   v i s i b l e ; 
 } 
 
 . p o p u p - o v e r l a y   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         r i g h t :   0 ; 
         b o t t o m :   0 ; 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
 } 
 
 . p o p u p - c o n t e n t   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   9 0 % ; 
         m a x - w i d t h :   6 0 0 p x ; 
         m a x - h e i g h t :   8 0 v h ; 
         a n i m a t i o n :   p o p u p S l i d e I n   0 . 4 s   e a s e ; 
 } 
 
 @ k e y f r a m e s   p o p u p S l i d e I n   { 
         f r o m   { 
                 t r a n s f o r m :   s c a l e ( 0 . 8 )   t r a n s l a t e Y ( - 3 0 p x ) ; 
                 o p a c i t y :   0 ; 
         } 
         t o   { 
                 t r a n s f o r m :   s c a l e ( 1 )   t r a n s l a t e Y ( 0 ) ; 
                 o p a c i t y :   1 ; 
         } 
 } 
 
 . p o p u p - l i n k   { 
         d i s p l a y :   b l o c k ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         o v e r f l o w :   h i d d e n ; 
         b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ; 
 } 
 
 . p o p u p - l i n k : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 . p o p u p - i m a g e   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   a u t o ; 
         d i s p l a y :   b l o c k ; 
 } 
 
 . p o p u p - c l o s e   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   - 1 5 p x ; 
         r i g h t :   - 1 5 p x ; 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # e f 4 4 4 4 ,   # d c 2 6 2 6 ) ; 
         b o r d e r :   3 p x   s o l i d   w h i t e ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 8 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         z - i n d e x :   1 0 ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 } 
 
 . p o p u p - c l o s e : h o v e r   { 
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 9 0 d e g ) ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # d c 2 6 2 6 ,   # b 9 1 c 1 c ) ; 
 } 
 
 . p o p u p - t o p   { 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         p a d d i n g - t o p :   8 0 p x ; 
 } 
 
 . p o p u p - b o t t o m   { 
         a l i g n - i t e m s :   f l e x - e n d ; 
         p a d d i n g - b o t t o m :   1 0 0 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . p o p u p - c o n t e n t   { 
                 w i d t h :   9 5 % ; 
                 m a x - w i d t h :   5 0 0 p x ; 
         } 
         
         . p o p u p - c l o s e   { 
                 t o p :   - 1 0 p x ; 
                 r i g h t :   - 1 0 p x ; 
                 w i d t h :   3 5 p x ; 
                 h e i g h t :   3 5 p x ; 
                 f o n t - s i z e :   1 6 p x ; 
                 b o r d e r - w i d t h :   2 p x ; 
         } 
         
         . p o p u p - t o p   { 
                 p a d d i n g - t o p :   6 0 p x ; 
         } 
         
         . p o p u p - b o t t o m   { 
                 p a d d i n g - b o t t o m :   8 0 p x ; 
         } 
 }  
 