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

/* BASE */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0f;
    color: #e5e7eb;
    cursor: none;
    overflow-x: hidden;
}

/* SMOOTH CORE */
#smooth-wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
}

/* CURSOR */
.cursor {
    width: 8px;
    height: 8px;
    background: rgb(155, 9, 9);
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

.cursor-outline {
    width: 32px;
    height: 32px;
    border: 2px solid rgb(155, 9, 9);
    border-radius: 50%;
    position: fixed;
    z-index: 9998;
    pointer-events: none;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    z-index: 3000;
    overflow: hidden;
}

/* === BURASI ESAS HİSSƏ === */
/* ALT MAILI – 180° DÖNDƏRİLMİŞ */

nav a {
    color: #aaa;
    margin-left: 30px;
    text-decoration: none;
}

nav a:hover {
    color: rgb(155, 9, 9);
}

/* SECTIONS */
section {
    min-height: 100vh;
    padding: 140px 10%;
    background: #0b0b0f;
}

/* HERO */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55) contrast(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2), #0b0b0f 85%);
}
/* HERO LOGO FIX */
.hero-content .logo img {
    width: 620px;     /* istəsən 250px və ya 280px edə bilərsən */
    max-width: 100%;
    height: auto;
    display: block;
}


.hero-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    display: flex;
    align-items: center;
    gap: 24px;

}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    margin-top: 20px;
    color: #ccc;
}

/* GAMES */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: .3s;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(155, 9, 9 .4);
}

footer {
    text-align: center;
    padding: 40px;
    color: #555;
}

/* About */
.about .row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center
}

.about .image {
    flex: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .image img {
    width: 100%;
    max-width: 720px;   /* istəsən artır / azalt */
    height: auto;
    border-radius: 12px; /* optional */
    object-fit: cover;
}

.about .row .content {
    flex: 1 1 45rem
}

.about .row .content h3 {
    font-size: 2rem;
    color: #fff
}

.about .row .content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    padding: 1rem 0
}



/* Headings */
.heading {
    color: #fff;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #fff;
    padding-bottom: 1rem
}

.heading span {
    color: rgb(155, 9, 9)
}
.products {
    padding: 6rem 8%;
}

.games-showcase {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.game-card {
    position: relative;
    flex: 1;
    height: 480px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    background: #0a0a0a;
    box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

/* IMAGE */
.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

/* DARK OVERLAY */
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0)
    );
    z-index: 1;
}

/* CONTENT */
.game-content {
    position: absolute;
    bottom: 26px;
    left: 26px;
    z-index: 2;
}

.game-content h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 4px;
}

.game-content span {
    font-size: 0.9rem;
    color: #bbb;
}

/* HOVER EFFECT */
.game-card:hover .game-img {
    transform: scale(1.1);
    filter: brightness(1.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .games-showcase {
        flex-direction: column;
    }

    .game-card {
        height: 240px;
    }
}

/* HOVER EFFECT */
.game-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgb(155, 9, 9);
}

.game-card:hover .game-bg {
  transform: scale(1.1);
  filter: brightness(0.6);
}
/* Footer */
.footer {
    background: var(--black-color);
    text-align: center;
    padding: 3rem 7%;
}

.footer .search {
    display: flex;
    justify-content: center;
    gap: 1rem
}

.footer .search .search-input {
    width: 30rem
}

.footer .btn-primary {
    background: var(--main-color);
    padding: 1rem 2rem;
    color: #fff
}

.footer .share {
    padding: 2rem 0
}

.footer .share a {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    color: #fff;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50%;
    margin: 0.3rem;
    display: inline-block
}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem
}

.footer .links a {
    background: var(--main-color);
    padding: .7rem 2rem;
    color: #fff;
    font-size: 2rem;
    border: var(--border)
}

.footer .links a:hover {
    background: var(--black-color);
    opacity: .8
}

.footer .links a.active {
    background: var(--black-color)
}

.footer .credit {
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    padding-top: 1.5rem
}
/* CONTACT SECTION */
.contact-section {
  padding: 60px 10% 120px;
  background: linear-gradient(
    to bottom,
    #0b0b0f,
    #070709
  );
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: #aaa;
  max-width: 420px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 12px;
  color: #ddd;
}

/* MAP */
.contact-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}

/* HOVER EFFECT */
.contact-map:hover iframe {
  filter: grayscale(0) contrast(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 24px; /* yazıyla paralel */

    max-width: 240px;
    height: 70px;

    opacity: 0.45;
    scale: 1;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(6px);

    transition: all 0.4s ease;
}

/* IMAGE */
.hero-content .button img {
    width: 400px;
    height: auto;
}

/* HOVER — PARLASIN */
.hero-content .button:hover {
    opacity: 1;
    background: rgba(120, 160, 180, 0.6);
    box-shadow: 0 0 35px rgba(120, 180, 255, 0.8);
    transform: scale(1.05);
}
/* BUG REPORT */
.bug-report {
    padding: 120px 10%;
    background: #0b0b0f;
}

.bug-container {
    max-width: 600px;
    margin: auto;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

#bugForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#bugForm input,
#bugForm textarea {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
}

#bugForm textarea {
    resize: none;
    height: 120px;
}

#bugForm button {
    background: rgb(155, 9, 9);
    border: none;
    padding: 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

#bugForm button:hover {
    background: rgb(200, 20, 20);
    transform: translateY(-3px);
}

/* STARS */
.rating {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    cursor: pointer;
}

.rating span {
    color: #444;
    transition: .3s;
}

.rating span.active {
    color: gold;
}
