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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.sc-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header Styles */
.sc-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sc-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.sc-logo {
  height: 50px;
  width: auto;
}

.sc-header-actions {
  display: flex;
  gap: 15px;
}

/* Button Styles */
.sc-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.sc-btn-login {
  background-color: #0255c2;
  color: white;
}

.sc-btn-login:hover {
  background-color: #0244a8;
  color: white;
  transform: translateY(-2px);
}

.sc-btn-register {
  background-color: #54b146;
  color: white;
}

.sc-btn-register:hover {
  background-color: #4a9e3d;
  color: white;
  transform: translateY(-2px);
}

.sc-btn-bonus {
  background-color: #54b146;
  color: white;
}

.sc-btn-bonus:hover {
  background-color: #4a9e3d;
  color: white;
  transform: translateY(-2px);
}

.sc-btn-large {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
}

.sc-btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.sc-btn-primary {
  background-color: #0255c2;
  color: white;
}

.sc-btn-play {
  background-color: #ff6b35;
  color: white;
}

/* Main Content */
.sc-main {
  flex: 1;
  padding: 40px 0;
}

.sc-main-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Hero Section */
.sc-hero-section {
  background: linear-gradient(135deg, #0255c2, #54b146);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.sc-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/slottica-casino-banner.jpg") center / cover;
  opacity: 0.2;
  z-index: 1;
}

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

.sc-hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.sc-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.sc-jackpot-display {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  backdrop-filter: blur(10px);
}

.sc-jackpot-label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sc-jackpot-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Table of Contents */
.sc-toc-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 600;
}

.sc-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-toc-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sc-toc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #0255c2;
}

.sc-toc-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Bonuses Section */
.sc-bonuses-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-bonuses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-bonus-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.sc-bonus-card h3 {
  color: #0255c2;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.sc-bonus-card p {
  margin-bottom: 20px;
  color: #666;
}

/* Info Table */
.sc-info-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-info-table-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sc-info-table {
  width: 100%;
  border-collapse: collapse;
}

.sc-info-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.sc-info-table td:first-child {
  font-weight: 600;
  background-color: #f8f9fa;
  width: 40%;
}

.sc-info-table tr:last-child td {
  border-bottom: none;
}

/* Pros and Cons */
.sc-pros-cons-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-pros,
.sc-cons {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sc-pros h3 {
  color: #54b146;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.sc-cons h3 {
  color: #e74c3c;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.sc-pros ul,
.sc-cons ul {
  list-style: none;
}

.sc-pros li::before {
  content: "✓ ";
  color: #54b146;
  font-weight: bold;
  margin-right: 10px;
}

.sc-cons li::before {
  content: "✗ ";
  color: #e74c3c;
  font-weight: bold;
  margin-right: 10px;
}

.sc-pros li,
.sc-cons li {
  margin-bottom: 10px;
  padding-left: 5px;
}

/* Games Section */
.sc-games-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-demo-game {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.sc-demo-game h3 {
  margin-bottom: 20px;
  color: #333;
}

.sc-game-frame {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.sc-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-game-tile {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.sc-game-tile:hover {
  transform: translateY(-5px);
}

.sc-game-tile img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.sc-game-tile h4 {
  margin-bottom: 15px;
  color: #333;
}

/* Review Section */
.sc-review-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-review-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

.sc-review-content h2 {
  color: #333;
  margin: 30px 0 20px 0;
  font-size: 1.8rem;
}

.sc-review-content h3 {
  color: #0255c2;
  margin: 25px 0 15px 0;
  font-size: 1.4rem;
}

.sc-review-content p {
  margin-bottom: 15px;
  color: #555;
}

.sc-review-content ul,
.sc-review-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.sc-review-content li {
  margin-bottom: 8px;
}

.sc-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.sc-review-content table th,
.sc-review-content table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.sc-review-content table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* Reviews Section */
.sc-reviews-section {
  margin-bottom: 60px;
  padding: 0 20px;
}

.sc-reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.sc-review-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sc-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sc-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.sc-review-name {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.sc-review-rating {
  color: #ffd700;
  font-size: 1.1rem;
}

.sc-review-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.sc-review-form h3 {
  margin-bottom: 25px;
  color: #333;
  text-align: center;
}

.sc-form-group {
  margin-bottom: 20px;
}

.sc-form-group input,
.sc-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.sc-form-group input:focus,
.sc-form-group textarea:focus {
  outline: none;
  border-color: #0255c2;
}

.sc-success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

/* Footer */
.sc-footer {
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0 20px 0;
  margin-top: auto;
}

.sc-footer-content {
  text-align: center;
}

.sc-footer-logo-img {
  height: 60px;
  margin-bottom: 30px;
}

.sc-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.sc-footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sc-footer-links a:hover {
  color: #0255c2;
}

.sc-footer-payments,
.sc-footer-providers {
  margin-bottom: 20px;
}

.sc-payments-img,
.sc-providers-img {
  max-width: 100%;
  height: auto;
}

.sc-footer-info {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sc-footer-info p {
  margin-bottom: 5px;
}

/* Widget */
.sc-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #54b146, #4a9e3d);
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.sc-widget-content {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  gap: 15px;
}

.sc-widget-text {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.sc-widget-btn {
  background: white;
  color: #54b146;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.sc-widget-btn:hover {
  background: #f0f0f0;
  color: #4a9e3d;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sc-container {
    padding: 0 15px;
  }

  .sc-main-title {
    font-size: 2rem;
  }

  .sc-hero-title {
    font-size: 2rem;
  }

  .sc-hero-subtitle {
    font-size: 1.1rem;
  }

  .sc-jackpot-amount {
    font-size: 2rem;
  }

  .sc-pros-cons-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sc-header-actions {
    gap: 10px;
  }

  .sc-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .sc-btn-large {
    padding: 15px 25px;
    font-size: 16px;
  }

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

  .sc-widget {
    bottom: 10px;
    right: 10px;
  }

  .sc-widget-content {
    padding: 12px 20px;
  }

  .sc-info-table-container {
    overflow-x: auto;
  }

  .sc-games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sc-bonuses-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .sc-toc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sc-reviews-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* WordPress-like elements for obfuscation */
.wp-block-group {
  display: none;
}
.wp-block-columns {
  display: none;
}
.elementor-widget {
  display: none;
}
.yoast-breadcrumb {
  display: none;
}
.wp-content-area {
  display: none;
}

/* Additional unused styles for uniqueness */
.mb-a1b2c3-hero {
  display: none;
}
.mb-d4e5f6-sidebar {
  display: none;
}
.mb-g7h8i9-footer {
  display: none;
}
.sc-unused-class-1 {
  display: none;
}
.sc-unused-class-2 {
  display: none;
}
.sc-unused-class-3 {
  display: none;
}
