/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    position: relative;
    z-index: 1000;
}

/* Default (Desktop) Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
        width: 200px;
        padding: 10px;
        z-index: 1001;
    }

    .menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    height: 400px;
    background: url('Images/Headers/Homepage.png') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero h1 {
    font-size: 36px;
    margin: 0;
}

.hero h4 {
    font-size: 20px;
    margin: 10px 0;
}

.hero .button {
    padding: 10px 20px;
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    border: none;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

/* Welcome Section */
.roblox-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    background: white;
}

.roblox-text {
    flex: 1;
    padding-left: 1%;
}

.roblox-image img {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Top Games Section */
.top-games-section {
    background: black;
    padding: 20px;
}

.top-games-title {
    color: white;
    text-align: left;
    font-size: 24px;
    padding-left: 4%;
    margin: 0%;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
    background: black;
}

.game-item {
    padding: 20px;
    border-radius: 10px;
}

.game-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.game-item p {
    color: white;
    text-align: center;
    font-size: 17px;
}

/* See More Button */
.see-more-container {
    display: flex;
    justify-content: flex-end;
    padding: 0px;
}

.see-more-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    border: none;
    color: black;
    cursor: pointer;
    border-radius: 5px;
}

/* Footer */
footer {
    background: linear-gradient(to right, rgb(255, 243, 192), rgb(255, 162, 225));
    text-align: center;
    padding: 10px;
}



