* {
  box-sizing: inherit;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Oxygen', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

main {
  flex: 1;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
  max-width: 100vw;
}

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

img, canvas, iframe, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
}

/* Header Styles */
.cojyga-header-l-r-r {
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cojyga-logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: 700;
  color: #55efc4;
}

.cojyga-logo span {
  color: #ffffff;
  margin-left: 8px;
}

.cojyga-desktop-nav ul {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cojyga-desktop-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cojyga-desktop-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #55efc4;
  transition: width 0.3s ease;
}

.cojyga-desktop-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #55efc4;
}

.cojyga-desktop-nav a:hover::before {
  width: 100%;
}

.cojyga-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cojyga-age-flag {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.cojyga-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #ffffff;
  cursor: pointer;
}

/* Mobile Menu */
.cojyga-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cojyga-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.cojyga-mobile-menu li {
  margin-bottom: 20px;
}

.cojyga-mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.8em;
  font-weight: 700;
  transition: color 0.3s ease;
  padding: 10px 0;
  display: block;
}

.cojyga-mobile-menu a:hover {
  color: #55efc4;
}

.cojyga-close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5em;
  color: #ffffff;
  cursor: pointer;
  padding: 5px;
}

/* Footer Styles */
.cojyga-footer {
  padding: 50px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cojyga-footer h3 {
  margin-bottom: 20px;
  opacity: 0.8;
  font-size: 2em;
  color: #55efc4;
}

.cojyga-footer ul {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(150,150,150,0.2);
  padding-bottom: 20px;
}

.cojyga-footer li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.85;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.cojyga-footer li a:hover {
  color: #55efc4;
  opacity: 1;
}

.cojyga-footer-contact span {
  color: #ffffff;
  font-size: 1.1em;
  opacity: 0.9;
}

.cojyga-footer-contact a {
  color: #55efc4;
  text-decoration: none;
}

.cojyga-footer-contact a:hover {
  text-decoration: underline;
}

.cojyga-footer p {
  margin: 0;
  opacity: 0.9;
  font-size: 1em;
}

.cojyga-footer p a {
  color: #55efc4;
  text-decoration: underline;
}

.cojyga-footer p a:hover {
  text-decoration: none;
}

.cojyga-footer h4 {
  margin: 0 0 8px 0;
  color: #ffcc00;
  font-size: 1.2em;
}

.cojyga-footer-contact {
  margin-top: 20px;
  font-size: 0.85em;
  text-align: center;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cojyga-copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 0.85em;
  opacity: 0.8;
}

.cojyga-copyright a {
  color: inherit;
  text-decoration: underline;
}

/* Hero Section */
.cojyga-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 140px 20px 100px 20px;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.cojyga-hero-text h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #55efc4;
  text-shadow: 0 0 15px rgba(85, 239, 196, 0.5);
}

.cojyga-hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.cojyga-btn {
  background-color: #55efc4;
  color: #0a0a0a;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cojyga-btn:hover {
  background-color: #41e0b0;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(85, 239, 196, 0.4);
}

.cojyga-hero-image-container {
  flex: 1.2;
  max-width: 700px;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.cojyga-hero-image-container img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid #55efc4;
}

/* Content Section */
.cojyga-content-section {
  padding: 10px 20px;
  line-height: 1.8;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cojyga-content-section h2 {
  font-size: 2.8em;
  margin-bottom: 30px;
  text-align: center;
  color: #55efc4;
}

.cojyga-content-section p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.cojyga-content-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}

.cojyga-content-section li {
  margin-bottom: 10px;
}

/* Games Grid */
.cojyga-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.cojyga-game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(92, 115, 231, 0.2); /* Accent color border */
}

.cojyga-game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.cojyga-game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #55efc4;
}

.cojyga-game-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #55efc4;
}

.cojyga-game-card p {
  font-size: 0.95em;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cojyga-desktop-nav {
    display: none;
  }

  .cojyga-hamburger {
    display: block;
  }

  .cojyga-hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px 20px;
  }

  .cojyga-hero-text h1 {
    font-size: 2.8em;
  }

  .cojyga-hero-text p {
    font-size: 1.1em;
  }

  .cojyga-hero-image-container {
    order: -1;
    max-width: 500px;
    margin-bottom: 30px;
  }

  .cojyga-footer ul {
    flex-direction: column;
    gap: 15px;
  }

  .cojyga-game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .cojyga-content-section {
    padding: 60px 20px;
  }

  .cojyga-content-section h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .cojyga-logo {
    font-size: 1.2em;
  }

  .cojyga-age-flag {
    font-size: 0.8em;
    padding: 5px 10px;
  }

  .cojyga-hero-text h1 {
    font-size: 2.2em;
  }

  .cojyga-hero-text p {
    font-size: 1em;
  }

  .cojyga-btn {
    padding: 12px 28px;
    font-size: 1em;
  }

  .cojyga-mobile-menu a {
    font-size: 1.5em;
  }
}