/* "I find your lack of faith disturbing." - Darth Vader */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* "Do or do not. There is no try." - Yoda */
.screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    min-height: 500px;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.screen.active {
    display: flex;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

h2 {
    font-size: 3em;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h3 {
    font-size: 1.5em;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

p {
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* "Power! Unlimited power!" - Emperor Palpatine */
.main-btn, .mode-btn, .back-btn, .start-btn {
    padding: 15px 30px;
    font-size: 1.2em;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.main-btn {
    background-color: #ff4444;
    color: white;
}

.main-btn:hover:not(:disabled) {
    background-color: #cc0000;
    transform: scale(1.05);
}

.main-btn:disabled {
    background-color: #666666;
    cursor: not-allowed;
    opacity: 0.5;
}

/* "I have the high ground!" - Obi-Wan Kenobi */
.mode-btn {
    background-color: #4444ff;
    color: white;
    position: absolute;
    bottom: 20px;
}

.mode-btn:hover {
    background-color: #0000cc;
    transform: scale(1.05);
}

.back-btn {
    background-color: #666666;
    color: white;
}

.back-btn:hover {
    background-color: #444444;
    transform: scale(1.05);
}

.start-btn {
    background-color: #44ff44;
    color: black;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1em;
    padding: 10px 20px;
}

.start-btn:hover {
    background-color: #00cc00;
    transform: scale(1.05);
}

/* "You underestimate my power!" - Anakin Skywalker */
input[type="text"] {
    padding: 15px;
    font-size: 1.1em;
    margin: 10px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #666666;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

input[type="text"]:focus {
    outline: none;
    border-color: #ff4444;
}

#games-list, #players-list {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}

/* "These aren't the droids you're looking for." - Obi-Wan Kenobi */
.game-item, .player-item {
    padding: 15px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ff4444;
    transform: scale(1.02);
}

.game-item.selected {
    background-color: rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
}

.player-item {
    cursor: default;
}

/* "The Force is with you, young Skywalker, but you are not a Jedi yet." - Darth Vader */
/* Reduced opacity to 0.5 to make background images clearly visible - CLAUDE.md line 54 */
.game-info {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.distance-display {
    margin: 20px 0;
}

/* "Fear leads to anger. Anger leads to hate." - Yoda */
.warning {
    color: #ff4444;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    animation: pulse 1s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* "Be careful not to choke on your aspirations." - Darth Vader */
.elimination-banner {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 68, 68, 0.95);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: slideDown 0.3s ease-out;
}

.elimination-banner.show {
    display: block;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 20px;
        opacity: 1;
    }
}

/* "The Force is strong with this one." - Darth Vader */
/* CLAUDE.md line 54: Images now in assets/images/ subdirectory */
#killer-mode-screen {
    background-image: url('assets/images/killer_2.png');
}

#hunted-mode-screen {
    background-image: url('assets/images/hunted_1.png');
}

#death-screen {
    background-image: url('assets/images/loser_1.png');
}

#winner-screen {
    background-image: url('assets/images/winner_happy.png');
}

#loser-screen {
    background-image: url('assets/images/second_place.png');
}

/* "Now this is podracing!" - Anakin Skywalker */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 2em;
    }

    .main-btn, .mode-btn, .back-btn {
        font-size: 1em;
        padding: 12px 20px;
    }

    .elimination-banner {
        font-size: 1.2em;
        padding: 15px 30px;
        max-width: 90%;
    }
}

/* "May the Force be with you. Always." - Obi-Wan Kenobi */
