:root {
    --bg-color: #060a13;
    --panel-bg: #141b2d;
    --primary-glow: #00f2fe;
    --secondary-glow: #4facfe;
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --accent-gold: #f6ad55;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(at 50% 0%, rgba(0, 242, 254, 0.08) 0px, transparent 50%), linear-gradient(rgba(20, 27, 45, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 27, 45, 0.3) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px, 24px 24px;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.banner-container { width: 100%; max-width: 728px; height: 90px; background: #1e293b; margin-bottom: 25px; border-radius: 8px; overflow: hidden; display: flex; justify-content: center; align-items: center; border: 1px solid #334155; }
.banner-container img { width: 100%; height: 100%; object-fit: cover; }

.main-panel { width: 100%; max-width: 550px; background-color: var(--panel-bg); border-radius: 16px; padding: 30px; box-sizing: border-box; position: relative; box-shadow: 0 0 20px rgba(79, 172, 254, 0.2), inset 0 0 15px rgba(0, 242, 254, 0.1); border: 2px solid transparent; background-image: linear-gradient(var(--panel-bg), var(--panel-bg)), linear-gradient(45deg, var(--primary-glow), var(--secondary-glow)); background-origin: border-box; background-clip: padding-box, border-box; }

.main-header h1 { margin: 0 0 5px 0; text-align: center; background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 2rem; }
.main-header p { text-align: center; color: var(--text-muted); margin: 0 0 15px 0; }

.logo-wrapper { display: flex; justify-content: center; margin-bottom: 15px; }
.site-logo { max-width: 120px; height: auto; object-fit: contain; }

.visitor-counter { text-align: center; font-size: 0.9rem; color: var(--accent-gold); background: rgba(246, 173, 85, 0.1); padding: 5px 12px; border-radius: 20px; display: table; margin: 0 auto 25px auto; }

.input-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.input-group-row { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 15px; margin-bottom: 25px; }
label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
input { background: #1e293b; border: 1px solid #334155; padding: 12px; border-radius: 8px; color: white; font-size: 1rem; outline: none; transition: 0.3s; }
input:focus { border-color: var(--primary-glow); box-shadow: 0 0 10px rgba(0, 242, 254, 0.3); }

select { background: #1e293b; border: 1px solid #334155; padding: 12px; border-radius: 8px; color: white; font-size: 1rem; outline: none; width: 100%; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; transition: 0.3s; }
select:focus { border-color: var(--primary-glow); box-shadow: 0 0 10px rgba(0, 242, 254, 0.3); }

.btn-glow { width: 100%; background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow)); border: none; padding: 14px; color: white; font-size: 1rem; font-weight: bold; border-radius: 8px; cursor: pointer; box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4); transition: 0.3s; }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6); }

.numbers-grid { display: flex; justify-content: center; gap: 12px; margin: 25px 0; }
.ball { width: 45px; height: 45px; background: radial-gradient(circle at 30% 30%, #4facfe, #00f2fe); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; color: white; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0, 242, 254, 0.4); }

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); display: flex; justify-content: center; align-items: center; z-index: 1000; }
.modal-content { background: var(--panel-bg); padding: 35px; border-radius: 16px; max-width: 600px; width: 90%; text-align: center; border: 1px solid #334155; }
.plans-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 25px; }
.plan-card { background: #1e293b; border: 1px solid #334155; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.plan-card.featured { border-color: var(--accent-gold); box-shadow: 0 0 15px rgba(246, 173, 85, 0.2); transform: scale(1.05); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-gold); color: black; padding: 2px 10px; font-size: 0.75rem; font-weight: bold; border-radius: 10px; }
.price { font-size: 1.8rem; font-weight: bold; color: white; margin: 10px 0; }
.btn-plan { background: var(--primary-glow); color: #0b0f19; text-decoration: none; padding: 10px; border-radius: 6px; font-weight: bold; margin-top: 15px; display: block; }
.plan-card.featured .btn-plan { background: var(--accent-gold); color: #000; font-weight: 800; text-transform: uppercase; }

.site-footer { margin-top: auto; padding: 40px 20px 20px 20px; text-align: center; width: 100%; max-width: 550px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; margin: 0 10px; }
.hidden { display: none !important; }
