@charset "UTF-8";
@font-face {
  font-family: "Arimo";
  font-display: swap;
  src: url(../fonts/Arimo.woff2) format("woff2"), url(../fonts/Arimo.woff) format("woff");
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Arimo";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  font-family: "Arimo";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  flex: 1 1 auto;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

a {
  transition: color 0.3s ease 0s;
}

:root {
  --bg-dark: #0D1117;
  --bg-medium: #161B22;
  --border-color: #30363D;
  --text-primary: #C9D1D9;
  --text-secondary: #8B949E;
  --accent-color: #FFA500;
  --accent-hover: #FFC107;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.featured-game {
  position: relative;
  height: 60vh;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  background-image: url("../img/main/valorant.webp");
  background-size: cover;
  background-position: center;
}


.featured-game::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0.7) 40%, rgba(13, 17, 23, 0.1) 100%);
  z-index: 1;
}

.featured-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.featured-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.featured-content p {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, var(--accent-hover), var(--accent-color));
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
}


.other-games {
  margin-top: 4rem;
}

.other-games h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.game-list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem; 
}


.game-list::-webkit-scrollbar {
  height: 8px;
}

.game-list::-webkit-scrollbar-track {
  background: var(--bg-medium);
  border-radius: 4px;
}

.game-list::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.game-list::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

.game-item {
  flex: 0 0 250px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.game-item:hover {
  transform: translateY(-5px);
}

.game-item img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.game-item:hover img {
  border-color: var(--accent-color);
}

.game-item span {
  font-size: 1.1rem;
  font-weight: 600;
}


footer {
  text-align: center;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.logo-footer {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .page-wrapper {
    padding: 1rem;
  }
  .featured-game {
    padding: 1.5rem;
    height: auto;
    min-height: 350px;
  }
  .featured-content {
    max-width: 100%;
    text-align: center;
  }
  .featured-game::before {
    background: rgba(13, 17, 23, 0.8);
  }
  .featured-content h1 {
    font-size: 2.5rem;
  }
  .featured-content p {
    font-size: 1rem;
  }
  .game-item {
    flex-basis: 200px;
  }
}
/*# sourceMappingURL=style.css.map */