@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    color: #00ffd5;
    text-shadow: 0 0 15px rgba(0, 255, 213, 0.5);
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    color: #b0c4de;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1000px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-card:hover:not(.coming-soon) {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 255, 213, 0.3);
    border-color: #00ffd5;
}

.game-card .icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.game-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.game-card p {
    font-size: 0.95rem;
    color: #a0aab5;
}

/* 即將推出樣式 */
.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.coming-soon:hover {
    opacity: 0.8;
}

footer {
    margin-top: auto;
    padding: 20px;
    color: #6c7a89;
    font-size: 0.9rem;
}
