/* ===== Landing Page Styles ===== */

.landing-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.main-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-color, #FF8B6A);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-subtitle {
    font-size: 28px;
    color: var(--text-light, #666);
    margin-bottom: 50px;
}

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

.game-card {
    background: linear-gradient(135deg, #7A9CB8 0%, #6B8BA8 100%);
    border: none;
    border-radius: 20px;
    padding: 35px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    text-decoration: none;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #8AACC8 0%, #7B9BB8 100%);
}

.game-card:active {
    transform: translateY(-4px) scale(1.01);
}

.game-card.available {
    background: linear-gradient(135deg, #7A9CB8 0%, #6B8BA8 100%);
}

.game-card.coming-soon {
    background: linear-gradient(135deg, #B8B8B8 0%, #A8A8A8 100%);
    opacity: 0.7;
    cursor: not-allowed;
}

.game-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.game-name {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.game-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 10px;
}

.game-difficulty {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: auto;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-top: auto;
}

/* ===== Responsive Landing Page ===== */

/* Tablet */
@media (max-width: 1024px) {
    .main-title {
        font-size: 56px;
    }

    .main-subtitle {
        font-size: 24px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .game-card {
        padding: 30px 20px;
        min-height: 200px;
    }

    .game-icon {
        font-size: 64px;
    }

    .game-name {
        font-size: 28px;
    }

    .game-description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .landing-container {
        padding: 40px 25px;
    }

    .main-title {
        font-size: 44px;
    }

    .main-subtitle {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .game-card {
        padding: 28px 20px;
        min-height: 180px;
    }

    .game-icon {
        font-size: 56px;
    }

    .game-name {
        font-size: 26px;
    }

    .game-description {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .game-icon {
        font-size: 48px;
    }

    .game-name {
        font-size: 24px;
    }

    .game-description {
        font-size: 14px;
    }

    .game-difficulty {
        font-size: 18px;
    }
}
