body {
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    /* Dark Blue-Black */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
}

.game-container {
    position: relative;
    text-align: center;
}

.score-board {
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin: 0 auto 20px;
    font-size: 3rem;
    font-weight: bold;
    color: #e94560;
    /* Match player paddle */
}

.game-area {
    width: 600px;
    height: 400px;
    background-color: #16213e;
    /* Dark Blue */
    border: 2px solid #0f3460;
    position: relative;
    overflow: hidden;
    cursor: none;
    /* Hide cursor inside game area */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.2) 10px,
            transparent 10px,
            transparent 20px);
    transform: translateX(-50%);
}

.paddle {
    position: absolute;
    width: 10px;
    height: 60px;
    border-radius: 4px;
    /* Slightly rounded */
}

#player-paddle {
    left: 10px;
    top: 170px;
    /* (400 - 60) / 2 */
    background-color: #e94560;
    /* Red */
    box-shadow: 0 0 10px #e94560;
}

#computer-paddle {
    right: 10px;
    top: 170px;
    background-color: #4db5ff;
    /* Blue */
    box-shadow: 0 0 10px #4db5ff;
}

.ball {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    left: 295px;
    /* (600 - 10) / 2 */
    top: 195px;
    /* (400 - 10) / 2 */
    border-radius: 50%;
    box-shadow: 0 0 8px #fff;
}

.controls {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-family: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #ddd;
}

.home-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #888;
    text-decoration: none;
    font-size: 1rem;
    font-family: sans-serif;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.home-link:hover {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Icon Style Update */
.home-link {
    border: none;
    padding: 8px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-link:hover {
    color: #fff;
    background: transparent;
    transform: scale(1.2);
    border-color: transparent;
}
/* Score Colors */
#player-score {
    color: #e94560; /* Red */
}
#computer-score {
    color: #4db5ff; /* Blue */
}
