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

html {
    min-height: 101vh;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --accent-red: #7f1d1d;
    --accent-blue: #1e3a8a;
    --accent-red-bright: #dc2626;
    --accent-blue-bright: #2563eb;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --border: #27272a;
    --shadow: rgba(0, 0, 0, 0.5);
    --gradient: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    --shimmer-gradient: linear-gradient(45deg, var(--accent-red) 0%, var(--accent-blue) 25%, var(--accent-red-bright) 50%, var(--accent-blue-bright) 75%, var(--accent-red) 100%);
    --scrollbar-color: #7f1d1d;
}

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

/* Info Bubble */
.info-bubble {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow);
}

.info-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow);
}

.info-bubble i {
    font-size: 16px;
}

/* Main Content */
.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    gap: 60px;
}

/* Welcome Message */
.welcome-message {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--shimmer-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: shimmer 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

.welcome-message p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.welcome-message .coming-soon {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid transparent;
}

.payment-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.payment-icon i {
    font-size: 4rem;
    transition: all 0.3s ease;
}

/* Venmo styling */
.payment-icon.venmo {
    background: linear-gradient(135deg, #008cff, #0074cc);
}

.payment-icon.venmo .venmo-text {
    color: #ffffff;
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.payment-icon.venmo:hover {
    background: linear-gradient(135deg, #1a9bff, #1a85dd);
    box-shadow: 0 20px 40px rgba(0, 140, 255, 0.4);
}

/* PayPal styling */
.payment-icon.paypal {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.payment-icon.paypal i {
    color: #ffffff;
}

.payment-icon.paypal:hover {
    background: linear-gradient(135deg, #1a7fcb, #1a4098);
    box-shadow: 0 20px 40px rgba(0, 112, 186, 0.4);
}

/* CashApp styling */
.payment-icon.cashapp {
    background: linear-gradient(135deg, #00d632, #00b82a);
}

.payment-icon.cashapp i {
    color: #ffffff;
}

.payment-icon.cashapp:hover {
    background: linear-gradient(135deg, #1ae143, #1ac93b);
    box-shadow: 0 20px 40px rgba(0, 214, 50, 0.4);
}

/* Animations */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(127, 29, 29, 0.4)); }
    to { filter: drop-shadow(0 0 10px rgba(30, 58, 138, 0.4)); }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

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

.modal {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px var(--shadow);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-red-bright);
    background: var(--bg-tertiary);
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

#accessCode {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#accessCode:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.error-message {
    color: var(--accent-red-bright);
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

.modal-footer {
    padding: 15px 25px 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn.cancel {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.modal-btn.cancel:hover {
    background: var(--border);
    color: var(--text-primary);
}

.modal-btn.confirm {
    background: var(--gradient);
    color: var(--text-primary);
}

.modal-btn.confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        padding: 20px;
        gap: 40px;
    }
    
    .welcome-message h2 {
        font-size: 2rem;
    }
    
    .welcome-message p {
        font-size: 1.1rem;
    }
    
    .welcome-message .coming-soon {
        font-size: 1rem;
    }
    
    .payment-icons {
        gap: 40px;
        flex-direction: column;
    }
    
    .payment-icon {
        width: 100px;
        height: 100px;
    }
    
    .payment-icon i {
        font-size: 3rem;
    }
    
    .payment-icon.venmo .venmo-text {
        font-size: 3rem;
    }
    
    .info-bubble {
        top: 10px;
        left: 10px;
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main {
        gap: 30px;
    }
    
    .welcome-message h2 {
        font-size: 1.7rem;
    }
    
    .welcome-message p {
        font-size: 1rem;
    }
    
    .payment-icons {
        gap: 30px;
    }
    
    .payment-icon {
        width: 80px;
        height: 80px;
    }
    
    .payment-icon i {
        font-size: 2.5rem;
    }
    
    .payment-icon.venmo .venmo-text {
        font-size: 2.5rem;
    }
}