/* Main Styles for Digirino */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 900px;
}

.box {
    width: 300px;
    height: 150px;
    background-color: #1e1e1e;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: #5a5a5a;
}

.box h2 {
    font-size: 24px;
    margin: 0;
    color: #ffffff;
}

/* Game specific styles */
.user-list {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    text-align: left;
}

/* Game Area Layout */
.game-area {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Score Card Styles */
.score-card {
    width: 200px;
    background-color: #1e1e1e;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.score-card h3 {
    margin-top: 0;
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 8px;
    text-align: center;
}

/* Player List Styles */
.player-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: #282828;
}

.player-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

.player-name {
    flex-grow: 1;
    font-weight: bold;
}

.player-score {
    font-size: 16px;
    font-weight: bold;
    padding: 0 5px;
    margin-left: 5px;
    background-color: #333;
    border-radius: 3px;
    min-width: 20px;
    text-align: center;
}

.player-direction {
    margin-left: 5px;
    font-size: 14px;
    color: #999;
}

.game-container {
    width: 500px;
    height: 500px;
    background-color: #1e1e1e;
    border: 2px solid #3a3a3a;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-square {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 3px;
}

/* Game Content Styles */
.game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.instructions {
    margin-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive styles */
@media (max-width: 768px) {
    .game-area {
        flex-direction: column;
    }
    
    .score-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .game-container {
        width: 100%;
        height: 400px;
    }
} 
