/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* BODY */
body {
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    border-bottom: 1px solid #222;

    /* Sticky */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* NAVIGATION (DESKTOP) */
.nav {
    display: flex;
}

.nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #00eaff;
}

/* MOBILE MENU ICON (HIDDEN BY DEFAULT) */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ================= HERO ================= */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, #111, #000);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 750px;
    margin: auto;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.primary {
    background: #00eaff;
    color: #000;
}

.secondary {
    background: #fff;
    color: #000;
}

.outline {
    border: 1px solid #fff;
    color: #fff;
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 12%;
}

.section.dark {
    background: #050505;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p {
    max-width: 900px;
}

/* ================= LISTS ================= */
.benefits,
.experience {
    list-style: none;
}

.benefits li,
.experience li {
    padding: 8px 0;
}

/* ================= GAMES GRID ================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.games-grid span {
    background: #111;
    padding: 15px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.games-grid span:hover {
    box-shadow: 0 0 15px rgba(0,234,255,0.6);
    transform: translateY(-5px);
}

/* ================= MOTTO ================= */
.motto {
    margin-top: 20px;
    font-style: italic;
    color: #00eaff;
}

/* ================= FORMS ================= */
.franchise-form {
    max-width: 500px;
    margin-top: 30px;
}

.franchise-form input,
.franchise-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
}

.franchise-form input::placeholder {
    color: #777;
}

.franchise-form select {
    color: #aaa;
}

.franchise-form button {
    width: 100%;
}

/* ================= FOOTER ================= */
.footer {
    text-align: center;
    padding: 30px;
    background: #000;
    border-top: 1px solid #222;
}

/* ================= ANIMATIONS ================= */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    /* HERO TEXT */
    .hero-content h1 {
        font-size: 34px;
    }

    .section {
        padding: 60px 8%;
    }

    /* SHOW MENU ICON */
    .menu-icon {
        display: block;
    }

    /* HIDE DESKTOP NAV */
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #000;
        display: none;
        flex-direction: column;
        text-align: center;
        border-top: 1px solid #222;
    }

    .nav a {
        padding: 15px;
        margin: 0;
        border-bottom: 1px solid #222;
    }

    .nav.show {
        display: flex;
    }
}

/* FORCE DESKTOP RULE (SAFETY) */
@media (min-width: 769px) {
    .menu-icon {
        display: none !important;
    }
}
