        :root {
            --neon-purple: #6a3dff;
            --neon-purple-glow: 0 0 8px rgba(106, 61, 255, 0.6);
            --bg-gradient: radial-gradient(ellipse at center, #0a0a14 0%, #05020a 80%);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-gradient);
            color: white;
            min-height: 100vh;
        }
        
        .card {
            background: rgba(15, 15, 25, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 61, 255, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            border-color: rgba(106, 61, 255, 0.5);
            box-shadow: var(--neon-purple-glow);
        }
        
        .gw-status {
            background: linear-gradient(180deg, rgba(106, 61, 255, 0.1) 0%, rgba(106, 61, 255, 0.05) 100%);
        }
        
        .neon-text {
            color: white;
            text-shadow: 0 0 5px rgba(106, 61, 255, 0.7);
        }
        
        .neon-button {
            background-color: rgba(106, 61, 255, 0.15);
            border: 1px solid rgba(106, 61, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .neon-button:hover {
            background-color: rgba(106, 61, 255, 0.25);
            border-color: rgba(106, 61, 255, 0.6);
            box-shadow: var(--neon-purple-glow);
        }
        
        .winner-avatar {
            border: 1px solid rgba(106, 61, 255, 0.5);
            box-shadow: var(--neon-purple-glow);
        }
        
        .gw-divider {
            height: 1px;
            background: linear-gradient(90deg, rgba(106, 61, 255, 0) 0%, rgba(106, 61, 255, 0.5) 50%, rgba(106, 61, 255, 0) 100%);
        }
        
        .gw-item {
            transition: transform 0.2s ease;
        }
        
        .gw-item:hover {
            transform: translateY(-2px);
        }
        
        .winners-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            gap: 10px;
        }
        
        .winner-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 16px;
            height: 16px;
            background-color: var(--neon-purple);
            border-radius: 50%;
            box-shadow: var(--neon-purple-glow);
        }
           .countdown-timer {
            background: rgba(106, 61, 255, 0.15);
            border: 1px solid rgba(106, 61, 255, 0.3);
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
        }
        
        .open-button {
            background: linear-gradient(135deg, #6a3dff, #8b6eff);
            border-radius: 8px;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(106, 61, 255, 0.4);
        }
        
        .open-button:hover {
            box-shadow: 0 0 20px rgba(106, 61, 255, 0.6);
            transform: translateY(-2px);
        }
        
        .open-button:active {
            transform: translateY(0);
        }
        
        .ticket-badge {
            background: rgba(106, 61, 255, 0.15);
            border: 1px solid rgba(106, 61, 255, 0.3);
            border-radius: 9999px;
            padding: 0.25rem 0.75rem;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
                .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
        }
        
        .modal {
            background: rgba(15, 15, 25, 0.95);
            border: 1px solid rgba(106, 61, 255, 0.3);
            border-radius: 16px;
            box-shadow: 0 0 20px rgba(106, 61, 255, 0.3);
            max-width: 90%;
            width: 500px;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal-header {
            background: rgba(106, 61, 255, 0.15);
            border-bottom: 1px solid rgba(106, 61, 255, 0.3);
            border-radius: 16px 16px 0 0;
        }
        
        .modal-title {
            background: linear-gradient(135deg, #6a3dff, #a183ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--neon-purple-glow);
        }
        
        .close-button {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .close-button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }
        
        .form-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(106, 61, 255, 0.2);
            border-radius: 8px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            border-color: rgba(106, 61, 255, 0.5);
            box-shadow: 0 0 0 2px rgba(106, 61, 255, 0.2);
            outline: none;
        }
        
        .form-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .submit-button {
            background: linear-gradient(135deg, #6a3dff, #8a63ff);
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .submit-button:hover {
            box-shadow: 0 0 15px rgba(106, 61, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.1);
            transition: .4s;
            border-radius: 34px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #6a3dff;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }
        .modal-hidden {
  display: none !important;
}
