/* MM88 - Art Deco Casino Style */
:root {
  --primary-black: #0a0a0a;
  --primary-gold: #d4af37;
  --secondary-gold: #f4e4b1;
  --light-gold: #faf6e9;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --accent-red: #8b0000;
}

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

body {
  font-family: 'Playfair Display', serif;
  background-color: var(--primary-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Art Deco Patterns */
.deco-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, var(--primary-gold) 10px, var(--primary-gold) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--primary-gold) 10px, var(--primary-gold) 20px);
  pointer-events: none;
}

/* Header */
header {
  background: linear-gradient(180deg, #1a1a1a 0%, var(--primary-black) 100%);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-gold);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  filter: drop-shadow(0 0 10px var(--primary-gold));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-gold);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 73px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--secondary-gold);
  font-weight: 300;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 15px 50px;
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--primary-black);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--primary-gold);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.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: left 0.5s ease;
}

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

/* Content Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  color: var(--primary-gold);
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background: var(--primary-gold);
}

.section-title::before {
  left: -120px;
}

.section-title::after {
  right: -120px;
}

/* Content Blocks */
.content-block {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(10,10,10,0.9));
  padding: 40px;
  border: 2px solid var(--primary-gold);
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-block-image {
  flex: 0 0 400px;
  height: 300px;
  overflow: hidden;
  border: 3px solid var(--primary-gold);
  position: relative;
}

.content-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-block:hover .content-block-image img {
  transform: scale(1.05);
}

.content-block-text {
  flex: 1;
}

.content-block h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.content-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.grid-item {
  background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(10,10,10,0.95));
  border: 2px solid var(--primary-gold);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  animation: shimmer 3s infinite;
}

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

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.grid-item-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
}

.grid-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-item h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Features Section */
.features {
  background: linear-gradient(135deg, var(--primary-black), #1a1a1a);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--primary-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-gold), transparent, var(--primary-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-gold);
  text-transform: uppercase;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--primary-black);
  border-top: 3px solid var(--primary-gold);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--secondary-gold);
}

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

.age-modal-content {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 3px solid var(--primary-gold);
  max-width: 500px;
  padding: 40px;
  text-align: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.age-modal-header h2 {
  color: var(--primary-gold);
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.warning-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.age-warning {
  color: #ff6b6b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.age-modal-body p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.age-confirm-btn, .age-deny-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--primary-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-confirm-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
  color: var(--primary-black);
}

.age-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.age-deny-btn {
  background: transparent;
  color: var(--text-light);
}

.age-deny-btn:hover {
  background: rgba(139, 0, 0, 0.3);
  border-color: #ff6b6b;
  color: #ff6b6b;
}

.responsible-gaming-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

/* Responsible Gaming Section */
.responsible-gaming {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-top: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

.responsible-content {
  max-width: 1200px;
  margin: 0 auto;
}

.responsible-warning {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(139, 0, 0, 0.1));
  border: 2px solid #ff6b6b;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.warning-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 10px 30px;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid var(--primary-black);
}

.responsible-warning h3 {
  color: #ff6b6b;
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 20px;
  text-transform: uppercase;
}

.responsible-warning p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.responsible-info {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--primary-gold);
  padding: 30px;
  margin-bottom: 40px;
}

.responsible-info h3 {
  color: var(--primary-gold);
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.responsible-list {
  list-style: none;
  padding: 0;
}

.responsible-list li {
  color: var(--text-light);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.responsible-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 20px;
  font-weight: bold;
}

.responsible-tools {
  margin-bottom: 40px;
}

.responsible-tools h3 {
  color: var(--primary-gold);
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tool-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--primary-gold);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.tool-item h4 {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.responsible-help {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--primary-gold);
  padding: 30px;
  text-align: center;
}

.responsible-help h3 {
  color: var(--primary-gold);
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.responsible-help p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.help-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.contact-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 15px;
  border: 1px solid var(--primary-gold);
  color: var(--text-light);
}

.contact-item strong {
  color: var(--primary-gold);
  display: block;
  margin-bottom: 5px;
}

.disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 73px;
    flex-direction: column;
    background: var(--primary-black);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-gold);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-title::before,
  .section-title::after {
    display: none;
  }
  
  .content-block {
    flex-direction: column !important;
    padding: 20px;
  }
  
  .content-block-image {
    flex: 1;
    width: 100%;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}