body {
    margin: 0;
    padding: 0;
}

.home-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(to right, #00f260, #0575e6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(5, 117, 230, 0.3);
}

.brand-tag {
    display: inline-block;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #fff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    vertical-align: middle;
    margin-left: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-top: 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    border-color: #0575e6;
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .overlay {
    opacity: 1;
}

.play-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #fff;
    padding: 10px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #e0e0e0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
