/* Base Styles & Variables */
:root {
  --color-charcoal: #1a1a1a;
  --color-dark-charcoal: #121212;
  --color-light-charcoal: #2a2a2a;
  --color-rusty-brown: #8b4513;
  --color-rust: #a45a2a;
  --color-dull-metal: #71797E;
  --color-steel: #43464B;
  --color-brushed-metal: #9da3a4;
  --color-accent: #ff5722;
  --color-accent-dark: #d84315;
  --color-warning: #f39c12;
  --color-text: #e6e6e6;
  --color-text-dark: #a0a0a0;
  
  --shadow-dark: 0 4px 8px rgba(0, 0, 0, 0.5);
  --shadow-inset: inset 0 2px 5px rgba(0, 0, 0, 0.5);
  
  --transition-speed: 0.3s;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
  
  --spacing-unit: 8px;
}

/* Global Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', 'Roboto Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-charcoal);
  background-image: 
    linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)),
    url('https://images.pexels.com/photos/2341290/pexels-photo-2341290.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Teko', 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-speed) var(--transition-timing);
}

button {
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
#app {
  width: 100%;
  min-height: 100vh;
}

section {
  padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 2);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  color: var(--color-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-unit);
}

.divider {
  position: relative;
  width: 100px;
  height: 3px;
  margin: 0 auto;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before, .divider::after {
  content: '';
  position: absolute;
  height: 1px;
  background-color: var(--color-accent);
  width: 50px;
}

.divider::before {
  left: -60px;
}

.divider::after {
  right: -60px;
}

.gear-icon {
  display: block;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  position: relative;
}

.gear-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--color-dark-charcoal);
  border-radius: 50%;
}

.gear-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  transform: translateX(-50%);
  background-color: var(--color-dark-charcoal);
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
  z-index: 1000;
  background: rgba(18, 18, 18, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--color-accent);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--color-text);
  position: relative;
  padding: 5px 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text span {
  color: var(--color-accent);
}

.logo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-dull-metal);
  border-radius: 4px;
  opacity: 0.5;
  pointer-events: none;
}

.nav-menu {
  position: relative;
}

.menu-toggle {
  display: none;
}

.menu {
  display: flex;
  list-style: none;
}

.menu-item {
  position: relative;
  display: block;
  margin: 0 calc(var(--spacing-unit) * 2);
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--color-dark-charcoal);
  border: 1px solid var(--color-dull-metal);
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-item:hover {
  background-color: var(--color-light-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-item:hover::before {
  opacity: 1;
}

/* Banner Section */
.banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)),
    url('/public/assets/banner1.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/1893624/pexels-photo-1893624.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: 200px;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

.gear-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 87, 34, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(113, 121, 126, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.banner-content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  padding: 0 calc(var(--spacing-unit) * 2);
}

.banner-title {
  font-size: 4rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
}

.banner-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--color-accent);
}

.banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-dark);
}

.cta-button {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
  background-color: var(--color-accent);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  margin-left: calc(var(--spacing-unit) * 1);
}

/* Features Section */
.features {
  background-color: var(--color-dark-charcoal);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url('https://images.pexels.com/photos/2341290/pexels-photo-2341290.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}

.blueprint-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.feature {
  background-color: rgba(26, 26, 26, 0.7);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
  border: 1px solid var(--color-dull-metal);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: calc(var(--spacing-unit) * 2);
  position: relative;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 87, 34, 0.3);
}

.feature-icon i {
  animation: pulse 2s infinite;
}

.feature-title {
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-size: 1.3rem;
}

.feature-text {
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* About Section */
.about {
  background-color: var(--color-charcoal);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/public/assets/aboutg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  filter: grayscale(100%);
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: calc(var(--spacing-unit) * 5);
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.image-frame {
  position: relative;
  height: 400px;
  background-image: url('/public/assets/aboutg.jpg');
  background-size: cover;
  background-position: center;
  border: 8px solid var(--color-dark-charcoal);
  box-shadow: var(--shadow-dark);
  border-radius: 4px;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-subtitle {
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--color-accent);
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1.7;
  color: var(--color-text);
}

/* Games Section */
.games {
  background-color: var(--color-dark-charcoal);
  position: relative;
  padding-bottom: calc(var(--spacing-unit) * 15);
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/public/assets/games.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  filter: grayscale(100%);
  pointer-events: none;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  max-width: 1200px;
  margin: 0 auto;
}

.game-card {
  /* height: 380px; */
  position: relative;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
}

.game-frame {
  position: relative;
  border: 4px solid var(--color-steel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  height: 320px;
}

.game-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: calc(var(--spacing-unit) * 2);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-title {
  font-size: 1.2rem;
  color: white;
  margin-bottom: calc(var(--spacing-unit) * 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.play-button {
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
  background-color: var(--color-accent);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.5);
  position: relative;
  overflow: hidden;
}

.play-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.play-button:hover {
  background-color: var(--color-accent-dark);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.6);
}

.play-button:hover::before {
  left: 100%;
}

/* Contact Section */
.contact {
  background-color: var(--color-charcoal);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
    url('https://images.pexels.com/photos/1619317/pexels-photo-1619317.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.contact-form {
  background-color: rgba(18, 18, 18, 0.8);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--color-dull-metal);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 87, 34, 0.03) 0%, transparent 70%),
    radial-gradient(circle at 90% 80%, rgba(113, 121, 126, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.form-group {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-group label {
  display: block;
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.5);
  background-color: var(--color-dark-charcoal);
  border: 1px solid var(--color-steel);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  box-shadow: var(--shadow-inset);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background-color: var(--color-accent);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.submit-button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.submit-button:hover::before {
  left: 100%;
}

/* Disclaimer Section */
.disclaimer {
  background-color: var(--color-charcoal);
  padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
  border-top: 1px solid var(--color-dull-metal);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: calc(var(--spacing-unit) * 3);
  border-radius: 6px;
  border: 2px solid var(--color-warning);
  position: relative;
}

.disclaimer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, var(--color-warning) 49%, var(--color-warning) 51%, transparent 52%) 0 0/20px 20px,
    linear-gradient(-45deg, transparent 48%, var(--color-warning) 49%, var(--color-warning) 51%, transparent 52%) 0 0/20px 20px;
  opacity: 0.1;
  pointer-events: none;
  border-radius: 4px;
}

.disclaimer-content h3 {
  color: var(--color-warning);
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-size: 1.3rem;
  display: inline-block;
}

.disclaimer-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: var(--color-dark-charcoal);
  padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
  border-top: 2px solid var(--color-dull-metal);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-dull-metal) 20%, 
    var(--color-accent) 50%, 
    var(--color-dull-metal) 80%, 
    transparent 100%
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: calc(var(--spacing-unit) * 2);
}

.copyright p {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  letter-spacing: 1px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: calc(var(--spacing-unit) * 1);
  border-radius: 4px;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--color-text);
}

.footer-link:hover::before {
  width: 100%;
}

.divider-vertical {
  margin: 0 calc(var(--spacing-unit) * 1.5);
  color: var(--color-text-dark);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    top: 8px;
  }

  .menu-toggle.active .hamburger {
    background-color: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background-color: var(--color-dark-charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--color-dull-metal);
  }

  .menu.active {
    right: 0;
  }

  .menu li {
    width: 100%;
    margin: calc(var(--spacing-unit) * 1) 0;
  }

  .menu-item {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .feature {
    margin-bottom: calc(var(--spacing-unit) * 3);
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .image-frame {
    height: 300px;
    margin-bottom: calc(var(--spacing-unit) * 3);
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: calc(var(--spacing-unit) * 2);
  }
}