:root {
    --bg-color: #0b0c10;
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-orange: #ff8c00;
    --neon-gold: #ffd700;
    --text-light: #c5c6c7;
}
body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(180deg, #0b0c10 0%, #1a0b2e 100%);
    min-height: 100vh;
    overflow-x: hidden; 
}

.stripe-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 150px; 
    height: 100vh;
    z-index: -1;
    pointer-events: none; 
}
.stripe {
    position: absolute;
    bottom: -200px;
    width: 2px;
    border-radius: 5px;
    opacity: 0;
    animation: flyUp infinite linear, colorMorph infinite linear;
}

.stripe:nth-child(1) { right: 20px; height: 150px; animation-duration: 7s, 10s; animation-delay: 0s, 0s; width: 3px; }
.stripe:nth-child(2) { right: 50px; height: 220px; animation-duration: 9s, 12s; animation-delay: 2s, 1s; }
.stripe:nth-child(3) { right: 80px; height: 120px; animation-duration: 6s, 9s; animation-delay: 4s, 3s; width: 4px; }
.stripe:nth-child(4) { right: 110px; height: 180px; animation-duration: 11s, 14s; animation-delay: 1s, 2s; }
.stripe:nth-child(5) { right: 140px; height: 250px; animation-duration: 8s, 11s; animation-delay: 5s, 0s; width: 2px; }

@keyframes flyUp {
    0%   { bottom: -250px; opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.8; }
    100% { bottom: 110vh; opacity: 0; }
}
@keyframes colorMorph {
    0%   { background-color: var(--neon-pink); box-shadow: 0 0 15px var(--neon-pink); }
    33%  { background-color: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); }
    66%  { background-color: var(--neon-orange); box-shadow: 0 0 15px var(--neon-orange); }
    100% { background-color: var(--neon-pink); box-shadow: 0 0 15px var(--neon-pink); }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative; 
}
h1, h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    text-transform: uppercase;
}
h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange), 0 0 40px var(--neon-pink);
    margin-bottom: 5px;
    line-height: 1.1;
}
.subtitle {
    text-align: center;
    color: var(--neon-cyan);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 0 0 5px var(--neon-cyan);
}
.info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-pink);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.1);
    line-height: 1.6;
    backdrop-filter: blur(5px); 
}
.info-box h3 {
    color: var(--neon-orange);
    margin-top: 0;
    font-size: 1.5rem;
}
.highlight-text {
    color: #fff;
    font-weight: bold;
}

.info-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.open-service-badge {
    display: inline-block;
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0; 
}

.vip-login-badge {
    display: inline-block;
    padding: 5px 10px;
    border: 1px dashed var(--neon-pink);
    color: var(--neon-pink);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
    font-weight: bold;
}
.vip-login-badge:hover {
    background: var(--neon-pink);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
label {
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 5px;
    display: block;
}
input[type="text"], input[type="email"], input[type="number"], select, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    color: #fff;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--neon-orange);
}
.radio-group label {
    color: #fff;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--neon-pink);
}
.checkbox-group label {
    color: #fff;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.4;
    margin: 0;
}

#live-price-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    display: none; 
    transition: all 0.3s ease;
    margin-top: 10px;
}
#live-price-box.visible {
    display: block;
    animation: pulseBox 2s infinite;
}
#live-price {
    color: var(--neon-orange);
    font-size: 2rem;
    text-shadow: 0 0 10px var(--neon-orange);
    font-weight: bold;
}
.price-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
    text-transform: none;
}
@keyframes pulseBox {
    0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.2); }
}

button {
    background: transparent;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    padding: 20px;
    border: 2px solid var(--neon-orange);
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5) inset, 0 0 10px rgba(255, 140, 0, 0.5);
    margin-top: 10px;
}
button:hover {
    background: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 20px var(--neon-orange) inset, 0 0 20px var(--neon-orange);
}
.alert {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
.alert.error {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid #ff0000;
    color: #ff0000;
}
.footer-links {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--neon-cyan);
}
.hof-btn {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 2px;
}
.hof-btn:hover {
    background: var(--neon-gold);
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 30px var(--neon-gold), 0 0 60px rgba(255, 215, 0, 0.6), inset 0 0 20px var(--neon-gold);
    transform: scale(1.05);
}

/* === SPLASH SCREEN MODAL STYLES (AGB) === */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 9999; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; animation: fadeInModal 0.3s ease-out forwards; }
.modal-box {
    background: var(--bg-color); border: 2px solid var(--neon-cyan); box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-radius: 10px; width: 90%; max-width: 650px; padding: 30px; display: flex; flex-direction: column;
    max-height: 85vh; position: relative;
}
.modal-scroll-area {
    flex: 1; overflow-y: auto; background: rgba(0,0,0,0.6); border: 1px solid #333; padding: 20px;
    margin: 20px 0; color: var(--text-light); font-size: 0.95rem; border-radius: 5px; line-height: 1.6;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}
.modal-scroll-area h4 { color: var(--neon-pink); font-family: 'Orbitron', sans-serif; margin-bottom: 5px; margin-top: 15px;}
.modal-scroll-area h4:first-child { margin-top: 0; }
.modal-scroll-area strong { color: var(--neon-orange); }
.modal-buttons { display: flex; justify-content: space-between; gap: 15px; margin-top: 10px; flex-wrap: wrap; }

.btn-decline {
    background: rgba(255, 0, 0, 0.1); border: 1px solid #ff0000; color: #ff0000; padding: 15px 20px;
    font-family: 'Orbitron', sans-serif; cursor: pointer; border-radius: 5px; flex: 1; transition: 0.3s;
    text-align: center; min-width: 150px;
}
.btn-decline:hover { background: #ff0000; color: #fff; box-shadow: 0 0 15px #ff0000; }

.btn-accept {
    background: rgba(0, 255, 0, 0.1); border: 1px solid #00ff00; color: #00ff00; padding: 15px 20px;
    font-family: 'Orbitron', sans-serif; cursor: pointer; border-radius: 5px; flex: 2; transition: 0.3s;
    text-align: center; font-weight: bold; min-width: 250px;
}
.btn-accept:hover { background: #00ff00; color: #000; box-shadow: 0 0 20px #00ff00; }

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

.modal-scroll-area::-webkit-scrollbar { width: 8px; }
.modal-scroll-area::-webkit-scrollbar-track { background: rgba(0,0,0,0.5); border-radius: 4px; }
.modal-scroll-area::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 4px; }
.modal-scroll-area::-webkit-scrollbar-thumb:hover { background: var(--neon-pink); }