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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #000000; 
    color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1a1a;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-right a {
    margin: 0 15px;
}

.navbar-right img {
    width: 30px;
    height: 30px;
    filter: invert(1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.navbar-right img:hover {
    transform: scale(1.1);
}

.content {
    margin-top: 100px;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.search-bar {
    padding: 8px 15px;
    width: 300px; 
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.search-bar:hover {
    width: 320px; 
    background-color: #444444; 
}

p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-top: 15px;
}

button {
    background-color: #333333;
    color: #ffffff;
    border: 2px solid #555555;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #007BFF;
    border-color: #0056b3;
    color: #ffffff;
    transform: scale(1.05);
}

sigma {
    background-color: #333333;
    color: #ffffff;
    border: 2px solid #555555;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

sigma:hover {
    background-color: #7289DA;
    border-color: #4b5fa6;
    color: #ffffff;
    transform: scale(1.05);
}


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

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.game-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game {
    position: relative;
    background-color: #222;
    border-radius: 12px; 
    padding: 15px;
    width: 250px; 
    height: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.5);
    background-color: #333;
    overflow: hidden;
}

.game:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.7);
}

.game-thumbnail {
    width: 100%;
    height: 180px; 
    object-fit: cover; 
    border-radius: 12px; 
    margin-bottom: 15px;
}

.game h3 {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 10px;
    font-weight: 600; 
}

.app {
    position: relative;
    background-color: #222;
    border-radius: 12px; 
    padding: 15px;
    width: 250px; 
    height: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.5);
    background-color: #333;
    overflow: hidden;
}

.app:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.7);
}

.apps-thumbnail {
    width: 100%; 
    height: 70%; 
    object-fit: cover;
    border-radius: 12px; 
    margin-bottom: 15px;
}

.app h3 {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 10px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.button a {
    text-decoration: none;
}

.button-link button {
    background-color: #28a745;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-link button:hover {
    background-color: #218838;
    transform: scale(1.05);
}
