:root {
  --spinworldtop-primary: #059669;
  --spinworldtop-primary-dark: #047857;
  --spinworldtop-primary-light: #10b981;
  --spinworldtop-accent: #f59e0b;
  --spinworldtop-accent-light: #fbbf24;
  --spinworldtop-accent-dark: #d97706;
  --spinworldtop-bg: #f9fafb;
  --spinworldtop-bg-light: #ffffff;
  --spinworldtop-dark: #111827;
  --spinworldtop-gray: #6b7280;
  --spinworldtop-border: #e5e7eb;
  --spinworldtop-white: #ffffff;
  --spinworldtop-success: #10b981;
  --spinworldtop-warning: #f59e0b;
  --spinworldtop-error: #ef4444;
  --spinworldtop-shadow-sm: 0 1px 2px rgba(5, 150, 105, 0.08);
  --spinworldtop-shadow-md: 0 4px 12px rgba(5, 150, 105, 0.12);
  --spinworldtop-shadow-lg: 0 8px 24px rgba(5, 150, 105, 0.16);
  --spinworldtop-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
  --spinworldtop-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --spinworldtop-radius-sm: 6px;
  --spinworldtop-radius-md: 10px;
  --spinworldtop-radius-lg: 14px;
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--spinworldtop-bg);
  color: var(--spinworldtop-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--spinworldtop-dark);
}

h1 { font-size: 2.6rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

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

a {
  color: var(--spinworldtop-primary);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--spinworldtop-primary-dark);
}

.spinworldtop-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--spinworldtop-white);
  box-shadow: var(--spinworldtop-shadow-md);
  z-index: 1000;
  border-bottom: 2px solid var(--spinworldtop-primary);
}

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

.spinworldtop-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--spinworldtop-primary);
  letter-spacing: -0.01em;
}

.spinworldtop-navbar-logo {
  width: 46px;
  height: 46px;
  border-radius: var(--spinworldtop-radius-sm);
  object-fit: cover;
}

.spinworldtop-navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--spinworldtop-primary);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--spinworldtop-radius-sm);
}

.spinworldtop-navbar-toggle-bar {
  width: 26px;
  height: 3px;
  background: var(--spinworldtop-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.spinworldtop-navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.spinworldtop-nav-item {
  margin: 0;
}

.spinworldtop-nav-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--spinworldtop-gray);
  padding: 0.6rem 1.2rem;
  border-radius: var(--spinworldtop-radius-sm);
  transition: all 0.25s ease;
  display: inline-block;
}

.spinworldtop-nav-link:hover,
.spinworldtop-nav-link.active {
  color: var(--spinworldtop-primary);
  background: rgba(5, 150, 105, 0.08);
}

.spinworldtop-nav-link-cta {
  background: var(--spinworldtop-gradient);
  color: var(--spinworldtop-white) !important;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: var(--spinworldtop-radius-md);
  box-shadow: var(--spinworldtop-shadow-md);
}

.spinworldtop-nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--spinworldtop-shadow-lg);
  background: var(--spinworldtop-primary-dark);
}

.spinworldtop-hero {
  background: linear-gradient(140deg, #059669 0%, #047857 45%, #065f46 100%);
  color: var(--spinworldtop-white);
  padding: 8rem 2rem 6rem;
  text-align: center;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.spinworldtop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

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

.spinworldtop-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  line-height: 1.15;
  color: var(--spinworldtop-white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.spinworldtop-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  opacity: 0.94;
  font-weight: 400;
  margin-bottom: 2rem;
}

.spinworldtop-section {
  padding: 5rem 2rem;
}

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

.spinworldtop-section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--spinworldtop-dark);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.spinworldtop-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--spinworldtop-gradient);
  border-radius: 2px;
}

.spinworldtop-casino-list {
  background: var(--spinworldtop-bg-light);
}

.spinworldtop-casino-item {
  background: var(--spinworldtop-white);
  border-radius: var(--spinworldtop-radius-lg);
  padding: 2rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--spinworldtop-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.spinworldtop-casino-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--spinworldtop-shadow-lg);
  border-color: var(--spinworldtop-primary);
}

.spinworldtop-casino-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.spinworldtop-casino-logo {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinworldtop-casino-logo-img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.spinworldtop-casino-info {
  flex: 1;
  min-width: 280px;
}

.spinworldtop-casino-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spinworldtop-dark);
  margin-bottom: 0.8rem;
}

.spinworldtop-casino-bonus {
  font-size: 1rem;
  color: var(--spinworldtop-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.spinworldtop-rating-stars {
  color: var(--spinworldtop-accent);
  font-size: 1rem;
}

.spinworldtop-rating-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--spinworldtop-primary);
}

.spinworldtop-casino-action {
  display: flex;
  justify-content: center;
}

.spinworldtop-btn-primary {
  background: var(--spinworldtop-gradient);
  color: var(--spinworldtop-white);
  padding: 0.9rem 2rem;
  border-radius: var(--spinworldtop-radius-md);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--spinworldtop-shadow-md);
  text-align: center;
  display: inline-block;
  min-width: 200px;
}

.spinworldtop-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--spinworldtop-shadow-lg);
  background: var(--spinworldtop-primary-dark);
  color: var(--spinworldtop-white);
}

.spinworldtop-page-card {
  background: var(--spinworldtop-white);
  border-radius: var(--spinworldtop-radius-lg);
  padding: 3rem;
  margin: 3rem auto;
  box-shadow: var(--spinworldtop-shadow-md);
  max-width: 1140px;
}

.spinworldtop-page-card h1 {
  color: var(--spinworldtop-primary);
  margin-bottom: 2rem;
}

.spinworldtop-page-card h2 {
  color: var(--spinworldtop-dark);
  margin-top: 2.6rem;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--spinworldtop-border);
  padding-bottom: 0.5rem;
}

.spinworldtop-page-card h3 {
  color: var(--spinworldtop-primary);
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.spinworldtop-page-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.spinworldtop-page-card li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.spinworldtop-page-card .alert {
  padding: 1.2rem;
  border-radius: var(--spinworldtop-radius-md);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}

.alert-info {
  background: rgba(5, 150, 105, 0.08);
  border-color: var(--spinworldtop-primary);
  color: var(--spinworldtop-dark);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--spinworldtop-accent);
  color: var(--spinworldtop-dark);
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--spinworldtop-success);
  color: var(--spinworldtop-dark);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: var(--spinworldtop-error);
  color: var(--spinworldtop-dark);
}

.spinworldtop-contact-info {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.spinworldtop-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--spinworldtop-bg);
  border-radius: var(--spinworldtop-radius-md);
  border: 2px solid var(--spinworldtop-border);
  transition: all 0.25s ease;
}

.spinworldtop-contact-item:hover {
  border-color: var(--spinworldtop-primary);
  box-shadow: var(--spinworldtop-shadow-sm);
}

.spinworldtop-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--spinworldtop-gradient);
  color: var(--spinworldtop-white);
  border-radius: var(--spinworldtop-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.spinworldtop-contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--spinworldtop-primary);
  font-size: 1.1rem;
}

.spinworldtop-contact-details p {
  margin: 0;
  color: var(--spinworldtop-gray);
  line-height: 1.6;
}

.spinworldtop-contact-details a {
  color: var(--spinworldtop-gray);
  text-decoration: none;
}

.spinworldtop-contact-form {
  margin-top: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--spinworldtop-dark);
  font-size: 0.96rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--spinworldtop-border);
  border-radius: var(--spinworldtop-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.25s ease;
  background: var(--spinworldtop-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--spinworldtop-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.spinworldtop-footer {
  background: var(--spinworldtop-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem 2rem;
}

.spinworldtop-footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.spinworldtop-footer-section h4 {
  color: var(--spinworldtop-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.spinworldtop-footer-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.spinworldtop-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spinworldtop-footer-links li {
  margin-bottom: 0.8rem;
}

.spinworldtop-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
  display: inline-block;
}

.spinworldtop-footer-links a:hover {
  color: var(--spinworldtop-primary-light);
  transform: translateX(4px);
}

.spinworldtop-footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 2rem auto;
  max-width: 1240px;
}

.spinworldtop-footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.spinworldtop-footer-disclaimer {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.spinworldtop-footer-disclaimer p {
  margin-bottom: 0.8rem;
}

.spinworldtop-footer-disclaimer a {
  color: var(--spinworldtop-primary-light);
}

.spinworldtop-footer .spinworldtop-contact-info {
  background: transparent;
  padding: 0;
  border: none;
}

.spinworldtop-footer .spinworldtop-contact-item {
  background: transparent;
  padding: 0.5rem 0;
  border: none;
}

.spinworldtop-footer .spinworldtop-contact-icon {
  width: 38px;
  height: 38px;
  font-size: 1rem;
  margin-right: 0.8rem;
}

.spinworldtop-footer .spinworldtop-contact-details p {
  color: rgba(255, 255, 255, 0.85);
}

.spinworldtop-footer .spinworldtop-contact-details a {
  color: rgba(255, 255, 255, 0.85);
}

.spinworldtop-responsible-gambling {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin: 2.2rem 0;
}

.spinworldtop-responsible-gambling img {
  height: 50px;
  width: auto;
  opacity: 0.85;
  transition: all 0.25s ease;
  filter: brightness(0) invert(1);
}

.spinworldtop-responsible-gambling img:hover {
  opacity: 1;
  transform: scale(1.06);
}

.spinworldtop-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--spinworldtop-dark);
  color: var(--spinworldtop-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

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

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

.spinworldtop-cookie-text h5 {
  color: var(--spinworldtop-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.spinworldtop-cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.92;
}

.spinworldtop-cookie-text a {
  color: var(--spinworldtop-primary-light);
  text-decoration: underline;
}

.spinworldtop-cookie-actions button {
  background: var(--spinworldtop-gradient);
  color: var(--spinworldtop-white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--spinworldtop-radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spinworldtop-cookie-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.spinworldtop-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .spinworldtop-navbar-toggle {
    display: flex;
  }

  .spinworldtop-navbar-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--spinworldtop-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--spinworldtop-shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .spinworldtop-navbar-menu.show {
    max-height: 500px;
  }

  .spinworldtop-nav-item {
    border-bottom: 1px solid var(--spinworldtop-border);
  }

  .spinworldtop-nav-link {
    display: block;
    padding: 1rem 1.8rem;
    border-radius: 0;
  }

  .spinworldtop-nav-link-cta {
    margin: 1rem 1.8rem;
    text-align: center;
  }

  .spinworldtop-casino-header {
    flex-direction: column;
    text-align: center;
  }

  .spinworldtop-casino-rating {
    justify-content: center;
  }

  .spinworldtop-hero-title {
    font-size: 2.4rem;
  }

  .spinworldtop-hero-subtitle {
    font-size: 1.12rem;
  }

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

  .spinworldtop-page-card {
    padding: 2rem 1.6rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  
  .spinworldtop-hero {
    padding: 5rem 1.5rem 4rem;
  }

  .spinworldtop-hero-title {
    font-size: 1.9rem;
  }

  .spinworldtop-hero-subtitle {
    font-size: 1.02rem;
  }

  .spinworldtop-section {
    padding: 3.2rem 1.1rem;
  }

  .spinworldtop-section-title {
    font-size: 1.9rem;
  }

  .spinworldtop-footer-content {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .spinworldtop-responsible-gambling {
    gap: 1rem;
  }

  .spinworldtop-responsible-gambling img {
    height: 42px;
  }

  .spinworldtop-navbar-container {
    padding: 1rem 1.5rem;
  }

  .spinworldtop-navbar-brand {
    font-size: 1.15rem;
  }

  .spinworldtop-navbar-logo {
    width: 40px;
    height: 40px;
  }
}

main {
  min-height: calc(100vh - 400px);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-md-8 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .col-md-4,
  .col-md-6,
  .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

section { margin-bottom: 2rem; }

.spinworldtop-faq-item {
  margin-bottom: 2rem;
}

.spinworldtop-faq-icon {
  color: var(--spinworldtop-primary);
  margin-right: 0.5rem;
}
