/* =========================
   SKSR GAMING STUDIO™
   MAIN STYLE SYSTEM
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    background: #000;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;

    z-index: -1;
    pointer-events: none;

    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("../images/Background/background.webp") center/cover no-repeat;

    transform: translate3d(0,0,0);
}

/* =========================
        NAVIGATION
========================= */

nav {
    width: 100%;
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

nav h2 {
    color: #00eaff;
    letter-spacing: 2px;
    font-size: 24px;
    text-shadow: 0 0 15px #00eaff;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.brand img {
    width: 70px;
    height: auto;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00eaff;
}

/* =========================
        HERO
========================= */

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-small {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 70px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 25px #00eaff;
}

.hero-small h1 {
    font-size: 40px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 25px #00eaff;
}

.hero p,
.hero-small p {
    margin: 30px auto;
    font-size: 22px;
    color: #ccc;
}

/* =========================
        GAME TRAILER
========================= */

.game-trailer {
    margin-top: 20px;
}

.game-trailer iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
}

/* =========================
        BUTTONS
========================= */

.button {
    display: inline-block;
    padding: 15px 40px;
    background: #00eaff;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
}

.button:hover {
    background: white;
    transform: scale(1.08);
}

/* =========================
        SECTIONS
========================= */

section {
    padding: 90px 10%;
}

section h2 {
    font-size: 42px;
    color: #00eaff;
    margin-bottom: 35px;
    text-shadow: 0 0 10px #00eaff55;
}

/* =========================
        CARDS
========================= */

.featured-card,
.game-card,
.about-card,
.contact-card {

    background: linear-gradient(145deg, #111, #080808);

    border: 1px solid #222;

    border-radius: 20px;

    padding: 35px;

    transition: 0.3s ease;
}


/* =========================
        CARD INTERACTION
========================= */

.featured-card:hover,
.game-card:hover,
.about-card:hover,
.contact-card:hover,
.featured-card:active,
.game-card:active,
.about-card:active,
.contact-card:active {

    transform: translateY(-10px);

    border-color: #00eaff;

    box-shadow:
        0 0 25px rgba(0, 234, 255, 0.35),
        0 0 60px rgba(0, 234, 255, 0.15);
}


/* =========================
        FEATURES
========================= */

.features {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.features span {
    background: #111;
    padding: 10px 18px;
    border-radius: 20px;
    color: #00eaff;
}

/* =========================
        PAGE HEADER
========================= */

.page-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), #050505);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-header h1 {
    font-size: 65px;
    text-shadow: 0 0 25px #00eaff;
}

/* =========================
        GAMES PAGE
========================= */

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.game-image img {
    width: 100%;
    border-radius: 20px;
}

.game-info p {
    color: #bbb;
}

.game-info ul {
    list-style: none;
    margin: 25px 0;
}

.game-info li {
    margin: 10px 0;
}

.game-info button {
    padding: 15px 35px;
    background: #00eaff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.game-info button:hover {
    background: white;
    transform: scale(1.05);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card a {
    color: #00eaff;
    text-decoration: none;
}

/* =========================
        ABOUT
========================= */

.about-section {
    display: grid;
    gap: 30px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    margin: 12px 0;
}

/* =========================
        CONTACT
========================= */

.contact-section {
    display: grid;
    gap: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-links a {
    color: #00eaff;
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    background: #111;
    border: 1px solid #333;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: vertical;
}

form button {
    padding: 15px;
    background: #00eaff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: white;
    transform: scale(1.03);
}

/* =========================
        FOOTER
========================= */

footer {
    background: #000;
    padding: 30px;
    text-align: center;
    color: #777;
}

/* =========================
        MOBILE
========================= */

@media (max-width: 850px) {
    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links a {
        margin: 10px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .game-showcase {
        grid-template-columns: 1fr;
    }

    section {
        padding: 70px 6%;
    }
}

/* =========================
   TAP HIGHLIGHT + FOCUS
========================= */

/* Remove blue tap highlight on mobile */
html,
body,
a,
button,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

/* Only disable text selection on buttons/links (not the whole page) */
button,
.button,
.nav-links a,
.game-card a,
.contact-links a {
    -webkit-user-select: none;
    user-select: none;
}

/* Keep nice focus style for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #00eaff;
    outline-offset: 3px;
}