/* ============================================ */
/* OPTIONS-DONATE.CSS - Options Menu,          */
/* Donate Menu                                 */
/* ============================================ */

/* ============================================ */
/* OPTIONS MENU - Design 3: Minimal Lines      */
/* ============================================ */
.options-overlay {
    position: absolute;
    top: -360px;
    left: -640px;
    width: 1280px;
    height: 720px;
    background: rgba(5, 5, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.options-container {
    width: 500px;
    padding: 40px;
    margin-top: -50px;
}

.options-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #44aaff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(68, 170, 255, 0.5);
}

.option-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #1a1a2a;
}

.option-label {
    width: 100px;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.option-slider {
    flex: 1;
    height: 2px;
    background: #1a1a2a;
    position: relative;
    margin: 0 25px;
    cursor: pointer;
}

.option-slider-fill {
    height: 100%;
    background: #44aaff;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.option-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #44aaff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(68, 170, 255, 0.6);
    transition: transform 0.1s, box-shadow 0.1s;
}

.option-slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 15px rgba(68, 170, 255, 0.8);
}

.option-value {
    width: 50px;
    text-align: right;
    color: #44aaff;
    font-size: 18px;
    font-weight: bold;
}

.options-test-btn,
.options-back-btn {
    position: relative;
    display: block;
    width: 240px;
    margin: 30px auto;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #44aaff;
    background: #0a0a12;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: all 0.2s;
}

.options-test-btn::before,
.options-back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #44aaff, transparent);
    transition: width 0.2s;
}

.options-test-btn::after,
.options-back-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #aa55ff);
    transition: width 0.2s;
}

.options-test-btn:hover,
.options-back-btn:hover {
    color: #88ccff;
}

.options-test-btn:hover::before,
.options-back-btn:hover::before {
    width: 70%;
}

.options-test-btn:hover::after,
.options-back-btn:hover::after {
    width: 70%;
}

.options-back-btn {
    margin-top: 40px;
}


/* ============================================ */
/* DONATE MENU - Design 7: Terminal Style      */
/* ============================================ */
.donate-overlay {
    position: absolute;
    top: -360px;
    left: -640px;
    width: 1280px;
    height: 720px;
    background: rgba(5, 5, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-family: 'Courier New', monospace;
}

.donate-container {
    width: 500px;
    padding: 40px;
    margin-top: -30px;
}

.donate-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    color: #44aaff;
}

.donate-title::before {
    content: '> ';
    color: #ff6b9d;
}

.donate-terminal-line {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #1a1a2a;
}

.donate-terminal-line.highlight {
    color: #ff6b9d;
}

.donate-terminal-line::before {
    content: '$ ';
    color: #44aaff;
}

.donate-terminal-link {
    display: block;
    padding: 12px 15px;
    margin-top: 15px;
    background: #0f0f18;
    color: #ff6b9d;
    text-decoration: none;
    border: 1px solid #1a1a2a;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.donate-terminal-link::before {
    content: '> ';
    color: #44aaff;
}

.donate-terminal-link:hover {
    background: #1a1a2a;
    border-color: #ff6b9d;
}

.donate-back-btn {
    position: relative;
    display: block;
    width: 240px;
    margin: 35px auto 0;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #44aaff;
    background: #0a0a12;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: all 0.2s;
}

.donate-back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #44aaff, transparent);
    transition: width 0.2s;
}

.donate-back-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #aa55ff);
    transition: width 0.2s;
}

.donate-back-btn:hover {
    color: #88ccff;
}

.donate-back-btn:hover::before {
    width: 70%;
}

.donate-back-btn:hover::after {
    width: 70%;
}
