/* Jourix.click - Main CSS File */
/* Theme: Dark Fantasy with Gem & Diamond accents */

:root {
  /* Main Colors - completely different from previous sites */
  --primary-color: #FF3366;       /* Hot pink/red */
  --secondary-color: #330066;     /* Deep purple */
  --accent-color: #00FFCC;        /* Bright teal */
  --dark-color: #121212;          /* Nearly black */
  --light-color: #ffffff;         /* Pure white */
  --mid-color: #9966FF;           /* Medium purple */
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(135deg, var(--accent-color), var(--mid-color));
  
  /* Typography - new fonts */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Quicksand', sans-serif;
  
  /* Spacing */
  --section-padding: 6rem 0;
  --container-padding: 2rem;
}

/* Base Styles */
body {
  font-family: var(--body-font);
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-1);
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  border-radius: 2px;
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--mid-color);
}

/* Layout Elements */
.container-fluid {
  padding: 0 5%;
}

section {
  padding: 5rem 0;
  position: relative;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* Nav Styles - completely different layout */
.navbar {
  padding: 1rem 0;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
}

.navbar-brand img {
  margin-right: 10px;
  height: 35px;
}

.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 0.5rem;
  position: relative;
}

.nav-link {
  color: var(--light-color) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0.75rem !important;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-link:hover:before, 
.nav-item.active .nav-link:before {
  width: 80%;
  opacity: 1;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-color) !important;
}

/* Hero Section - completely redesigned */
.hero {
  min-height: 100vh;
  padding-top: 6rem;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(153, 102, 255, 0.2) 0%, rgba(18, 18, 18, 0) 70%);
  pointer-events: none;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.3"/></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--light-color);
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4rem;
  text-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
  color: var(--light-color);
  background: none;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  position: relative;
  z-index: 5;
}

.hero-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gradient-1);
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.decoration-1 {
  top: -100px;
  right: -100px;
}

.decoration-2 {
  bottom: -150px;
  left: -100px;
  background: var(--gradient-2);
}

/* Buttons - completely different style */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-jourix {
  color: var(--light-color);
  border: none;
}

.btn-jourix:after {
  background: var(--gradient-1);
}

.btn-jourix:before {
  background: var(--gradient-2);
}

.btn-jourix:hover {
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-outline-jourix {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
}

.btn-outline-jourix:hover {
  color: var(--light-color);
  background-color: var(--primary-color);
}

.btn-decline {
  background-color: #FF3333;
  color: var(--light-color);
  border: none;
  margin-left: 15px;
}

.btn-decline:hover {
  background-color: #CC0000;
  color: var(--light-color);
}

/* Feature Cards - new design */
.feature-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.feature-section:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--gradient-1);
  border-radius: 50%;
  opacity: 0.05;
}

.feature-card {
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0;
  margin-bottom: 30px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  z-index: 2;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  color: var(--light-color);
  font-size: 28px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon:before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.feature-content {
  padding: 2rem;
}

/* Games Section - new layout */
.games-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  color: var(--light-color);
}

.games-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(51, 0, 102, 0.7) 0%, rgba(18, 18, 18, 0.9) 100%);
  pointer-events: none;
}

.games-section .container {
  position: relative;
  z-index: 1;
}

.games-section h2 {
  color: var(--light-color);
}

.games-section h2:after {
  background: var(--gradient-2);
}

.game-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

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

.game-card:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.game-iframe-container {
  position: relative;
  padding-bottom: 56.25%;  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-iframe-container.loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary-color);
  animation: spin 1s infinite linear;
  z-index: 2;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.game-card .card-body {
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card .card-title {
  color: var(--light-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.game-card .card-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* About Section - new design */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background-color: #fafafa;
}

.about-section:before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--gradient-2);
  border-radius: 50%;
  opacity: 0.05;
}

.about-content h2:after {
  background: var(--gradient-2);
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.about-image:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 3px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-svg {
  filter: drop-shadow(0 10px 15px rgba(255, 51, 102, 0.3));
}

.about-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient-1);
  color: #ffffff;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.badge-item span {
  font-weight: 600;
  font-family: var(--heading-font);
}

/* Contact Section - new style */
.contact-section {
  background-color: #f9f9f9;
  position: relative;
}

.contact-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
  pointer-events: none;
}

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.2);
  border-color: var(--primary-color);
}

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

.contact-form label {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-icon {
  background: var(--gradient-1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Footer - completely redesigned */
.footer {
  background-color: #100a1c;
  color: var(--light-color);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.footer:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><circle cx="100" cy="100" r="1" fill="%23FFFFFF" opacity="0.1"/></svg>') repeat;
  pointer-events: none;
  opacity: 0.5;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1;
  margin-bottom: 2rem;
  min-width: 250px;
  padding: 0 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo img {
  margin-right: 10px;
  height: 30px;
}

.footer h4 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-1);
}

.footer p {
  margin-bottom: 1rem;
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-color);
  opacity: 0.7;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  opacity: 1;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gradient-1);
  transform: translateY(-5px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Age Verification Popup - new design */
.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.age-verification-content {
  background-color: var(--dark-color);
  color: var(--light-color);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-verification-content:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.age-verification-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 2rem;
  position: relative;
}

.age-verification-icon:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.age-verification h3 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.age-verification p {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.age-verification .btn {
  margin: 0 0.5rem;
  min-width: 120px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.animate {
  opacity: 0;
  animation-fill-mode: both;
}

.animate.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Media Queries - responsive design */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .navbar-collapse {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .navbar-nav {
    padding: 1rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding-top: 5rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info {
    margin-top: 3rem;
  }
  
  .footer-column {
    flex: 100%;
  }
  
  .age-verification-content {
    padding: 2rem;
    max-width: 90%;
  }
  
  .btn-jourix, .btn-decline {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .age-verification-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .age-verification h3 {
    font-size: 1.5rem;
  }
}

/* Index Page Game Containers */
.index-game {
  height: 400px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
}

.game-card .card-title {
  font-size: 1.8rem;
  margin: 0;
  background: var(--gradient-1);
  color: var(--light-color);
}

.game-controls {
  gap: 10px;
}

.fullscreen-btn {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.fullscreen-btn:hover {
  background: var(--gradient-1);
  color: var(--light-color);
  border-color: transparent;
}