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

body {
  font-family: 'Inter', sans-serif;
  background: #1a1a1a;
  color: #e5e5e5;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 3px solid #dc2626;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-name {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #dc2626, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0.5rem;
}

.menu-bar {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #f97316);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.main-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.menu-item {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.menu-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #f97316);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu-item:hover::before,
.menu-item.active::before {
  width: 80%;
}

.menu-item:hover,
.menu-item.active {
  color: #f97316;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-menu {
    position: fixed;
    left: -100%;
    top: 78px;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.98);
    width: 100%;
    padding: 2rem 0;
    transition: left 0.3s ease;
    border-bottom: 3px solid #dc2626;
  }

  .main-menu.active {
    left: 0;
  }

  .menu-item {
    padding: 1rem 2rem;
    width: 100%;
  }
}

/* Age Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-modal.hidden {
  display: none;
}

.age-modal-inner {
  background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
  padding: 0;
  border-radius: 20px;
  max-width: 500px;
  overflow: hidden;
  border: 3px solid #dc2626;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

.age-modal-header {
  background: linear-gradient(135deg, #dc2626, #f97316);
  padding: 2rem;
  text-align: center;
}

.age-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.age-modal-header h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: 900;
}

.age-modal-body {
  padding: 2rem 2.5rem;
  text-align: center;
}

.age-modal-body p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.age-modal-footer {
  display: flex;
  gap: 1rem;
  padding: 0 2.5rem 2.5rem;
  justify-content: center;
}

.age-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rubik', sans-serif;
}

.age-yes {
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: white;
}

.age-yes:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.age-no {
  background: #6b7280;
  color: white;
}

.age-no:hover {
  background: #4b5563;
}

/* Content Containers */
.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fullgame-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #dc2626, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.intro-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(220, 38, 38, 0.2);
  border: 2px solid #dc2626;
  border-radius: 50px;
  color: #f97316;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text {
  font-size: 1.3rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-action-btn {
  display: inline-block;
  padding: 1.3rem 3rem;
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  font-family: 'Rubik', sans-serif;
}

.hero-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

/* About Section */
.about-ombrin {
  background: #252525;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.about-col p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Game Section */
.featured-game-section {
  background: #1a1a1a;
}

.game-presentation {
  display: grid;
  gap: 3rem;
}

.game-embed-box {
  background: #000;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid #dc2626;
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.game-iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 12px;
  display: block;
}

.game-details {
  text-align: center;
}

.game-details h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.game-details p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.game-launch-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: 'Rubik', sans-serif;
}

.game-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

/* Notices */
.key-notices {
  background: #252525;
}

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

.notice-box {
  padding: 2.5rem;
  border-radius: 20px;
  border: 3px solid;
  transition: all 0.3s ease;
}

.notice-box.notice-red {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
}

.notice-box.notice-orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: #f97316;
}

.notice-box.notice-amber {
  background: rgba(251, 146, 60, 0.1);
  border-color: #fb923c;
}

.notice-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.notice-emoji {
  font-size: 3rem;
}

.notice-box h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  color: white;
}

.notice-box p {
  color: #d1d5db;
  line-height: 1.7;
}

/* Benefits */
.why-choose {
  background: #1a1a1a;
}

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

.benefit-tile {
  background: #252525;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-tile:hover {
  border-color: #dc2626;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.benefit-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-tile h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.benefit-tile p {
  color: #9ca3af;
  line-height: 1.7;
}

/* Responsible Play */
.responsible-play {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(249, 115, 22, 0.1));
  padding: 5rem 0;
}

.responsible-wrapper {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: 20px;
  border: 3px solid #dc2626;
  text-align: center;
}

.responsible-wrapper h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.responsible-wrapper p {
  font-size: 1.15rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.support-badges {
  margin-top: 2.5rem;
}

.support-badges h3 {
  font-family: 'Rubik', sans-serif;
  color: white;
  margin-bottom: 1.5rem;
}

.badge-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-badge {
  padding: 1rem 2rem;
  background: rgba(220, 38, 38, 0.2);
  color: #f97316;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid #dc2626;
}

.support-badge:hover {
  background: rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-top: 3px solid #dc2626;
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Rubik', sans-serif;
  color: #f97316;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #9ca3af;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.8rem;
}

.footer-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-list a:hover {
  color: #f97316;
  padding-left: 5px;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(220, 38, 38, 0.3);
  color: #6b7280;
}

/* Play Page */
.play-header-section {
  padding: 3rem 0 2rem;
  text-align: center;
  background: #252525;
}

.play-header-text {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 800px;
  margin: 0 auto;
}

.fullgame-section {
  padding: 2rem 0;
  background: #1a1a1a;
}

.game-fullscreen-wrapper {
  background: #000;
  padding: 20px;
  border-radius: 20px;
  border: 3px solid #dc2626;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.fullscreen-iframe {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: none;
  border-radius: 12px;
  display: block;
}

.game-info-section {
  background: #252525;
}

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

.info-tile {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(220, 38, 38, 0.3);
}

.info-tile-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-tile h3 {
  font-family: 'Rubik', sans-serif;
  color: #f97316;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-tile p {
  color: #d1d5db;
  line-height: 1.7;
}

/* Legal Pages */
.legal-page-section {
  padding: 3rem 0;
  min-height: 60vh;
  background: #1a1a1a;
}

.legal-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-page-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #dc2626, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-updated-date {
  color: #6b7280;
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-page-content {
  background: #252525;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(220, 38, 38, 0.3);
}

.legal-page-content h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.8rem;
  color: white;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page-content h2:first-child {
  margin-top: 0;
}

.legal-page-content p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-page-content ul {
  margin: 1rem 0 1.5rem 2rem;
  color: #d1d5db;
}

.legal-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .about-columns {
    grid-template-columns: 1fr;
  }

  .game-iframe {
    height: 400px;
  }

  .fullscreen-iframe {
    height: 60vh;
    min-height: 400px;
  }

  .age-modal-inner {
    margin: 0 20px;
  }

  .age-modal-footer {
    flex-direction: column;
  }

  .legal-page-content {
    padding: 2rem;
  }

  .legal-page-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .content-container {
    padding: 0 1rem;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-action-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
