* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0f0f0f;
    color: #ffffff;
}

/* Container */
.container {
    width: 85%;
    margin: auto;
}

/* Header */
.header-flex {
    display: flex;
    justify-content: space-between; /* logo left, menu right */
    align-items: center;
}

/* Nav right side */
nav {
    margin-left: auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

nav a:hover {
    color: #00ffcc;
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Circle Logo */
.logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.6);
}
.logo {
    color: #00ffcc;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    color: #00ffcc;
}

/* Hero */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero button {
    padding: 12px 30px;
    background: #00ffcc;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.hero button:hover {
    background: #00ccaa;
}

/* About Section */
.about {
    padding: 70px 0;
}

/* Flex layout */
.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left image */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 16px;
}

/* Right content */
.about-content {
    flex: 1;
}

.about-content h2 {
    color: #00ffcc;
    margin-bottom: 15px;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #ddd;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* Games Section */
.games {
    padding: 60px 0;
    text-align: center;
}

.games h2 {
    color: #00ffcc;
    margin-bottom: 30px;
}

/* Main container */
.games-main {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap; /* mobile ke liye */
}

/* Small containers */
.game-box {
    width: 260px;
    background: #151515;
    border-radius: 14px;
    overflow: hidden;
    padding-bottom: 15px;
    transition: 0.3s ease;
}

.game-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(0,255,204,0.4);
}

/* Image */
.game-box img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* Heading */
.game-box h3 {
    margin: 12px 0 5px;
    color: #00ffcc;
}

/* Text */
.game-box p {
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.5;
    color: #ddd;
}
.privacy {
    padding: 60px 0;
    text-align: center;
}
.privacy h2 {
color: #00ffcc;
    margin-bottom: 15px;
}


/* Footer */
footer {
    background: #111;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #222;
}
