.game-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
}

#goal {
    position: relative;
    width: 800px;
    height: 300px;
    border: 10px solid #333;
    background-color: #fff;
    cursor: crosshair;
    margin-bottom: 100px;
}

.goalpost {
    position: absolute;
    width: 25px;
    height: 300px;
    background-color: white;
    border: 4px solid #333;
    z-index: 2;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.crossbar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 25px;
    background-color: white;
    border-bottom: 4px solid #333;
    z-index: 2;
}

.net {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(0,0,0,0.1) 25px, rgba(0,0,0,0.1) 50px);
}

#goalkeeper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 240px;
    user-select: none;
    z-index: 1;
}

#ball {
    position: absolute;
    font-size: 48px;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    user-select: none;
    z-index: 3;
    pointer-events: none;
}

#score {
    margin-top: 20px;
    font-size: 48px;
    font-family: Arial, sans-serif;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
} 