:root {
  --bg-dark: #0a0a0a;
  --bg-medium: #1a1a1a;
  --bg-light: #2a2a2a;
  --text-light: #ffffff;
  --text-grey: #b0b0b0;
  --text-dark: #666666;
  --accent-green: #00ff88;
  --accent-green-hover: #00e673;
  --accent-gold: #ffd700;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--bg-dark);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo-icon {
  margin-right: 12px;
  width: 35px;
  
}

.highlight {
  color: var(--accent-green);
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav ul li {
  margin-left: 40px;
}

.nav ul li a {
  color: var(--text-grey);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: var(--accent-green);
}

.nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-grey);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Hero */
.page-hero {
  background: var(--gradient-dark);
  padding: 100px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, var(--accent-green-hover) 0%, #00b359 100%);
}

.btn-outline {
  background: transparent;
  color: var(--accent-green);
  padding: 12px 24px;
  border: 2px solid var(--accent-green);
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-green);
  color: var(--bg-dark);
}

.btn-casino {
  background: var(--gradient-primary);
  color: var(--bg-dark);
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.btn-casino:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

/* Why Choose Section */
.why-choose-section {
  background: var(--bg-medium);
  padding: 100px 0;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text-light);
}

.why-choose-section .subtitle {
  font-size: 1.2rem;
  color: var(--text-grey);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-dark);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-heavy);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.6;
}

/* Top Casinos Section */
.top-casinos-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.top-casinos-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.casino-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.casino-card {
  background: var(--bg-medium);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-green);
}

.casino-card:hover::before {
  transform: scaleX(1);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.casino-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.casino-rating {
  text-align: right;
}

.rating-score {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
}

.stars {
  color: var(--accent-gold);
  font-size: 1rem;
}

.casino-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.casino-bonus {
  color: var(--accent-green);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 500;
}

.casino-features {
  list-style: none;
  margin-bottom: 25px;
}

.casino-features li {
  color: var(--text-grey);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.text-center {
  text-align: center;
}

/* Filters Section */
.filters-section {
  background: var(--bg-medium);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-grey);
  border: 2px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-green);
  color: var(--bg-dark);
  border-color: var(--accent-green);
}

/* Casinos Listing */
.casinos-listing {
  background: var(--bg-dark);
  padding: 60px 0;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.casino-item {
  background: var(--bg-medium);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.casino-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-green);
}

.casino-item:hover::before {
  transform: scaleX(1);
}

.casino-rank {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  width: 60px;
  text-align: center;
}

.casino-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.casino-details h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.casino-description {
  color: var(--text-grey);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--bg-dark);
  color: var(--accent-green);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--accent-green);
}

.casino-bonus {
  text-align: center;
  min-width: 150px;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 5px;
}

.bonus-text {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.free-spins {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

/* About Page */
.about-content {
  background: var(--bg-dark);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--accent-green);
}

.about-text h3 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  font-weight: 600;
  color: var(--text-light);
}

.about-text p {
  color: var(--text-grey);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  margin: 20px 0;
}

.about-list li {
  color: var(--text-grey);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.value-item {
  background: var(--bg-medium);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-green);
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.value-item p {
  color: var(--text-grey);
  font-size: 1rem;
  margin: 0;
}

.about-image {
  position: sticky;
  top: 100px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-heavy);
}

/* Team Section */
.team-section {
  background: var(--bg-medium);
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: var(--bg-dark);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-green);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.team-role {
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member p:last-child {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--accent-green);
}

.contact-info > p {
  color: var(--text-grey);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  margin-bottom: 50px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-medium);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-details span {
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-medium);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Content Section for Privacy/Terms */
.content-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--accent-green);
}

.content-section h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.content-section p {
  color: var(--text-grey);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.content-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.content-section ul li {
  color: var(--text-grey);
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.content-section a {
  color: var(--accent-green);
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.content-section a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--bg-medium);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--accent-green);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-green);
}

.footer-section p {
  color: var(--text-grey);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.footer-disclaimer {
  background: var(--bg-dark);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-green);
  margin-bottom: 20px;
}

.footer-disclaimer p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-disclaimer strong {
  color: var(--accent-green);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal p {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-grey);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .casino-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .casino-info {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav ul {
    display: none;
  }

  .nav ul.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-medium);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-heavy);
  }

  .nav ul li {
    margin: 10px 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .casino-cards {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .why-choose-section h2,
  .top-casinos-section h2 {
    font-size: 2.5rem;
  }

  .casino-item {
    padding: 20px;
  }

  .contact-form-container {
    padding: 25px;
  }

  .footer-disclaimer {
    padding: 20px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-medium);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green-hover);
}





.responsible-gambling-section {
  padding: 40px 20px;
  text-align: center;
}

.responsible-gambling-section h4 {
  font-size: 22px;
  margin-bottom: 30px;
  color:white;
}

.gambling-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gambling-links li {
  flex: 0 1 auto;
}

.gambling-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gambling-links a:hover {
  background-color: #e0f7fa;
  color: #007c91;
}

.gambling-links img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.gambling-links a:hover img {
  filter: grayscale(0%);
}
