* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #050505;
    border-bottom: 1px solid #1f1f1f;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #e10600;
}

.logo span {
    color: #ffffff;
    margin-left: 6px;
}

.navbar nav a {
    color: #b3b3b3;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #e10600;
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #e10600;
}

.hero p {
    max-width: 600px;
    color: #b3b3b3;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary {
    background: #e10600;
    color: #ffffff;
}

.primary:hover {
    background: #ff1a1a;
}

.secondary {
    border: 1px solid #e10600;
    color: #e10600;
}

.secondary:hover {
    background: #e10600;
    color: #ffffff;
}

/* FEATURED */
.featured {
    padding: 80px 20px;
    text-align: center;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.game-card {
    max-width: 500px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.game-card p {
    color: #b3b3b3;
    margin-bottom: 15px;
}

.status {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(225, 6, 0, 0.15);
    color: #e10600;
    border-radius: 20px;
    font-size: 12px;
}

/* FOOTER */
footer {
    padding: 30px;
    text-align: center;
    background: #050505;
    border-top: 1px solid #1f1f1f;
}

footer p {
    color: #777;
    font-size: 14px;
}

footer a {
    color: #e10600;
    text-decoration: none;
}

/* PAGE HEADER */
.page-header {
    padding: 80px 20px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-header p {
    color: #b3b3b3;
}

/* GAMES SECTION */
.games {
    padding: 60px 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.game-card {
    background: #111;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #1f1f1f;
    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: #e10600;
}

.game-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.game-card p {
    color: #b3b3b3;
    margin-bottom: 18px;
}

.coming-soon {
    opacity: 0.7;
}

/* SUPPORT PAGE */
.support {
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
}

.support-form {
    width: 100%;
    max-width: 500px;
    background: #111;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #1f1f1f;
}

.support-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #b3b3b3;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
    background: #0b0b0b;
    color: #ffffff;
    outline: none;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: #e10600;
}

.support-form button {
    width: 100%;
    cursor: pointer;
}

/* =========================
   PRIVACY POLICY PAGE
========================= */

.policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    line-height: 1.8;
}

.policy h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-align: center;
}

.policy .updated {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
}

.policy h2 {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 15px;
    color: #e10600;
}

.policy h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
}

.policy p {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 15px;
}

.policy ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy ul li {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 15px;
}

.policy strong {
    color: #ffffff;
}

.policy a {
    color: #e10600;
    text-decoration: none;
}

.policy a:hover {
    text-decoration: underline;
}

/* Divider */
.policy hr {
    border: none;
    border-top: 1px solid #1f1f1f;
    margin: 50px 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .policy h1 {
        font-size: 32px;
    }

    .policy h2 {
        font-size: 22px;
    }
}

/* CLOSED BETA */
.beta {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(225, 6, 0, 0.15);
    color: #e10600;
    border: 1px solid #e10600;
}

.beta-form {
    margin-top: 20px;
}

.beta-form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1f1f1f;
    background: #0b0b0b;
    color: #fff;
    margin-bottom: 12px;
}

.beta-form input:focus {
    border-color: #e10600;
    outline: none;
}

.beta-form button {
    width: 100%;
    cursor: pointer;
}

.beta-status {
    margin-top: 10px;
    font-size: 13px;
    color: #b3b3b3;
}

.game-link {
    text-decoration: none;
    color: inherit;
}

/* GAME SCREENSHOTS */
.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}

.screenshots img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets & small laptops */
@media (max-width: 1024px) {

    .navbar {
        padding: 15px 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .featured,
    .games,
    .policy {
        padding: 60px 20px;
    }
}

/* Phones & small tablets */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .navbar nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .navbar nav a {
        margin: 0;
        font-size: 14px;
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* GAME CARDS */
    .game-card {
        padding: 25px;
    }

    /* SCREENSHOTS */
    .screenshots {
        grid-template-columns: 1fr;
    }

    /* FORMS */
    .support-form,
    .beta-form {
        padding: 25px;
    }

    .support-form input,
    .support-form textarea,
    .support-form select,
    .beta-form input {
        font-size: 14px;
    }

    /* POLICY / ABOUT TEXT */
    .policy h1 {
        font-size: 30px;
    }

    .policy h2 {
        font-size: 22px;
    }

    .policy p,
    .policy li {
        font-size: 14px;
    }

    footer {
        padding: 25px 15px;
        font-size: 13px;
    }
}

/* Very small phones */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 26px;
    }

    .logo {
        font-size: 18px;
    }

    .navbar nav {
        gap: 10px;
    }

    .status,
    .beta {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.beta-full {
    margin-top: 25px;
    padding: 25px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #e10600;
    border-radius: 10px;
    color: #cccccc;
    font-size: 14px;
}

.beta-full strong {
    color: #ffffff;
}

/* TESTING ENDED MESSAGE */

.testing-ended {
    margin-top: 25px;
    padding: 25px;
    background: #0f0f0f;
    border-left: 4px solid #e10600;
    border-radius: 10px;
    color: #cccccc;
}

/* TESTERS LIST */

.testers {
    margin: 25px 0;
}

.testers ul {
    list-style: none;
    padding: 0;
}

.testers li {
    padding: 10px 0;
    border-bottom: 1px solid #1f1f1f;
    color: #ffffff;
}

/* PRE REGISTRATION */

.pre-registration {
    margin-top: 30px;
    padding: 25px;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
}

.pre-registration p {
    margin-bottom: 15px;
}

/* TESTER CREDITS GRID */

.testers ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.testers li {
    padding: 12px;
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.playstore-badge img{
width:220px;
margin-top:15px;
transition:transform .25s ease;
}

.playstore-badge img:hover{
transform:scale(1.05);
}

.game-card{
display:block;
background:#111;
padding:30px;
border-radius:12px;
border:1px solid #1f1f1f;
text-decoration:none;
color:white;
transition:0.25s;
}

.game-card:hover{
transform:translateY(-6px);
border-color:#e10600;
cursor:pointer;
}

