@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #00f2ff;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    text-transform: uppercase;
    text-shadow: 0 0 5px var(--accent-color);
}

header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    container-type: inline-size;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--secondary-color);
}

#home {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg {
  animation:slide 9s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, rgb(63, 63, 63) 50%, rgb(119, 119, 119) 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:11s;
}

.bg3 {
  animation-duration:19s;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

.hero-content {
    border-radius:.5em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing: border-box;
    padding:7vmin;
    text-align:center;  
    background-color: #2c2c2c;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.game-card {
    background-color: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.store-links a {
    margin-right: 10px;
}

.store-links img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.store-links img:hover {
    opacity: 0.8;
}

.news-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.news-item h3 {
    margin-top: 0;
}

.news-item .date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.contact-form button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00c4d1;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #111;
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
}

.social-links img {
    height: 30px;
    width: 30px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}