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

:root {
    color-scheme: dark;
    --bg-primary: #0f172a;
    --bg-secondary: #111827;
    --bg-card: #0b1220;
    --bg-card-hover: #152036;
    
    --blue-primary: #3b82f6;
    --blue-secondary: #2563eb;
    --teal-primary: #14b8a6;
    --teal-secondary: #0f766e;
    --navy-primary: #1e3a8a;
    --navy-secondary: #1e40af;
    --sky-primary: #0ea5e9;
    --sky-secondary: #0284c7;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --gradient-primary: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    --gradient-teal: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    --gradient-navy: linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    --gradient-blue: linear-gradient(135deg, var(--blue-primary), var(--teal-primary));
    --gradient-text: linear-gradient(135deg, var(--blue-primary), var(--teal-primary));
    
    --shadow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-teal: 0 0 20px rgba(20, 184, 166, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-sky: 0 0 15px rgba(14, 165, 233, 0.4);
    
    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gradient-green: linear-gradient(135deg, #2ecc71, #27ae60);
    --gradient-fire: linear-gradient(to bottom, #ff4500, #ff8c00, #ffd700);

    --border-blue: 1px solid rgba(59, 130, 246, 0.3);
    --border-teal: 1px solid rgba(20, 184, 166, 0.3);
    --border-subtle: 1px solid rgba(229, 231, 235, 0.2);
    --border-sky: 1px solid rgba(14, 165, 233, 0.3);
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(20, 184, 166, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(14, 165, 233, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.06) 2px, transparent 2px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02)),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02));
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px, 40px 40px, 40px 40px;
    background-position: 0 0, 30px 30px, 30px 30px, 0 0, 0 0, 20px 20px;
    pointer-events: none;
    z-index: -1;
    animation: hexagonFloat 20s ease-in-out infinite;
}

@keyframes hexagonFloat {
    0%, 100% { 
        transform: translateY(0);
        background-position: 0 0, 30px 30px, 30px 30px, 0 0, 0 0, 20px 20px;
    }
    50% { 
        transform: translateY(0);
        background-position: 15px 0, 45px 30px, 45px 30px, 15px 0, 10px 0, 30px 20px;
    }
}

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

    .navbar {
        background: #0f172a;
        background: rgba(15, 23, 42, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: var(--border-blue);
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.1);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }
}

.logo-circle i {
    font-size: 20px;
    color: var(--bg-primary);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 11px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
    color: var(--bg-primary);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-blue);
}

.nav-link i {
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

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

.btn-primary {
    background-color: var(--blue-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background-color: var(--blue-secondary);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: var(--teal-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-secondary:hover {
    background-color: var(--teal-secondary);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-success {
    background-color: var(--teal-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-success:hover {
    background-color: var(--teal-secondary);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-warning {
    background-color: var(--sky-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-warning:hover {
    background-color: var(--sky-secondary);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.btn-outline:hover {
    background-color: var(--bg-card);
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.btn-large {
    padding: 14px 24px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-verify {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    margin-left: 10px;
    box-shadow: var(--shadow-blue);
}

.btn-verify:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-verify-mobile {
    background: rgba(16, 16, 16, 0.98);
    color: var(--bg-primary);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-verify-mobile:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.tab-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;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

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

.tab-btn.active {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
    font-weight: 700;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--blue-primary);
    color: var(--bg-primary);
    border-color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-search {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-blue);
}

.btn-search:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-submit {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-blue);
    flex: 2;
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

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

.btn-reset {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-subtle);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.btn-reset:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.btn-new-entry {
    background: linear-gradient(135deg, var(--teal-primary), var(--teal-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-new-entry:hover {
    background: linear-gradient(135deg, var(--teal-secondary), #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.btn-share {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-blue);
}

.btn-share:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-print {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-subtle);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-print:hover {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
    background: rgba(20, 184, 166, 0.1);
    transform: translateY(-1px);
}

.btn-verify-modal {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-blue);
}

.btn-verify-modal:hover {
    background: linear-gradient(135deg, var(--blue-secondary), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.mobile-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--shadow-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.mobile-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.ticket-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.ticket-btn:hover {
    border-color: var(--blue-primary);
    background: var(--blue-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.ticket-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.nav-link::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;
}

.nav-link:hover {
    color: var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link.active {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    box-shadow: var(--shadow-blue);
    font-weight: 700;
}

.mobile-link {
    padding: 15px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-link::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;
}

.mobile-link:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.1));
    border-color: var(--blue-primary);
    transform: translateX(10px);
}

.mobile-link:hover::before {
    left: 100%;
}

.mobile-link.active {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
    font-weight: 700;
}

.logo-container {
    perspective: 1000px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.coin-inner {
    position: relative;
    width: 55px;
    height: 55px;
    transform-style: preserve-3d;
    animation: coinSpin 10s linear infinite;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.coin-inner img.coin-front {
    z-index: 2;
    transform: rotateY(0deg);
    background: transparent !important;
}

.coin-inner img.coin-back {
    z-index: 1;
    transform: rotateY(180deg);
    background: transparent !important;
}

.coin-inner img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
}

@keyframes coinSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.coin-logo {
    position: relative;
    width: 55px;
    height: 55px;
    perspective: 1000px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background: transparent !important;
    border: none !important;
}

.coin-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: coinSpin 10s linear infinite !important;
    background: transparent !important;
    border: none !important;
}

.coin-container.flipped {
    transform: rotateY(180deg);
}

.coin-container.paused {
    animation-play-state: running !important;
}

.coin-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
}

.coin-front-face {
    z-index: 2;
    transform: rotateY(0deg);
}

.coin-back-face {
    z-index: 1;
    transform: rotateY(180deg);
}

.coin-face img {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

@keyframes coinSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.mobile-coin-logo {
    width: 45px;
    height: 45px;
}

.mobile-coin-logo .coin-container {
    animation-duration: 10s !important;
}

.mobile-menu-coin-logo {
    width: 60px;
    height: 60px;
}

.mobile-menu-coin-logo .coin-container {
    animation-duration: 12s !important;
}

.mobile-menu-toggle {
    display: block;
    font-size: 24px;
    padding: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: var(--blue-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: var(--blue-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: var(--blue-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

.modal-actions .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .help-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .help-icon {
        margin: 0 auto;
    }

    .visual-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        align-items: center;
        text-align: center;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-verify, .btn-verify-modal {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .btn-verify-mobile {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .btn-submit {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-reset {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-new-entry, .btn-share {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-print, .btn-search, .btn-reset {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .btn-view-all {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .mobile-fab {
        display: flex;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 14px 20px;
    }
    
    .btn-small {
        min-height: 36px;
        padding: 8px 16px;
    }
    
    .btn-verify, .btn-verify-modal, .btn-verify-mobile {
        min-height: 48px;
    }
    
    .btn-submit, .btn-reset, .btn-new-entry, .btn-share {
        min-height: 44px;
    }
    
    .btn-print, .btn-search {
        min-height: 44px;
    }
    
    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-fab {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        padding: 10px;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 12px;
        color: var(--blue-primary);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--blue-primary);
        color: var(--bg-primary);
        box-shadow: var(--shadow-blue);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle.active {
        background: var(--blue-primary);
        color: var(--bg-primary);
        box-shadow: var(--shadow-blue);
    }
    
    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(16, 16, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        border-top: var(--border-blue);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-link {
        padding: 15px;
        font-size: 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-link:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.1));
        border-color: var(--blue-primary);
        transform: translateX(10px);
    }
    
    .mobile-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .mobile-link:hover::before {
        left: 100%;
    }
    
    .mobile-link.active {
        background: var(--gradient-primary);
        color: var(--bg-primary);
        box-shadow: var(--shadow-blue);
        font-weight: 700;
    }

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

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
}

.main-content {
    padding: 1rem 0 1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.help-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    height: auto;
    align-items: flex-start;
}

.help-icon {
    font-size: 2rem;
    color: var(--blue-primary);
    min-width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-text h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.help-steps h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

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

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    flex: 1;
}

.help-cta-container {
    margin-top: 3rem;
    text-align: center;
}

@media (min-width: 1025px) {
    .help-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .help-section, .contact-section {
        margin-bottom: 5rem;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
        align-items: start;
    }

    .form-container {
        max-width: 100%;
    }

    .contact-form .form-container {
        padding: 2.5rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    align-items: center;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--blue-primary);
    min-width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 1rem;
    color: var(--blue-primary);
    opacity: 0.7;
}

.input-container input,
.input-container select,
.input-container textarea {
    padding-left: 3rem !important;
}

.textarea-container {
    align-items: flex-start;
}

.textarea-container i {
    top: 1.2rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.emergency-item {
    padding: 2rem;
    border-radius: 20px;
}

.emergency-icon {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-text h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.emergency-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.emergency-contact p {
    margin-bottom: 0.5rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: var(--blue-primary);
    color: var(--bg-primary);
}

@media (min-width: 769px) {
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-section {
    text-align: center;
    padding: 2rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.15), transparent 70%);
}

.hero-section {
    background-color: transparent !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.3));
    z-index: 2;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: var(--border-blue);
    color: var(--blue-primary);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-blue);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.05;
    position: relative;
    z-index: 10;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(191, 149, 63, 0.3));
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-text);
    opacity: 0.5;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section:hover .hero-title .highlight::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 2.25rem;
    position: relative;
    z-index: 10;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle .accent {
    color: var(--blue-primary);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    display: inline-block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
    animation: float-icon-enhanced 5s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.floating-icon:hover {
    opacity: 0.9;
}

@keyframes float-icon-enhanced {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(10px, -20px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translate(-10px, -10px) rotate(-5deg) scale(0.95);
    }
}

.fa-bolt {
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
}

.fa-fire {
    background: var(--gradient-fire) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.4));
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.giveaway-section {
    margin-bottom: 3rem;
}

.giveaway-card, .help-card, .contact-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.glassmorphism {
    background: rgba(15, 23, 42, 0.6) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.neon-border {
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    transition: all 0.3s ease;
}

.neon-border:hover {
    border-color: var(--blue-primary) !important;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.giveaway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-neon);
}

.giveaway-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.giveaway-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.giveaway-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-container {
    margin-bottom: 2.5rem;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: var(--border-subtle);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-text {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-count {
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 5px rgba(59, 130, 246, 0.4);
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 100% 0%; }
    100% { background-position: -100% 0%; }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.progress-label-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 10;
    pointer-events: none;
}

.giveaway-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.giveaway-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.giveaway-stats .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.giveaway-stats .stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.countdown-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: var(--border-subtle);
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-header i {
    color: var(--burgundy-primary);
    font-size: 1.3rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    min-width: 100px;
    border: var(--border-subtle);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: var(--blue-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.entry-section {
    margin-bottom: 3rem;
}

.entry-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

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

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

.entry-header p {
    color: var(--text-secondary);
}

.entry-form, .form-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(17, 24, 39, 0.8));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entry-form::before, .form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.entry-form:hover, .form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}


.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '•';
    color: var(--blue-primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: rgba(245, 158, 11, 0.6);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 0 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
    background: rgba(32, 32, 32, 0.9);
}

.form-group input.error,
.form-group select.error {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 0 15px rgba(255, 107, 53, 0.3);
}

.form-group input.success,
.form-group select.success {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 0 15px rgba(59, 130, 246, 0.4);
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

.form-note {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.form-note::before {
    content: '💡';
    margin-right: 8px;
}

.error-message {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: none;
    position: relative;
}

.error-message::before {
    content: '⚠️';
    margin-right: 8px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit, .btn-reset {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--shadow-luxury);
    flex: 2;
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

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

.btn-reset {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(245, 158, 11, 0.3);
    flex: 1;
}

.btn-reset:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.success-section {
    margin-bottom: 3rem;
}

.success-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--neon-green);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.success-icon {
    font-size: 5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    text-shadow: var(--shadow-neon);
}

.success-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.success-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.ticket-display {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: var(--border-subtle);
    margin: 2rem 0;
}

.ticket-display h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticket-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.ticket-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-new-entry {
    padding: 1rem 2rem;
    background: var(--gradient-emerald);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-emerald);
}

.btn-new-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-share, .btn-print {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-share {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-neon);
}

.btn-print {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-share:hover, .btn-print:hover {
    transform: translateY(-3px);
}

.btn-print:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

.giveaway-selection-section {
    margin-bottom: 3rem;
}

.giveaway-selection-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.selection-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.giveaway-tabs {
    display: flex;
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-radius: 12px;
    gap: 0.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-neon);
}

.giveaway-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-items: center;
}

.giveaway-item {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.giveaway-image-container-mini {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #000;
    z-index: 1;
    background-image: url('../assets/images/raffle-bg.png');
    background-size: cover;
    background-position: center;
}

.giveaway-image-mini {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.giveaway-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
}

.giveaway-item:hover .giveaway-image-mini {
    transform: scale(1.1);
}

.giveaway-item h4,
.giveaway-item p,
.giveaway-item .giveaway-meta,
.giveaway-item .giveaway-stats,
.giveaway-item .progress-bar-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.giveaway-item h4 {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.giveaway-item p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.giveaway-item.active {
    border-color: rgba(59, 130, 246, 0.4);
}

.giveaway-item.giveaway-completed {
    opacity: 0.8;
    filter: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: default;
}

.giveaway-item.giveaway-completed:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.giveaway-item.giveaway-completed .giveaway-image-mini {
    filter: grayscale(0.5) brightness(0.7);
}

.giveaway-item.giveaway-completed:hover {
    transform: none;
    border-color: rgba(124, 45, 18, 0.3);
    box-shadow: none;
    background: rgba(124, 45, 18, 0.15);
}

.giveaway-item.giveaway-completed .giveaway-title {
    color: rgba(255, 255, 255, 0.6);
}

.giveaway-item.giveaway-completed .giveaway-description {
    color: rgba(203, 213, 225, 0.6);
}

.giveaway-item.giveaway-completed .giveaway-status {
    background: rgba(124, 45, 18, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 45, 18, 0.4);
}

.giveaway-item.giveaway-completed .giveaway-date {
    color: rgba(148, 163, 184, 0.6);
}

.giveaway-item.giveaway-completed .progress-fill {
    background: rgba(124, 45, 18, 0.6);
    box-shadow: none;
    animation: none;
}

.giveaway-item.giveaway-completed .progress-bar {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: transparent;
}

.giveaway-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.giveaway-item:hover::before,
.giveaway-item.active::before {
    opacity: 1;
}

.giveaway-item h4 {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.giveaway-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.progress-container-mini {
    margin-top: auto;
    padding-bottom: 1.25rem;
}

.progress-text-mini {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    margin-top: 4px;
    font-weight: 500;
}

.giveaway-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.giveaway-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
}

.status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.status-completed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.status-upcoming {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.giveaway-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-entries-section {
    margin-bottom: 3rem;
}

.recent-entries-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.recent-entries-card h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.entries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.entry-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--neon-green);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.entry-item:hover {
    transform: translateX(5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.entry-item .entry-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.entry-item .entry-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.entry-item .entry-ticket {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.winner-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    width: fit-content;
}

.btn-view-all {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all:hover {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.search-section {
    margin-bottom: 3rem;
}

.search-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.search-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-controls input {
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    min-width: 300px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.search-controls input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.search-controls input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neon);
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-strong);
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.search-result-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateX(5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.result-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.result-ticket {
    background: rgba(0, 255, 136, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--neon-green);
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

.result-detail strong {
    color: var(--text-primary);
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.help-section {
    margin-bottom: 4rem;
}

.help-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.help-card.glassmorphism {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.help-header {
    text-align: center;
    margin-bottom: 3rem;
}

.help-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.help-header h2 i {
    color: var(--neon-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.help-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.help-content {
    background: var(--bg-secondary);
    padding: 2px;
    border-radius: 20px;
    border: var(--border-subtle);
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.help-item {
    background: rgba(11, 18, 32, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.help-item.neon-border {
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.help-item:hover {
    transform: translateY(-8px);
    border-color: var(--blue-primary);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.help-icon {
    background: var(--gradient-blue);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 64px;
    box-shadow: var(--shadow-blue);
    color: var(--bg-primary);
}

.help-icon i {
    font-size: 1.6rem;
    color: var(--bg-primary);
}

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

.visual-timeline::before {
    display: none;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-card {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 12px;
    flex-grow: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-card {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--text-primary);
    transform: translateX(5px);
}

.help-text h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.help-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-header h2 i {
    color: var(--neon-orange);
    animation: pulse 2s ease-in-out infinite;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.contact-content {
    background: var(--bg-secondary);
    padding: 0px;
    border-radius: 20px;
    border: var(--border-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: var(--border-subtle);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

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

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: var(--border-subtle);
}

.contact-form h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-family: inherit;
    min-height: 44px;
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1), 0 0 15px rgba(0, 255, 136, 0.2);
    transform: translateY(-1px);
}

.contact-form .form-actions {
    margin-top: 1rem;
}

.footer {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border-top: 2px solid rgba(245, 158, 11, 0.2);
    color: white;
    padding: 2rem 0 1.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-neon);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.footer-section:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-neon);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section h4 i {
    color: var(--neon-green);
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-section ul li:hover {
    padding-left: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.footer-section ul li a:hover {
    color: var(--neon-green);
    transform: translateX(6px);
}

.footer-section ul li a i {
    color: var(--neon-green);
    font-size: 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    padding: 0.125rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section.social-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-section.social-section h4 {
    justify-content: flex-start;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-icons a::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;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: transparent;
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-neon-strong);
    animation: socialBounce 0.5s ease-in-out;
}

@keyframes socialBounce {
    0%, 100% { transform: translateY(-6px) scale(1.05); }
    50% { transform: translateY(-9px) scale(1.08); }
}

.footer-section.contact-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--neon-green);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 50px;
}

.contact-item:hover {
    transform: translateX(3px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--neon-green);
}

.contact-text h3 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.footer-bottom p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.footer-bottom .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.footer-bottom .footer-links a:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), rgba(16, 185, 129, 0.3), rgba(124, 45, 18, 0.3));
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 1.25rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom .footer-links {
        margin-left: 0;
        margin-top: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom .footer-links {
        gap: 0.5rem;
    }
    
    .footer-bottom .footer-links a {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

.featured-section {
    margin-bottom: 4rem;
    position: relative;
}

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

.featured-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
}

.featured-header .section-title i {
    color: var(--neon-orange);
    animation: pulse-fire 1.5s ease-in-out infinite;
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.featured-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
}

.featured-carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 0.8);
    will-change: transform;
}

.featured-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .featured-carousel {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .featured-carousel {
        max-width: 900px;
    }
}

.featured-item.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    pointer-events: auto;
}

.featured-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.3);
}

.featured-item.giveaway-completed {
    opacity: 0.6;
    filter: grayscale(100%);
    background: rgba(124, 45, 18, 0.1);
    border-color: rgba(124, 45, 18, 0.3);
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.featured-item.giveaway-completed:hover {
    transform: none;
    border-color: rgba(124, 45, 18, 0.3);
    box-shadow: none;
    background: rgba(124, 45, 18, 0.15);
}

.featured-item.giveaway-completed .featured-title {
    color: rgba(255, 255, 255, 0.6);
}

.featured-item.giveaway-completed .featured-description {
    color: rgba(203, 213, 225, 0.6);
}

.featured-item.giveaway-completed .featured-status {
    background: rgba(124, 45, 18, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 45, 18, 0.4);
}

.featured-item.giveaway-completed .featured-date {
    color: rgba(148, 163, 184, 0.6);
}

.featured-item.giveaway-completed .progress-fill {
    background: rgba(124, 45, 18, 0.6);
    box-shadow: 0 0 10px rgba(124, 45, 18, 0.3);
}

.featured-item.giveaway-completed .progress-bar {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-featured-participate {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3), 0 0 15px rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.btn-featured-participate::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.btn-featured-participate:hover {
    transform: translateY(-5px) scale(1.03);
    background: linear-gradient(135deg, #00e5ff 0%, #4a90e2 100%);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.4), 0 0 25px rgba(0, 210, 255, 0.4);
    color: #ffffff;
}

.btn-featured-participate:hover::after {
    transform: scale(1);
}

.btn-featured-participate:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-featured-participate i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-featured-participate:hover i {
    transform: rotate(15deg) scale(1.2);
}

.featured-item.giveaway-completed .btn-featured-participate {
    background: rgba(60, 60, 60, 0.4);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.featured-item.giveaway-completed .btn-featured-participate:hover {
    transform: none;
    box-shadow: none;
    background: rgba(60, 60, 60, 0.4);
}

.featured-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
}

.featured-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: top center;
    filter: blur(15px) brightness(0.6);
    z-index: -1;
    transform: scale(1.1); 
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background-color: transparent;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.featured-item:hover .featured-image {
    transform: scale(1.05);
}

.featured-item.giveaway-completed .featured-image {
    filter: grayscale(100%) brightness(0.8);
    transform: none;
}

.featured-item.giveaway-completed .featured-image:hover {
    transform: none;
}

.featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.25rem;
    z-index: 3;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-neon);
}

.featured-content {
    padding: 1.25rem;
}

@media (max-width: 480px) {
    .featured-content {
        padding: 1rem;
    }
    
    .featured-stats {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .featured-stats .stat-item {
        padding: 6px 4px;
    }
    
    .featured-stats .stat-label {
        font-size: 0.6rem;
    }
    
    .featured-stats .stat-value {
        font-size: 0.75rem;
    }
    
    .featured-title {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .featured-content {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .featured-content {
        padding: 2.5rem;
    }
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.featured-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.featured-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.featured-stats .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-stats .stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.featured-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}


.featured-countdown {
    display: flex;
    gap: 0.75rem;
}

.featured-countdown-item {
    background: var(--bg-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    border: var(--border-subtle);
}

.featured-countdown-item span {
    display: block;
    font-weight: 700;
    color: var(--neon-green);
    font-size: 1rem;
}

.featured-countdown-item small {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.carousel-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;
}

.carousel-btn:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px) scale(1.05);
}

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

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: var(--bg-card);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.carousel-btn:disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-card);
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(15, 23, 42, 0.5);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--blue-primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), var(--shadow-neon);
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
    border: var(--border-subtle);
    margin: 20px auto;
    position: relative;
}

.modal-content.modal-large {
    max-width: 900px;
}

.modal-content.modal-medium {
    max-width: 700px;
    max-height: 95vh;
}

.modal-content.modal-small {
    max-width: 450px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-secondary);
    border-radius: 24px 24px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.modal-header h3 i {
    color: var(--neon-green);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-green);
    transform: scale(1.1);
}

.modal-body {
    padding: 0px;
    max-height: 80vh;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 100%;
        max-height: 90vh;
        margin: 10px auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
        max-height: 75vh;
    }
    
    .modal-content.modal-large {
        max-width: 100%;
    }
    
    .modal-content.modal-small {
        max-width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 500px;
        max-height: 85vh;
    }
    
    .modal-body {
        max-height: 70vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content {
        width: 85%;
        max-width: 600px;
        max-height: 85vh;
    }
    
    .modal-body {
        max-height: 70vh;
    }
}

@media (min-width: 1025px) {
    .modal-content {
        width: 80%;
        max-width: 700px;
        max-height: 85vh;
    }
    
    .modal-body {
        max-height: 70vh;
    }
}

@media (hover: none) and (pointer: coarse) {
    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-close:hover {
        transform: scale(1.2);
    }
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-secondary);
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.verification-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-group {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.option-group:hover {
    border-color: var(--neon-green);
}

.option-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.option-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--neon-green);
    cursor: pointer;
}

.option-text {
    font-size: 1rem;
    font-weight: 600;
}

.option-input {
    margin-top: 0.5rem;
}

.option-input input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.option-input input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.option-input input::placeholder {
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-verify-modal {
    padding: 1rem 3rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-neon);
}

.btn-verify-modal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-strong);
}

.modal-error {
    background: rgba(124, 45, 18, 0.1);
    color: var(--burgundy-primary);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 45, 18, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

#modalUserEntriesList {
    display: flex;
    flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.user-info-display,
.modal-user-info-display {
    background: var(--bg-secondary);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-neon);
}

.user-header,
.modal-user-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-header h4,
.modal-user-header h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.user-details,
.modal-user-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item,
.modal-detail-item {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item strong,
.modal-detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.detail-item span,
.modal-detail-item span {
    color: var(--neon-green);
    font-weight: 600;
}

.user-entries h4,
.modal-user-entries h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.entries-list,
.modal-entries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-entry-item,
.modal-user-entry-item {
    background: var(--bg-card);
    width: 100%;
    margin-bottom: 10px; /* For vertical separation */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: var(--shadow-card);
}

.modal-user-entry-item.primary-entry {
    border: 2px solid var(--blue-primary);
    background: rgba(59, 130, 246, 0.05);
}

.user-entry-item::before,
.modal-user-entry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.user-entry-item:hover,
.modal-user-entry-item:hover {
    transform: translateY(-2px);
    background: var(--bg-card-hover);
    border-color: var(--blue-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.entry-giveaway,
.modal-entry-giveaway {
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.entry-ticket,
.modal-entry-ticket {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-entry-ticket .ticket-label {
    background: rgba(59, 130, 246, 0.2);
    color: var(--blue-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.modal-entry-ticket .ticket-number {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    color: var(--text-primary);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Glassmorphism Badge Style */
.ticket-badge-glass {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 4px;
}

.entry-status,
.modal-entry-status {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entry-status.active,
.modal-entry-status.active {
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-primary);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.entry-status.completed,
.modal-entry-status.completed {
    background: rgba(59, 130, 246, 0.2);
    color: var(--blue-primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.modal-entry-owner {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--blue-primary);
}

.owner-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.owner-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.owner-phone {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.modal-entry-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
}

.entry-payment,
.modal-entry-payment {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.entry-date,
.modal-entry-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.entries-summary,
.modal-entries-summary {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-stats,
.modal-summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-item,
.modal-summary-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.summary-label,
.modal-summary-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value,
.modal-summary-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* Giveaway Detail Modal Styles */
.giveaway-detail {
    margin-bottom: 2rem;
}

.giveaway-image-container {
    position: relative;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Pseudo-element for the blurred background effect */
.giveaway-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.6);
    z-index: -1;
    transform: scale(1.1); /* Prevents white edges from blur */
}

.giveaway-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.giveaway-image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.giveaway-status-badge {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-neon);
}

.giveaway-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    border: var(--border-subtle);
}

.giveaway-info .giveaway-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.giveaway-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--neon-green);
}

.participation-form-container {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: var(--border-subtle);
    border-top: 20px;
}

.participation-form-container h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.participation-form-container h4 i {
    color: var(--neon-green);
}




/* Modal Success Message */
.modal-success-message {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 2px solid var(--neon-green);
}

.modal-success-message .success-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.modal-success-message h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-success-message p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-success-message .ticket-display {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.ticket-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coming Soon Modal */
.coming-soon-icon {
    font-size: 4rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

#comingSoonModal h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#comingSoonModal p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Giveaway Item with Image */
.giveaway-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.form-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

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

.text-primary {
    color: var(--neon-green);
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-green);
    animation: spin 1s ease-in-out infinite;
}

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

/* Mobile-First Responsive Design */

/* Base Mobile Styles (320px - 480px) */
@media (max-width: 480px) {
    /* Viewport and Touch Optimization */
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Enhanced Navigation for Mobile */
    .nav-container {
        height: 60px;
        padding: 0 15px;
        position: relative;
        z-index: 1000;
    }
    
    .nav-brand {
        transition: all 0.3s ease;
    }
    
    .nav-brand:hover {
        transform: scale(1.05);
    }
    
    .logo-circle {
        width: 42px;
        height: 42px;
        animation: pulse-glow-mobile 2.5s ease-in-out infinite;
    }
    
    @keyframes pulse-glow-mobile {
        0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.3); }
        50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.5); transform: scale(1.05); }
    }
    
    .logo-circle i {
        font-size: 18px;
    }
    
    .brand-title {
        font-size: 16px;
        letter-spacing: 1px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .brand-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
        background: var(--gradient-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
        text-transform: lowercase;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 22px;
        padding: 10px;
        background: rgba(0, 255, 136, 0.1);
        border: 1px solid rgba(0, 255, 136, 0.3);
        border-radius: 12px;
        color: var(--neon-green);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--neon-green);
        color: var(--bg-primary);
        box-shadow: var(--shadow-neon);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle.active {
        background: var(--neon-green);
        color: var(--bg-primary);
        box-shadow: var(--shadow-neon);
    }
    
    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(16, 16, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        border-top: var(--border-neon);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-link {
        padding: 15px;
        font-size: 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-link:hover {
        background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.1));
        border-color: var(--neon-green);
        transform: translateX(10px);
    }
    
    .mobile-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .mobile-link:hover::before {
        left: 100%;
    }
    
    .mobile-link.active {
        background: var(--gradient-primary);
        color: var(--bg-primary);
        box-shadow: var(--shadow-neon);
        font-weight: 700;
    }
    
    /* Header */
    .header {
        padding: 2rem 0 2rem;
    }
    
    .logo {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .logo i {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-icons {
        height: 40px;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    /* Container */
    .container {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .main-content {
        padding: 0.5rem 0 1.5rem !important;
    }
    
/* Cards */
.giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card, .help-card, .contact-card {
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    border: var(--border-subtle);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.giveaway-card::before,
.entry-card::before,
.success-card::before,
.recent-entries-card::before,
.giveaway-selection-card::before,
.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.giveaway-card:hover::before,
.entry-card:hover::before,
.success-card:hover::before,
.recent-entries-card:hover::before,
.giveaway-selection-card:hover::before,
.search-card:hover::before {
    opacity: 1;
}

.giveaway-card:hover,
.entry-card:hover,
.success-card:hover,
.recent-entries-card:hover,
.giveaway-selection-card:hover,
.search-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.giveaway-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.giveaway-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Enhanced Typography Hierarchy for Mobile */
.giveaway-card h4,
.entry-card h4,
.success-card h4,
.recent-entries-card h4,
.giveaway-selection-card h4,
.search-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.giveaway-card p,
.entry-card p,
.success-card p,
.recent-entries-card p,
.giveaway-selection-card p,
.search-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile-specific card enhancements */
@media (max-width: 480px) {
    .giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card, .help-card, .contact-card {
        padding: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        width: 100% !important;
    }
    
    .giveaway-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .giveaway-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Contact Page Mobile Specifics */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .contact-item {
        padding: 0.75rem !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .contact-info, .contact-form-section {
        width: 100% !important;
    }

    .contact-header {
        margin-bottom: 1rem !important;
    }

    .contact-header h2 {
        font-size: 1.4rem !important;
    }

    .contact-icon {
        min-width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    .contact-text h3 {
        font-size: 1rem !important;
    }

    .contact-text p {
        font-size: 0.85rem !important;
    }

    /* Input Fields Optimization */
    .form-container {
        padding: 1rem !important;
    }

    .form-group {
        margin-bottom: 1rem !important;
    }

    .input-container input,
    .input-container select,
    .input-container textarea {
        padding: 12px 12px 12px 45px !important;
        font-size: 16px !important; /* Prevent iOS zoom */
        min-height: 48px !important; /* Better touch target */
    }

    .textarea-container textarea {
        min-height: 120px !important;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
    }

    .btn-submit, .btn-reset {
        width: 100% !important;
        flex: none !important;
        min-height: 50px !important;
    }

    /* Floating Action Button (FAB) Fix */
    .mobile-fab, #mobileVerifyBtn {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 1.3rem !important;
        opacity: 0.9;
        /* Ensure it doesn't block form interactions too much */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    /* Spacing between sections */
    .contact-section {
        margin-bottom: 1.5rem !important;
    }

    .emergency-grid {
        gap: 1rem !important;
    }

    .emergency-item {
        padding: 1rem !important;
    }
    .giveaway-card h4,
    .entry-card h4,
    .success-card h4,
    .recent-entries-card h4,
    .giveaway-selection-card h4,
    .search-card h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .giveaway-card p,
    .entry-card p,
    .success-card p,
    .recent-entries-card p,
    .giveaway-selection-card p,
    .search-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.75rem;
    }
}
    
    /* Progress Stats */
    .progress-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    /* Countdown */
    .countdown-container {
        padding: 1.25rem;
    }
    
    .countdown-display {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 0.75rem;
        flex: 1;
        min-width: 0;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    /* Forms */
    .entry-form {
        gap: 1.5rem;
        padding: 2.5rem 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select {
        padding: 1.25rem;
        font-size: 1.1rem;
        min-height: 56px;
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .btn-submit, .btn-reset {
        width: 100%;
        padding: 1.5rem;
        font-size: 1.2rem;
        font-weight: 800;
        letter-spacing: 1px;
    }
    
    /* Success Section */
    .success-card {
        padding: 2rem 1.5rem;
    }
    
    .ticket-number {
        font-size: 2.2rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-share, .btn-print {
        width: 100%;
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Giveaway Selection */
    .selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .giveaway-tabs {
        width: 100%;
        padding: 0.25rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .giveaway-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .giveaway-item {
        padding: 0;
    }
    
    .giveaway-item h4 {
        font-size: 1.1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .giveaway-item p {
        font-size: 0.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Recent Entries */
    .entries-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .entry-item {
        padding: 1.25rem;
    }
    
    .entry-item .entry-name {
        font-size: 1rem;
    }
    
    .btn-view-all {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Search */
    .search-controls input {
        width: 100%;
        min-width: 100%;
        padding: 0.875rem;
    }
    
    .search-controls {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .search-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-result-item {
        padding: 1.25rem;
    }
    
    .result-name {
        font-size: 1rem;
    }
    
    /* User Info */
    .user-details,
    .modal-user-details {
        grid-template-columns: 1fr;
    }
    
    .summary-stats,
    .modal-summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-value,
    .modal-summary-value {
        font-size: 1.5rem;
    }
    
    /* Featured Carousel */
    .featured-item {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .featured-image-container {
        height: 200px;
    }
    
    .featured-content {
        padding: 1.25rem;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .featured-countdown-item {
        min-width: 40px;
        padding: 0.4rem 0.6rem;
    }
    
    .featured-countdown-item span {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 100%;
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }

    /* Help & Contact Page Optimization */
    .help-grid, .contact-grid {
        gap: 1rem;
        margin-top: 1rem;
    }

    .help-item, .contact-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .help-icon, .contact-icon {
        min-width: 48px;
        height: 48px;
        padding: 0.75rem;
    }

    .help-icon i, .contact-icon i {
        font-size: 1.25rem;
    }

    .visual-timeline {
        padding-left: 0;
        gap: 0.75rem;
    }

    .visual-timeline::before {
        display: none;
    }

    .timeline-step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-card {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .glassmorphism {
        padding: 1rem !important;
    }
    
    .option-input input {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .btn-verify-modal {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
    }
}

/* Small Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-container {
        height: 65px;
        padding: 0 20px;
    }
    
    .logo-circle {
        width: 42px;
        height: 42px;
    }
    
    .logo-circle i {
        font-size: 19px;
    }
    
    .brand-title {
        font-size: 19px;
    }
    
    .brand-subtitle {
        font-size: 11px;
    }
    
    .header {
        padding: 2.5rem 0 2.5rem;
    }
    
    .logo {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    
    .logo i {
        font-size: 3rem;
    }
    
    .hero-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.4rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .giveaway-title {
        font-size: 1.8rem;
    }
    
    .countdown-display {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.875rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.9rem;
    }
    
    .btn-submit, .btn-reset {
        padding: 0.9rem;
    }
    
    .ticket-number {
        font-size: 2.4rem;
    }
    
    .giveaway-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .entries-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .search-results {
        grid-template-columns: 1fr;
    }
    
    .featured-image-container {
        height: 220px;
    }
    
    .featured-title {
        font-size: 1.4rem;
    }
    
    .modal-content {
        width: 90%;
        max-width: 500px;
    }
}

/* Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        height: 70px;
        padding: 0 30px;
    }
    
    .logo-circle {
        width: 44px;
        height: 44px;
    }
    
    .logo-circle i {
        font-size: 20px;
    }
    
    .brand-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 20px;
        font-weight: 800;
    }
    
    .brand-subtitle {
        background: var(--gradient-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 12px;
        font-weight: 600;
        text-transform: lowercase;
    }
    
    .header {
        padding: 3rem 0 2.5rem;
    }
    
    .logo {
        font-size: 2.6rem;
        letter-spacing: 3px;
    }
    
    .logo i {
        font-size: 3.2rem;
    }
    
    .hero-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.6rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card {
        padding: 1.75rem;
        border-radius: 22px;
    }
    
    .giveaway-title {
        font-size: 2rem;
    }
    
    .countdown-display {
        gap: 1.25rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1rem;
    }
    
    .btn-submit, .btn-reset {
        padding: 1.125rem;
    }
    
    .ticket-number {
        font-size: 2.6rem;
    }
    
    .giveaway-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .entries-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .search-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .featured-image-container {
        height: 240px;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }

    .featured-giveaway .featured-image {
        height: 350px;
    }
    
    .modal-content {
        width: 85%;
        max-width: 600px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        text-align: left;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .nav-container {
        height: 70px;
        padding: 0 40px;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-circle i {
        font-size: 20px;
    }
    
    .brand-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 20px;
        font-weight: 800;
    }
    
    .brand-subtitle {
        background: var(--gradient-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 12px;
        font-weight: 600;
        text-transform: lowercase;
    }
    
    .header {
        padding: 4rem 0 3rem;
    }
    
    .logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .logo i {
        font-size: 3.5rem;
    }
    
    .hero-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 4rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card {
        padding: 2.5rem;
        border-radius: 24px;
    }
    
    .giveaway-title {
        font-size: 2.2rem;
    }
    
    .countdown-display {
        gap: 1.5rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1.25rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 1.125rem;
    }
    
    .btn-submit, .btn-reset {
        padding: 1.25rem;
    }
    
    .ticket-number {
        font-size: 3rem;
    }
    
    .giveaway-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .entries-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .search-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-image-container {
        height: 300px;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 80%;
        max-width: 700px;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        text-align: left;
    }
}

/* High DPI/Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-circle i,
    .floating-icon,
    .countdown-number {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .progress-fill {
        transition: none;
    }
    
    .floating-icon,
    .logo i,
    .pulse-glow {
        animation: none !important;
    }
}

/* Landscape Orientation (Mobile) */
@media (max-width: 768px) and (orientation: landscape) {
    .countdown-display {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .floating-icons {
        height: 30px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

/* Portrait Orientation (Mobile) */
@media (max-width: 768px) and (orientation: portrait) {
    .main-content {
        padding: 1.5rem 0;
    }
    
    .giveaway-card, .entry-card, .success-card, .recent-entries-card, .giveaway-selection-card, .search-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .giveaway-title {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .hero-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.6rem;
    }
}

/* Touch-Friendly Enhancements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    .btn-submit, .btn-reset, .btn-share, .btn-print, .btn-search, .btn-verify-modal {
        min-height: 44px;
        padding: 1rem 1.5rem;
    }
    
    .nav-link, .mobile-link {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .form-group input,
    .form-group select {
        min-height: 44px;
        padding: 1rem;
    }
    
    .carousel-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Reduce animations for better performance on mobile */
    .giveaway-item,
    .entry-item,
    .search-result-item {
        transition: transform 0.2s ease;
    }
    
    .giveaway-item:hover,
    .entry-item:hover,
    .search-result-item:hover {
        transform: translateX(3px);
    }
}

/* Print Styles */
@media print {
    /* Hide everything by default */
    body * {
        visibility: hidden;
    }

    /* Hide decorative elements */
    body::before, 
    body::after {
        display: none !important;
    }

    /* Target the specific modal content we want to print */
    #giveawayModal, 
    #giveawayModal * {
        visibility: visible;
    }

    /* Position the modal content for print */
    #giveawayModal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        background: white !important;
        display: block !important;
        overflow: visible !important;
    }

    .modal-content {
        box-shadow: none !important;
        border: 2px solid #000 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }

    /* Hide modal elements we don't want to print */
    .modal-close,
    .btn-share,
    .btn-print,
    .btn-new-entry,
    .participation-form-container {
        display: none !important;
    }

    /* Ensure success message is visible if it's the active state */
    .modal-success-message {
        display: block !important;
        color: black !important;
    }

    /* Style the ticket number for print */
    .ticket-number {
        border: 2px dashed #000 !important;
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        padding: 20px !important;
        font-size: 2rem !important;
        margin: 20px 0 !important;
    }

    /* Ensure text is readable */
    h4, p, span {
        color: #000 !important;
    }

    /* Add a print header */
    .modal-success-message::before {
        content: "Rifas Sociables - Comprobante de Boleto";
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;
    }
}

/* Info Modal Styles */
.info-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.info-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.info-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.info-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.info-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.info-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.info-modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
}

.info-modal-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-modal-status.status-completed {
    background-color: rgba(124, 45, 18, 0.15);
    color: var(--burgundy-primary);
    border: 1px solid rgba(124, 45, 18, 0.3);
}

.info-modal-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-modal-meta-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.info-modal-meta-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-modal-meta-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.info-modal-winners-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.info-modal-winners-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-modal-winners-title i {
    color: #ffd700;
}

.info-modal-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background-color: #fff;
    transition: all 0.2s ease;
}

.info-modal-winner-item:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.info-modal-winner-info {
    flex: 1;
}

.info-modal-winner-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-modal-winner-ticket {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-modal-winner-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.info-modal-winner-badge {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Winners Section Styles */
.winner-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-subtle);
}

.winner-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: var(--bg-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.winner-item:hover {
    transform: translateX(5px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.winner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 16px 0 0 16px;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.winner-ticket {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.winner-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.winner-prize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winner-summary {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    border: var(--border-subtle);
}

.winner-summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.winner-summary-item {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: var(--border-subtle);
}

.winner-summary-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-summary-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winner-empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: var(--border-subtle);
}

.winner-error {
    color: var(--burgundy-primary);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(124, 45, 18, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 45, 18, 0.3);
    margin-bottom: 1rem;
}

.info-modal-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-modal-summary-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-modal-summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-modal-summary-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: var(--border-subtle);
}

.info-modal-summary-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-modal-summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-modal-empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: var(--border-subtle);
}

/* Responsive adjustments for info modal */
@media (max-width: 768px) {
    .info-modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .info-modal-title {
        font-size: 1.25rem;
    }
    
    .info-modal-meta {
        grid-template-columns: 1fr;
    }
    
    .info-modal-summary-stats {
        grid-template-columns: 1fr;
    }
}

/* Mobile Header - Hide on Desktop */
@media (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }
    
    /* Hide mobile menu toggle on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Banking Details Display Styles */
.banking-details-display {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease-in-out;
}

.banking-info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.banking-info-card h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--gradient-primary);
    padding-bottom: 0.5rem;
}

.banking-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.banking-detail-item {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.banking-detail-item:hover {
    transform: translateY(-2px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Image Upload Styles */
.image-upload-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-upload-area {
    border: 2px dashed var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-style: dashed;
    border-color: var(--neon-green);
}

.image-upload-area:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
}

.image-upload-area.drag-over {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.image-upload-area:hover .upload-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-cyan);
}

.upload-text p {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.upload-hint {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
}

.image-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem;
    min-height: 200px;
    overflow: hidden;
}

.image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.btn-remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--burgundy-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.btn-remove-image:hover {
    transform: scale(1.1);
    background: #991b1b;
    box-shadow: 0 4px 12px rgba(124, 45, 18, 0.4);
}

.upload-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.file-name {
    font-weight: 600;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-name i {
    color: var(--neon-cyan);
}

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

.upload-hints {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.upload-hints small {
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

.upload-hints small:first-child {
    color: var(--neon-green);
    border-color: rgba(0, 255, 136, 0.3);
}

.upload-hints small:last-child {
    color: var(--neon-cyan);
    border-color: rgba(0, 212, 255, 0.3);
}

/* PayPal Email Display */
#paypalEmailDisplay {
    grid-column: 1 / -1;
}

/* Responsive adjustments for banking and upload */
@media (max-width: 768px) {
    .banking-info-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .image-upload-area {
        padding: 1.5rem 1rem;
    }
    
    .upload-icon {
        font-size: 2rem;
    }
    
    .upload-hints {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .upload-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animation for showing banking details */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.banking-details-display.show {
    animation: slideDown 0.3s ease-in-out;
}

/* Enhanced mobile upload area */
@media (max-width: 480px) {
    .image-upload-area {
        padding: 1.25rem 1rem;
    }
    
    .upload-icon {
        font-size: 2.5rem;
    }
    
    .image-preview {
        min-height: 150px;
    }
    
    .image-preview img {
        max-height: 200px;
    }
}

/* Vertical Ticket Counter Styles */
.ticket-counter-group {
    margin-bottom: 1.5rem;
}

.ticket-counter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.ticket-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.ticket-counter:hover {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ticket-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.ticket-btn:hover {
    border-color: var(--blue-primary);
    background: var(--blue-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.ticket-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.ticket-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 80px;
}

.ticket-display span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    font-family: 'Inter', sans-serif;
}

.ticket-display input[type="hidden"] {
    display: none;
}

.winner-summary p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.winner-summary strong {
    color: var(--text-primary);
    font-weight: 700;
}

.prize-picture-container {
    margin-top: 1.5rem;
    text-align: center;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
    border: var(--border-subtle);
    box-shadow: var(--shadow-card);
}

#prizeGivingPicture {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ticket-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ticket-minimum {
    color: var(--blue-primary);
    font-weight: 600;
}

.ticket-total {
    font-weight: 700;
    color: var(--teal-primary);
}

/* Mobile Contact Form Optimizations */
@media (max-width: 480px) {
    .contact-section {
        padding: 0;
        margin-bottom: 2rem;
    }

    .contact-section .container {
        padding: 0 10px;
        width: 100%;
        max-width: none;
    }

    .contact-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        width: 100%;
        margin: 0;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .contact-form,
    .contact-form .form-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.25rem 1rem;
    }

    .form-group {
        width: 100%;
    }

    .input-container {
        width: 100%;
    }

    .input-container input,
    .input-container select,
    .input-container textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-submit, .btn-reset {
        width: 100%;
        flex: none;
    }
}

/* Enhanced Form Styles for giveawayModal */
#giveawayModal .form-group {
    margin-bottom: 1.25rem;
}

#giveawayModal .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

#giveawayModal .form-group input,
#giveawayModal .form-group select {
    background-color: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

#giveawayModal .form-group input:focus,
#giveawayModal .form-group select:focus {
    outline: none;
    border-color: var(--blue-primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

#giveawayModal .image-upload-area {
    border: 2px dashed var(--border-blue);
    background-color: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    text-align: center;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#giveawayModal .image-upload-area:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--blue-primary);
}

#giveawayModal .upload-icon {
    font-size: 2.5rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

#giveawayModal .form-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
}

#giveawayModal .btn-submit,
#giveawayModal .btn-reset {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

#giveawayModal .btn-submit {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border: none;
    box-shadow: var(--shadow-blue);
}

#giveawayModal .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

#giveawayModal .btn-reset {
    background-color: transparent;
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
}

#giveawayModal .btn-reset:hover {
    background-color: var(--bg-card);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
  
/* Compliance Modal Styles */  
.compliance-text {  
    font-size: 1.1rem;  
    color: var(--text-primary);  
    margin-bottom: 1.5rem;  
    text-align: center;  
}  
  
.compliance-points {  
    display: flex;  
    flex-direction: column;  
    gap: 1rem;  
    margin-bottom: 1.5rem;  
}  
  
.compliance-item {  
    display: flex;  
    align-items: center;  
    gap: 1rem;  
    padding: 1rem;  
    background: rgba(255, 255, 255, 0.05);  
    border-radius: 8px;  
    border: 1px solid rgba(255, 255, 255, 0.1);  
}  
  
.compliance-item i {  
    color: var(--teal-primary);  
    font-size: 1.2rem;  
}  
  
.compliance-item span {  
    color: var(--text-secondary);  
    font-size: 0.95rem;  
}  
  
.compliance-legal-link {  
    text-align: center;  
    margin-bottom: 1rem;  
}  
  
.compliance-legal-link a {  
    color: var(--blue-primary);  
    text-decoration: underline;  
    font-size: 0.9rem;  
    transition: color 0.3s ease;  
}  
  
.compliance-legal-link a:hover {  
    color: var(--blue-secondary);  
}  
