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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

/* Navigation */
.navbar {
  background: #1a1a1a;
  border-bottom: 1px solid #d4af37;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #d4af37;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4af37;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-badge {
  display: inline-block;
  background: #d4af37;
  color: #0a0a0a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 4rem 0 3rem;
  background: #1a1a1a;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.page-header p {
  color: #d4af37;
  font-size: 1rem;
}

/* Sections */
.info-section,
.about-section,
.contact-section,
.content-section {
  padding: 4rem 0;
}

.info-section {
  background: #1a1a1a;
}

.about-section {
  background: #0a0a0a;
}

.contact-section {
  background: #1a1a1a;
}

.content-section {
  background: #0a0a0a;
}

/* Added disclaimer section styles */
.disclaimer-section {
  padding: 4rem 0;
  background: #1a1a1a;
  border-top: 1px solid #333;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  color: #d4af37;
}

.company-info h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  letter-spacing: 0.5px;
  color: #d4af37;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.company-info p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.license-info {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.license-item {
  background: #0a0a0a;
  border: 1px solid #333;
  border-left: 3px solid #d4af37;
  padding: 1.5rem;
  border-radius: 4px;
}

.license-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.license-item p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.disclaimer-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #0a0a0a;
  border: 1px solid #d4af37;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #d4af37;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 8px;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.info-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* About Content */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-content p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: #d4af37;
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.contact-item p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: #d4af37;
}

/* Feature List */
.feature-list {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
}

.feature-item i {
  font-size: 2rem;
  color: #d4af37;
  min-width: 40px;
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.feature-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-left: 3px solid #d4af37;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.info-box h2,
.info-box h3 {
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.info-box ul {
  list-style: none;
  margin: 1rem 0;
}

.info-box ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #ccc;
}

.info-box ul li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Simple List */
.simple-list {
  margin: 2rem 0;
}

.list-item {
  background: #1a1a1a;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid #333;
}

.list-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #d4af37;
  letter-spacing: 0.5px;
}

.list-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Transport Info */
.transport-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.transport-item {
  display: flex;
  gap: 1rem;
}

.transport-item i {
  font-size: 1.5rem;
  color: #d4af37;
  margin-top: 0.25rem;
}

.transport-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.transport-item p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Support List */
.support-list {
  margin: 2rem 0;
}

.support-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
}

.support-item i {
  font-size: 2rem;
  color: #d4af37;
  min-width: 40px;
}

.support-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.support-item p {
  color: #ccc;
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.support-item a:hover {
  color: #d4af37;
}

/* Contact Info */
.contact-info {
  margin: 1.5rem 0;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info i {
  color: #d4af37;
}

.contact-info a:hover {
  color: #d4af37;
}

/* Typography */
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: #1a1a1a;
  border-top: 1px solid #d4af37;
  padding: 3rem 0 1rem;
}

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

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-col span {
  color: #d4af37;
}

.footer-col p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #d4af37;
}

.footer-gambling {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 1.5rem;
}

.footer-gambling a {
  color: #d4af37;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-gambling a:hover {
  color: #fff;
}

.footer-gambling span {
  color: #666;
}

.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .info-grid,
  .contact-grid,
  .transport-info {
    grid-template-columns: 1fr;
  }

  /* Added responsive styles for disclaimer section */
  .disclaimer-content h2 {
    font-size: 1.5rem;
  }

  .company-info h3 {
    font-size: 1.125rem;
  }

  .license-item {
    padding: 1rem;
  }
}
