:root {
  --primary-green: #00853E;
  --dark-green: #006B32;
  --accent-gold: #FFB800;
  --dark-bg: #0A1F1B;
  --darker-bg: #051410;
  --light-text: #FFFFFF;
  --gray-text: #B8C5C2;
  --card-bg: #0F2A24;
  --border-color: #1A4038;
  --error-red: #E63946;
  --success-green: #06D6A0;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--darker-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 20px 0;
  border-bottom: 3px solid var(--primary-green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 133, 62, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-image: url('images/favicon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  color: var(--accent-gold);
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--light-text);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 133, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 60%, var(--dark-green) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,184,0,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--light-text), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-text);
  font-size: 0.95rem;
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.casino-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  margin: 20px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.casino-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 133, 62, 0.3);
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.casino-logo {
  width: 100px;
  height: 100px;
  background: var(--light-text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.casino-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--light-text);
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.bonus-highlight {
  background: linear-gradient(135deg, rgba(0, 133, 62, 0.2), rgba(255, 184, 0, 0.1));
  border: 2px solid var(--primary-green);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.bonus-highlight h3 {
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-highlight p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-text);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 30px;
}

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

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

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

.feature-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light-text);
}

.feature-card p {
  color: var(--gray-text);
  line-height: 1.8;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.game-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}

.game-card:hover {
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

a.game-card {
  text-decoration: none;
  color: inherit;
}

.game-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-info {
  padding: 15px;
}

.game-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--light-text);
}

.game-info p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

footer {
  background: var(--darker-bg);
  border-top: 3px solid var(--primary-green);
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

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

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

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

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

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

.responsible-gambling {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.rg-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.rg-logo {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rg-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.age-notice {
  text-align: center;
  padding: 20px;
  background: var(--error-red);
  border-radius: 8px;
  margin: 20px 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--gray-text);
  font-size: 0.9rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card-bg);
  border: 3px solid var(--primary-green);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.modal p {
  margin-bottom: 20px;
  color: var(--gray-text);
  line-height: 1.8;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 3px solid var(--primary-green);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  color: var(--gray-text);
}

.cookie-content a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.info-box {
  background: var(--card-bg);
  border-left: 4px solid var(--primary-green);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.info-box.warning {
  border-left-color: var(--accent-gold);
}

.info-box.error {
  border-left-color: var(--error-red);
}

.content-section {
  margin: 40px 0;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--light-text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-green);
}

.content-section h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--accent-gold);
}

.content-section p {
  margin-bottom: 15px;
  color: var(--gray-text);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin: 20px 0 20px 30px;
  color: var(--gray-text);
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  min-width: 600px;
  display: table;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: var(--primary-green);
  color: var(--light-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background: rgba(0, 133, 62, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--light-text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--light-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

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

  .section {
    padding: 60px 0;
  }

  .casino-card {
    padding: 25px;
  }

  .casino-info h2 {
    font-size: 1.8rem;
  }

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

  .content-section h2 {
    font-size: 1.8rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 12px 10px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  header {
    padding: 15px 0;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    width: 100%;
    order: 3;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 15px 0;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .casino-card {
    padding: 20px;
    margin: 15px 0;
  }

  .casino-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .casino-logo {
    width: 80px;
    height: 80px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .casino-info h2 {
    font-size: 1.5rem;
  }

  .casino-info h3 {
    font-size: 1.3rem;
  }

  .rating {
    font-size: 1.2rem;
    justify-content: center;
  }

  .bonus-highlight {
    padding: 15px;
  }

  .bonus-highlight p {
    font-size: 1.2rem;
  }

  .content-section {
    margin: 30px 0;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .content-section h3 {
    font-size: 1.3rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .game-image {
    height: 150px;
    font-size: 2.5rem;
  }

  .game-info {
    padding: 12px;
  }

  .game-info h4 {
    font-size: 1rem;
  }

  .game-info p {
    font-size: 0.85rem;
  }

  .trust-badges {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    font-size: 0.9rem;
  }

  footer {
    padding: 40px 0 15px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .responsible-gambling {
    padding: 20px;
    margin: 30px 0;
  }

  .rg-logos {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .rg-logo {
    width: 100px;
    height: 60px;
  }

  .age-notice {
    padding: 15px;
    font-size: 1rem;
  }

  .modal {
    padding: 30px 20px;
    width: 95%;
    max-width: 100%;
    margin: 20px;
  }

  .modal h2 {
    font-size: 1.5rem;
  }

  .modal p {
    font-size: 0.95rem;
  }

  .modal-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .modal-buttons .btn {
    width: 100%;
  }

  .cookie-banner {
    padding: 15px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .info-box {
    padding: 15px;
  }

  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-wrapper::-webkit-scrollbar {
    height: 8px;
  }

  .table-wrapper::-webkit-scrollbar-track {
    background: var(--darker-bg);
    border-radius: 4px;
  }

  .table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
  }

  .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
  }

  table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead, tbody, tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  th, td {
    padding: 10px 8px;
    white-space: nowrap;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 20px;
  }

  .footer-bottom p {
    margin-top: 8px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 40px 0;
  }

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

  .hero p {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .casino-card {
    padding: 15px;
  }

  .casino-logo {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .casino-info h2 {
    font-size: 1.3rem;
  }

  .casino-info h3 {
    font-size: 1.1rem;
  }

  .rating {
    font-size: 1rem;
    flex-wrap: wrap;
  }

  .bonus-highlight p {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 1.4rem;
  }

  .content-section h3 {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .game-image {
    height: 120px;
    font-size: 2rem;
  }

  .modal {
    padding: 25px 15px;
  }

  .modal h2 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 9px 18px;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 11px 22px;
    font-size: 0.95rem;
  }

  .table-wrapper {
    margin: 15px 0;
  }

  table {
    font-size: 0.8rem;
    min-width: 100%;
  }

  th, td {
    padding: 8px 6px;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 40px 0;
  }

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

  .section {
    padding: 40px 0;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .cookie-banner,
  .modal-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .casino-card,
  .feature-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}