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

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

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

.site-header {
    margin-bottom: 40px;
}

.site-header h1 {
    color: #d63031;
    font-size: 3em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .subtitle {
    color: #636e72;
    font-size: 1.3em;
    font-weight: normal;
}

.site-header .byline {
    color: #2d3436;
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: bold;
}

.games-section {
    margin-top: 30px;
}

.games-section h2 {
    color: #2d3436;
    font-size: 2em;
    margin-bottom: 30px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.game-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border: 4px solid #2d3436;
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    color: #2d3436;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
}

.game-card:active {
    transform: translateY(-2px);
}

.game-icon {
    font-size: 4em;
    line-height: 1;
}

.game-card h3 {
    font-size: 1.5em;
    margin: 0;
}

.game-card p {
    font-size: 1em;
    color: #636e72;
    margin: 0;
}

.game-card .play-btn {
    margin-top: 10px;
    padding: 10px 25px;
    background: #00b894;
    color: white;
    border: 2px solid #2d3436;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.2s;
}

.game-card:hover .play-btn {
    background: #00a383;
    transform: scale(1.05);
}

.coming-soon {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.coming-soon-badge {
    background: #636e72;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
}

.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    color: #636e72;
    font-size: 0.95em;
}

.footer a {
    color: #0984e3;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .main-container {
        padding: 30px 20px;
    }
    
    .site-header h1 {
        font-size: 2.2em;
    }
    
    .site-header .subtitle {
        font-size: 1.1em;
    }
    
    .games-section h2 {
        font-size: 1.6em;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .main-container {
        padding: 25px 15px;
    }
    
    .site-header h1 {
        font-size: 1.8em;
    }
    
    .site-header .subtitle {
        font-size: 1em;
    }
    
    .site-header .byline {
        font-size: 0.95em;
    }
    
    .games-section h2 {
        font-size: 1.4em;
    }
    
    .game-icon {
        font-size: 3em;
    }
    
    .game-card h3 {
        font-size: 1.3em;
    }
}
