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

body {
    font-family: 'Nunito', sans-serif;
    background-color: #0f1923;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #4ecca3;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #3da58a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #4ecca3;
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #4ecca3;
    border: 1px solid #4ecca3;
}

.page-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #4ecca3;
}

.section-title {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #4ecca3;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    height: 3px;
    background: #4ecca3;
}

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

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-title {
    overflow: hidden;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.game-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(78, 204, 163, 0.2);
    color: #4ecca3;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.game-rating {
    color: #f8b400;
    margin-bottom: 15px;
}

.game-actions {
    display: flex;
    justify-content: space-between;
}

.game-actions a {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}