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

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

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

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

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

.logo-img {
  height: 40px;
  width: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

.btn-signup:hover {
  background: #459a38;
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(2, 85, 194, 0.9), rgba(84, 177, 70, 0.9)), url("/slottica-banner.jpeg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

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

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

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-form-wrapper h3 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

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

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

.btn-primary {
  background: #0255c2;
  color: white;
  width: 100%;
  margin-bottom: 15px;
}

.btn-success {
  background: #54b146;
  color: white;
  width: 100%;
}

.form-divider {
  text-align: center;
  margin: 15px 0;
  color: #666;
  position: relative;
}

.form-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
  z-index: 1;
}

.form-divider {
  background: white;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Table of Contents */
.toc-section {
  padding: 60px 0;
  background: white;
}

.toc-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  list-style: none;
}

.toc-list a {
  display: block;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #0255c2;
  font-weight: 500;
  transition: all 0.3s ease;
}

.toc-list a:hover {
  background: #0255c2;
  color: white;
  transform: translateY(-2px);
}

/* Casino Info Section */
.casino-info-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.casino-info-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.info-table-wrapper {
  overflow-x: auto;
}

.casino-info-table {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casino-info-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.casino-info-table td:first-child {
  font-weight: 600;
  background: #f8f9fa;
  width: 200px;
}

/* Mirrors Section */
.mirrors-section {
  padding: 60px 0;
  background: white;
}

.mirrors-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.mirrors-date {
  margin-bottom: 30px;
  color: #666;
  font-style: italic;
}

.mirrors-table-wrapper {
  overflow-x: auto;
}

.mirrors-table {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mirrors-table th,
.mirrors-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.mirrors-table th {
  background: #f8f9fa;
  font-weight: 600;
}

.status-online {
  color: #54b146;
  font-weight: 600;
}

.status-maintenance {
  color: #ff6b35;
  font-weight: 600;
}

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

.btn-disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

/* Winners Section */
.winners-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.winners-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.winners-list {
  display: grid;
  gap: 15px;
}

.winner-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.winner-item:hover {
  transform: translateY(-2px);
}

.winner-position {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 20px;
  width: 40px;
}

.winner-position.gold {
  color: #ffd700;
}

.winner-position.silver {
  color: #c0c0c0;
}

.winner-position.bronze {
  color: #cd7f32;
}

.winner-name {
  flex: 1;
  font-weight: 600;
}

.winner-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #54b146;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background: white;
}

.video-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Games Section */
.games-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.games-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.games-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

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

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

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

.game-card h3 {
  margin-bottom: 15px;
  color: #333;
}

/* Review Content Section */
.review-content-section {
  padding: 60px 0;
  background: white;
}

.review-content-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.content-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  color: #333;
  margin-bottom: 20px;
}

.content-wrapper p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

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

.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

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

.content-wrapper table th {
  background: #f8f9fa;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.faq-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0255c2;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Author Section */
.author-section {
  padding: 60px 0;
  background: white;
}

.author-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.author-card {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  gap: 30px;
}

.author-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 10px;
  color: #333;
}

.author-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.author-social {
  display: flex;
  gap: 15px;
}

.author-social a {
  color: #0255c2;
  text-decoration: none;
  font-weight: 500;
}

.author-social a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid #e0e0e0;
}

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

.footer-section h4 {
  margin-bottom: 20px;
  color: #333;
}

.footer-logo-img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-description {
  color: #666;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

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

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

.payment-methods,
.game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-methods img,
.game-providers img {
  height: 30px;
  width: auto;
  border-radius: 5px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}

.footer-legal p {
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.responsible-gaming {
  font-weight: 600;
  color: #ff6b35;
}

/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #54b146, #459a38);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
}

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

.widget-text {
  font-weight: 600;
}

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

.widget-btn:hover {
  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) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .author-card {
    flex-direction: column;
    text-align: center;
  }

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

  .floating-widget {
    bottom: 10px;
    right: 10px;
    padding: 12px 16px;
  }

  .widget-content {
    flex-direction: column;
    gap: 8px;
  }

  .widget-text {
    font-size: 12px;
  }
}

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

  .header-buttons {
    flex-direction: column;
    gap: 8px;
  }

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

/* WordPress-like elements for uniqueness */
.wp-block-group {
  margin-bottom: 20px;
}

.wp-block-columns {
  display: flex;
  gap: 20px;
}

.wp-block-column {
  flex: 1;
}

.elementor-widget-container {
  padding: 15px;
}

.yoast-breadcrumb {
  display: none;
}

/* Additional unique classes */
.casino-promo-banner {
  background: linear-gradient(45deg, #0255c2, #54b146);
  padding: 20px;
  border-radius: 10px;
  color: white;
  text-align: center;
  margin: 20px 0;
}

.slot-machine-animation {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bonus-highlight {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  color: #333;
}

.vip-badge {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}
