@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #4C95B8;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #476EA4;
  --gold-accent: #FFD700;
  --teal-accent: #20B2AA;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/nextpokies-casinohall.webp);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar .logo img {
  height: 50px;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a[aria-current="page"] {
  color: var(--primary-color);
  background: rgba(76, 149, 184, 0.1);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 16px;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--primary-color);
  font-weight: bold;
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs span {
  color: var(--text-primary);
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(76, 149, 184, 0.4);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section */
.bonus-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(71, 110, 164, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 60px 50px;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}

.bonus-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(71, 110, 164, 0.3) 100%);
  z-index: 1;
}

.bonus-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-hero-content h1 {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #4C95B8 50%, #20B2AA 75%, #FFD700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: shimmer 3s linear infinite;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.bonus-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 500;
}

.bonus-hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.bonus-hero-image {
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.bonus-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-claim {
  margin-top: 20px;
}

/* Intro Section */
.bonus-intro-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(17, 17, 17, 0.6);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

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

.bonus-intro-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
}

/* Bonus Sections */
.bonus-section {
  margin: 60px 0;
  padding: 40px 30px;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(76, 149, 184, 0.2);
  backdrop-filter: blur(10px);
}

.bonus-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(76, 149, 184, 0.3);
}

.bonus-icon {
  font-size: 2.5rem;
}

.bonus-section-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
}

.bonus-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bonus-content-grid.reverse {
  direction: rtl;
}

.bonus-content-grid.reverse > * {
  direction: ltr;
}

.bonus-image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

.bonus-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-text-content {
  color: var(--text-secondary);
}

.bonus-text-content h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin: 20px 0 15px;
  font-weight: 600;
}

.bonus-text-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1rem;
}

.bonus-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.bonus-feature-list li {
  padding: 10px 0 10px 25px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bonus-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.bonus-feature-list.warning li::before {
  content: "⚠";
  color: var(--gold-accent);
}

/* Wagering Section */
.wagering-content {
  max-width: 800px;
  margin: 0 auto;
}

.wagering-example {
  background: rgba(76, 149, 184, 0.2);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin: 25px 0;
}

.wagering-example h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.wagering-example p {
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Comparison Table */
.comparison-content {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
}

.comparison-table th {
  padding: 15px;
  text-align: left;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(76, 149, 184, 0.2);
  color: var(--text-secondary);
}

.comparison-table tbody tr:hover {
  background: rgba(76, 149, 184, 0.1);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table td strong {
  color: var(--text-primary);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.step-card {
  background: rgba(17, 17, 17, 0.8);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(76, 149, 184, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(76, 149, 184, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-primary));
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(76, 149, 184, 0.4);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin: 20px 0 15px;
}

.step-card h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.claim-cta {
  text-align: center;
  margin-top: 40px;
}

/* Responsible Gambling */
.responsible-gambling {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

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

/* FAQ Section */
.faq-section {
  margin-top: 60px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(17, 17, 17, 0.8);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(76, 149, 184, 0.2);
}

.faq-item:hover {
  border-color: var(--primary-color);
  background: rgba(76, 149, 184, 0.1);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 15px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Conclusion Section */
.conclusion-section {
  background: linear-gradient(135deg, rgba(71, 110, 164, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.conclusion-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.conclusion-cta {
  margin: 40px 0;
}

.conclusion-image {
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.conclusion-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(76, 149, 184, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link-group h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-link-group a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-link-group a:hover {
  color: var(--accent-primary);
}

.footer-copy {
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-secondary) !important;
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }

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

  .bonus-content-grid.reverse {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .navbar-menu {
    flex-direction: row;
    gap: 10px;
  }

  .bonus-hero {
    padding: 40px 20px;
  }

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

  .bonus-section {
    padding: 30px 20px;
  }

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

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

  .comparison-table-wrapper {
    overflow-x: scroll;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .bonus-hero {
    padding: 30px 15px;
  }

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

  .bonus-section {
    padding: 20px 15px;
  }

  .bonus-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
