/* CSS Variables */
:root {
  --gold: #ffd700;
  --red: #ff6b6b;
  --bg: #0b0f1a;
  --bg-secondary: #131b2e;
  --bg-card: #1a2332;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #8892a6;
  --border: #2a3441;
  --shadow: rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #0b0f1a 0%, #131b2e 100%);
  --gradient-card: linear-gradient(145deg, #1a2332 0%, #242f3f 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #ffa500;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  outline: 2px solid var(--gold);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--bg-secondary);
  border-color: var(--gold);
  outline: 2px solid var(--gold);
}

.btn-danger {
  background: var(--red);
  color: white;
}

.btn-danger:hover,
.btn-danger:focus {
  background: #e55555;
  outline: 2px solid var(--red);
}

/* Header */
.header {
  background: rgba(11, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.nav-brand i {
  font-size: 1.8rem;
}

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

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: 0.3s;
}

.compliance-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.age-badge {
  background: white;
  color: var(--red);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  text-align: center;

  /* Gradient + background image */
  background: 
    linear-gradient(rgba(11, 15, 26, 0.7), rgba(11, 15, 26, 0.7)), 
    url("/public/herobg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff; /* yazıların görünməsi üçün */
}


.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-filter {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.search-box input:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.filter-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.filter-controls select {
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  cursor: pointer;
}

.filter-controls select:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

/* Casino Rankings */
.casino-rankings {
  padding: 4rem 0;

  /* Gradient + background image */
  background: 
    linear-gradient(rgba(11, 15, 26, 0.75), rgba(11, 15, 26, 0.75)), 
    url("/public/rankingbg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; /* textlərin oxunaqlı olması üçün */
}


.casino-rankings h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.casino-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  min-height: 120px;
  max-height: 140px;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--gold);
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.casino-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.casino-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.casino-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: white;
  padding: 0.3rem;
  flex-shrink: 0;
}

.casino-details h3 {
  margin-bottom: 0.3rem;
  color: var(--text-primary);
  font-size: 1.2rem;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--gold);
}

.rating-score {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
}

.casino-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.casino-main-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.casino-sidebar {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  min-width: auto;
}

.casino-bonus {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  padding: 0.8rem;
  text-align: center;
  min-width: 140px;
}

.bonus-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.bonus-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.bonus-terms {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.feature i {
  color: var(--gold);
  width: 14px;
}

.casino-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0;
}

.casino-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover,
.faq-question:focus {
  background: var(--bg-secondary);
  outline: 2px solid var(--gold);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: var(--gold);
}

.responsible-gambling {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.responsible-gambling img {
  max-width: 120px;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-compliance {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-compliance p {
  margin: 0;
  font-size: 0.9rem;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

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

.cookie-actions {
  display: flex;
  gap: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--gold);
  width: 30px;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-form-container {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Legal Content */
.legal-content {
  padding: 4rem 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
}

.legal-document h2 {
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-document h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-document ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Slots Page Styles */
.slots-categories {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.slots-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

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

.category-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--gold);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.category-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.category-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.category-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.top-slots {
  padding: 4rem 0;
}

.top-slots h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

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

.slot-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--gold);
}

.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

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

.slot-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: white;
  padding: 0.5rem;
}

.slot-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.slot-provider {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.slot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.slot-stat {
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
}

.slot-stat-value {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.slot-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.best-slots-casinos {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.best-slots-casinos h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.casino-slots-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Bonuses Page Styles */
.bonus-filter-section {
  margin-top: 2rem;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-controls select {
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  min-width: 200px;
}

.filter-controls select:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.bonus-offers {
  padding: 4rem 0;
}

.bonus-offers h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bonus-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--gold);
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.bonus-guide {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.bonus-guide h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

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

.guide-section {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.guide-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
}

.guide-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guide-section h3 i {
  color: var(--gold);
}

.guide-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Page Styles */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.values-list li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.team-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

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

.team-member {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--gold);
}

.team-member h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.responsible-gambling-section {
  padding: 4rem 0;
}

.responsible-gambling-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.responsible-content p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.responsible-feature {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.responsible-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
}

.responsible-feature i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.responsible-feature h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.responsible-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .search-filter {
    flex-direction: column;
  }

  .filter-controls {
    flex-direction: column;
    align-items: center;
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .casino-card {
    padding: 0.8rem;
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }

  .casino-actions {
    flex-direction: column;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .casino-content {
    flex-direction: column;
    gap: 0.8rem;
  }

  .casino-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .casino-info {
    width: 100%;
  }

  .casino-logo {
    width: 50px;
    height: 50px;
  }

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

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .slot-stats {
    grid-template-columns: 1fr;
  }

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

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

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

  .guide-content {
    grid-template-columns: 1fr;
  }

  .responsible-features {
    grid-template-columns: 1fr;
  }

  .filter-controls select {
    width: 100%;
    max-width: 300px;
  }

  .bonus-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .casino-grid {
    grid-template-columns: 1fr;
  }

  .casino-features {
    grid-template-columns: 1fr;
  }

  .casino-actions {
    flex-direction: column;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }

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

  .category-card {
    padding: 1.5rem;
  }

  .slot-stats {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .stat-card h3 {
    font-size: 2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .hero {
    display: none;
  }
}
@media (max-width: 768px) {
  .casino-rankings h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.7rem;
}

}
@media (max-width: 768px) {
  .casino-main-info{
    display: none;
  }

}



/* Contact Page Specific Styles */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--gold);
  width: 30px;
  flex-shrink: 0;
}

.contact-method div {
  flex: 1;
}

.contact-method h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.contact-form-container {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 3rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-form h2 {
    font-size: 1.4rem;
  }

  .contact-methods {
    gap: 1rem;
  }

  .contact-method {
    padding: 0.75rem;
  }

  .contact-method i {
    font-size: 1.2rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem 0;
  }

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

  .contact-form h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .contact-form-container {
    padding: 1rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .contact-method i {
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  .checkbox-label {
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
  .contact-form-container {
    margin: 0 -1rem;
    border-radius: 0;
  }

  .contact-method h3 {
    font-size: 1rem;
  }

  .contact-method p {
    font-size: 0.8rem;
  }
}
