body { 
    margin: 0; 
    overflow: hidden; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
}
/* Cyberpunk UI Elements */
#ui-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 12, 41, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(106, 27, 154, 0.5);
    box-shadow: 0 4px 20px rgba(106, 27, 154, 0.3);
}
#score {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 204, 0.3);
    letter-spacing: 2px;
}
#controls {
    font-size: 14px;
    text-align: center;
    background: rgba(45, 45, 75, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(106, 27, 154, 0.3);
    box-shadow: inset 0 0 10px rgba(106, 27, 154, 0.2);
}
#game-controls {
    display: flex;
    gap: 12px;
}
.control-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 69, 226, 0.4);
    position: relative;
    overflow: hidden;
}
.control-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}
.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 69, 226, 0.6);
    background: linear-gradient(135deg, #88d3ce, #6e45e2);
}
.control-btn:hover:before {
    left: 100%;
}
.control-btn:disabled {
    background: linear-gradient(135deg, #3a3a5a, #4a4a6a);
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(58, 58, 90, 0.4);
    opacity: 0.7;
}
#start-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(15, 12, 41, 0.95);
    color: #fff;
    z-index: 200;
    backdrop-filter: blur(5px);
}
.game-title {
    font-size: 64px;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: neonPulse 2s infinite alternate;
}
@keyframes neonPulse {
    from {
        text-shadow: 0 0 10px rgba(255, 0, 204, 0.3), 0 0 20px rgba(255, 0, 204, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 0, 204, 0.6), 0 0 40px rgba(255, 0, 204, 0.4), 0 0 60px rgba(255, 0, 204, 0.2);
    }
}
#start-button {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 20px;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}
#start-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}
#start-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px rgba(255, 0, 204, 0.8), 0 0 60px rgba(51, 147, 255, 0.6);
    background: linear-gradient(135deg, #3393ff, #ff00cc);
}
#start-button:hover:before {
    left: 100%;
}
/* Buff Display - Cyberpunk Style */
.active-buff {
    position: absolute;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    color: white;
    text-align: center;
    font-weight: 600;
    min-width: 120px;
    z-index: 10;
    font-family: 'Orbitron', sans-serif;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
#player1-buffs {
    top: 100px;
    left: 30px;
    background: rgba(255, 0, 204, 0.2);
    border-left: 3px solid #ff00cc;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.3);
}
#player2-buffs {
    top: 100px;
    right: 30px;
    background: rgba(51, 147, 255, 0.2);
    border-right: 3px solid #3393ff;
    box-shadow: 0 0 15px rgba(51, 147, 255, 0.3);
}
/* Settings Panel - Cyberpunk Redesign */
#settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}
.settings-container {
    background: rgba(30, 25, 60, 0.8);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 0 40px rgba(106, 27, 154, 0.5), inset 0 0 20px rgba(106, 27, 154, 0.2);
    border: 1px solid rgba(106, 27, 154, 0.5);
    backdrop-filter: blur(15px);
}
.settings-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(106, 27, 154, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.settings-group {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(106, 27, 154, 0.3);
}
.settings-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.settings-label {
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(106, 27, 154, 0.3);
}
.settings-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.settings-row label {
    width: 240px;
    font-size: 15px;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
}
.slider-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}
.settings-slider {
    flex: 1;
    height: 10px;
    border-radius: 5px;
    background: rgba(106, 27, 154, 0.3);
    outline: none;
    -webkit-appearance: none;
    position: relative;
    box-shadow: inset 0 0 10px rgba(106, 27, 154, 0.2);
}
.settings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}
.settings-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.8);
}
.settings-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}
.settings-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.8);
}
.value-display {
    width: 60px;
    text-align: center;
    font-weight: 700;
    color: #ff00cc;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
}
.settings-input {
    width: 90px;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid rgba(106, 27, 154, 0.5);
    background-color: rgba(45, 40, 80, 0.8);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: inset 0 0 10px rgba(106, 27, 154, 0.2);
    transition: all 0.3s;
}
.settings-input:focus {
    outline: none;
    border-color: #ff00cc;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5), inset 0 0 10px rgba(255, 0, 204, 0.2);
}
.settings-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.settings-btn {
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
#save-settings {
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.5);
}
#save-settings:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}
#save-settings:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 0, 204, 0.8), 0 0 60px rgba(51, 147, 255, 0.6);
    background: linear-gradient(135deg, #3393ff, #ff00cc);
}
#save-settings:hover:before {
    left: 100%;
}
#cancel-settings {
    background: linear-gradient(135deg, #666, #333);
    color: white;
    box-shadow: 0 0 25px rgba(102, 102, 102, 0.3);
}
#cancel-settings:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(102, 102, 102, 0.5);
    background: linear-gradient(135deg, #333, #666);
}
.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 12px;
    cursor: help;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 280px;
    background: rgba(30, 25, 60, 0.9);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px;
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.3);
    border: 1px solid rgba(106, 27, 154, 0.3);
    font-family: 'Segoe UI', sans-serif;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
/* Mode Controls - Cyberpunk Style */
#mode-controls {
    position: absolute;
    top: 180px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 90px;
    box-sizing: border-box;
    z-index: 5;
}
.mode-panel {
    background: rgba(30, 25, 60, 0.7);
    padding: 15px 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    border: 1px solid rgba(106, 27, 154, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.mode-panel div:first-child {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(106, 27, 154, 0.3);
}
.mode-btn {
    margin: 8px 0;
    padding: 8px 16px;
    font-size: 14px;
    background-color: rgba(106, 27, 154, 0.3);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid rgba(106, 27, 154, 0.3);
}
.mode-btn:hover {
    background-color: rgba(106, 27, 154, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
}
.mode-btn.active {
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* Camera control instructions - Cyberpunk Style */
#camera-instructions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 25, 60, 0.8);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    z-index: 5;
    border: 1px solid rgba(106, 27, 154, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    font-family: 'Segoe UI', sans-serif;
}
/* Glowing effects for cyberpunk feel */
.glow-effect {
    animation: glow 2s infinite alternate;
}
@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 0, 204, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 0, 204, 0.8), 0 0 30px rgba(51, 147, 255, 0.6);
    }
}
/* Loading animation for cyberpunk */
.loading {
    position: relative;
    overflow: hidden;
}
.loading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00cc, #3393ff, transparent);
    animation: loading 2s infinite;
}
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
/* Synonym Test Panel - Side Panel */
#synonym-test-panel {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(30, 25, 60, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.5);
    border: 1px solid rgba(106, 27, 154, 0.5);
    backdrop-filter: blur(15px);
    z-index: 150;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}
.test-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.question-display {
    font-size: 20px;
    margin: 20px 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    min-height: 60px;
}
.choices-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.choice-btn {
    padding: 12px;
    background: rgba(106, 27, 154, 0.3);
    color: #fff;
    border: 1px solid rgba(106, 27, 154, 0.5);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
.choice-btn:hover {
    background: rgba(106, 27, 154, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}
.choice-btn.correct {
    background: rgba(46, 204, 113, 0.3);
    border-color: #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
}
.choice-btn.incorrect {
    background: rgba(231, 76, 60, 0.3);
    border-color: #e74c3c;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}
.progress-display {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    color: #ccc;
    font-family: 'Orbitron', sans-serif;
}
.test-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
#next-question-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    display: none;
}
#next-question-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.5);
}
/* Buff Selection Panel */
#buff-selection-panel {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(30, 25, 60, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.5);
    border: 1px solid rgba(106, 27, 154, 0.5);
    backdrop-filter: blur(15px);
    z-index: 160;
    display: none;
}
.buff-selection-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.buff-type-selection, .buff-side-selection {
    margin-bottom: 20px;
}
.selection-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}
.buff-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 15px;
}
.buff-option {
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
    border: 2px solid transparent;
}
.buff-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}
.buff-option.selected {
    border-color: #ff00cc;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
    background: rgba(255, 0, 204, 0.2);
}
.buff-option.slow { background: rgba(52, 152, 219, 0.3); border-left: 3px solid #3498db; }
.buff-option.split { background: rgba(231, 76, 60, 0.3); border-left: 3px solid #e74c3c; }
.buff-option.color { background: rgba(155, 89, 182, 0.3); border-left: 3px solid #9b59b6; }
.buff-option.enlarge { background: rgba(46, 204, 113, 0.3); border-left: 3px solid #2ecc71; }
.buff-option.shrink { background: rgba(243, 156, 18, 0.3); border-left: 3px solid #f39c12; }
.side-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.side-option {
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid transparent;
}
.side-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}
.side-option.selected {
    border-color: #ff00cc;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
}
.side-option.player1 { background: rgba(255, 0, 204, 0.3); }
.side-option.player2 { background: rgba(51, 147, 255, 0.3); }
#apply-buff-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}
#apply-buff-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.5);
}
/* Results Panel */
#results-panel {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(30, 25, 60, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.5);
    border: 1px solid rgba(106, 27, 154, 0.5);
    backdrop-filter: blur(15px);
    z-index: 170;
    display: none;
}
.results-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff00cc, #3393ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.score-display {
    font-size: 36px;
    margin: 20px 0;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #ff00cc, #3393ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#continue-btn {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff00cc, #3393ff);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}
#continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.5);
}

/* Notification Styles */
#notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}