body {
    margin: 0;
    padding: 0;
    background-color: #03030c;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    box-sizing: border-box;
}

/* Background Marquee */

/* Full Screen Background Matrix Marquee */
/* Full Screen Background Matrix Marquee */
/* Clean Full Screen Matrix Background */
.marquee-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.15;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #03030c;
}

.marquee-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-family: monospace;
    font-weight: bold;
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header */
.header-box {
    text-align: center;
    margin-bottom: 25px;
}

.header-box h1 {
    color: #00ffff;
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.header-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.select-title {
    text-align: center;
    color: #00ffff;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Option Boxes Style */
.option-box {
    padding: 16px 22px;
    margin-bottom: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.option-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.opt-num {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Individual Neon Themes */
.opt-cyan {
    background: rgba(10, 25, 40, 0.7);
    border: 1px solid #00ffff;
    border-left: 5px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}
.opt-cyan span { color: #00ffff; font-weight: bold; letter-spacing: 1px; }

.opt-pink {
    background: rgba(40, 10, 25, 0.7);
    border: 1px solid #ff3366;
    border-left: 5px solid #ff3366;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2);
}
.opt-pink span { color: #ff3366; font-weight: bold; letter-spacing: 1px; }

.opt-green {
    background: rgba(10, 40, 25, 0.7);
    border: 1px solid #00ff66;
    border-left: 5px solid #00ff66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}
.opt-green span { color: #00ff66; font-weight: bold; letter-spacing: 1px; }

.opt-yellow {
    background: rgba(40, 35, 10, 0.7);
    border: 1px solid #ffcc00;
    border-left: 5px solid #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}
.opt-yellow span { color: #ffcc00; font-weight: bold; letter-spacing: 1px; }

.opt-purple {
    background: rgba(30, 10, 40, 0.7);
    border: 1px solid #cc33ff;
    border-left: 5px solid #cc33ff;
    box-shadow: 0 0 10px rgba(204, 51, 255, 0.2);
}
.opt-purple span { color: #cc33ff; font-weight: bold; letter-spacing: 1px; }

/* Professional Footer */
.footer-disclaimer {
    width: 100%;
    clear: both;
    text-align: center;
    margin-top: 60px;
    padding: 30px 15px;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.footer-title {
    color: #00ffff;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.footer-warning {
    color: #ff3333;
    font-size: 0.85rem;
    max-width: 650px;
    margin: 0 auto 12px auto;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.3);
}

.footer-text {
    color: rgba(0, 150, 255, 0.8);
    font-size: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}
/* Jab modal hide ho, toh yeh clicks ko bilkul block na kare */
div[style*="display: none"] {
    pointer-events: none !important;
}

/* Lekin jab modal open ho ya main buttons hon, toh click allow ho */
.option-box, button {
    cursor: pointer;
    z-index: 10;
}
/* Yeh line background marquee ko clicks block karne se rokeygi */
.marquee-bg {
    pointer-events: none !important;
}

/* Option boxes par click 100% allow karne ke liye */
.option-box {
    cursor: pointer;
    position: relative;
    z-index: 10;
}