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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff9a56 0%, #8b5cf6 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Header Styles */
.header {
    margin-bottom: 50px;
}

h1 {
    color: #4a5568;
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ff9a56 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3em;
    color: #718096;
    font-style: italic;
    margin-bottom: 0;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.game-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.game-card.available {
    border-color: #38a169;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.game-card.available:hover {
    border-color: #2f855a;
    background: linear-gradient(135deg, #e6ffed 0%, #9ae6b4 100%);
}

.game-card.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.game-card.coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.game-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.game-card h3 {
    color: #2d3748;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.game-card p {
    color: #4a5568;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
}

.game-card.available .status {
    background: #38a169;
    color: white;
}

.game-card.coming-soon .status {
    background: #e2e8f0;
    color: #4a5568;
}

/* Footer */
.footer {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
    color: #718096;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .game-card {
        padding: 20px;
    }
    
    .game-icon {
        font-size: 2.5em;
    }
    
    .game-card h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 1em;
    }
}
