/* 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;
}

/* WordPress-like elements for uniqueness */
.wp-block-group,
.wp-block-columns,
.elementor-section,
.yoast-breadcrumb {
  display: none;
}

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

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

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 20px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  gap: 30px;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  color: #0255c2;
}

.header-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #0255c2;
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #54b146;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

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

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

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

.btn-primary:hover {
  background: #4a9c3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(84, 177, 70, 0.3);
}

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

.btn-secondary:hover {
  background: #024ba8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(2, 85, 194, 0.3);
}

.btn-bonus {
  background: linear-gradient(135deg, #54b146, #4a9c3d);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-bonus:hover::before {
  left: 100%;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Breadcrumbs */
.breadcrumbs-section {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #0255c2;
  text-decoration: none;
}

.breadcrumbs .separator {
  color: #999;
}

.breadcrumbs .current {
  color: #666;
}

/* Hero Section */
.banner-main {
  background: linear-gradient(135deg, #0255c2, #024ba8);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.banner-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/banner.jpeg") center / cover;
  opacity: 0.1;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.banner-buttons {
  display: flex;
  gap: 20px;
}

/* Slot Game Demo */
.slot-machine {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #333;
}

.slot-reels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.reel {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border: 3px solid #0255c2;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.reel.spinning {
  animation: spin 0.5s ease-in-out;
}

@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.spin-btn {
  background: linear-gradient(135deg, #54b146, #4a9c3d);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
}

.win-message {
  background: linear-gradient(135deg, #54b146, #4a9c3d);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #0255c2, #54b146);
  border-radius: 2px;
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.advantage-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #0255c2;
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.advantage-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.advantage-card p {
  color: #666;
  line-height: 1.6;
}

/* Screenshots Section */
.screenshots-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.screenshot-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Jackpots Section */
.jackpots-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0255c2, #024ba8);
  color: white;
}

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

.jackpot-amount {
  font-size: 4rem;
  font-weight: 700;
  color: #54b146;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(84, 177, 70, 0.5);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(84, 177, 70, 0.8);
  }
}

.winners-list h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.winners-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.winner-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.winner-row:last-child {
  border-bottom: none;
}

/* Bonuses Section */
.bonuses-section {
  padding: 80px 0;
  background: #ffffff;
}

.bonuses-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bonus-card:hover {
  transform: translateY(-10px);
  border-color: #54b146;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bonus-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #54b146;
  margin-bottom: 15px;
}

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

/* Demo Game Section */
.demo-game-section {
  padding: 80px 0;
  background: #f5f5f5;
}

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

.demo-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-info {
  text-align: center;
}

.demo-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.demo-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

/* Review Section */
.review-section {
  padding: 80px 0;
  background: #ffffff;
}

.review-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.review-content p {
  margin-bottom: 20px;
  color: #666;
}

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

.review-content li {
  margin-bottom: 10px;
  color: #666;
}

.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
}

.review-content th,
.review-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.review-content th {
  background: #0255c2;
  color: white;
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info h4 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

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

.review-card p {
  color: #666;
  line-height: 1.6;
}

/* Review Form */
.review-form-section {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-form-section h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

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

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

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

/* Author Section */
.author-section {
  padding: 80px 0;
  background: #ffffff;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

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

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

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

.author-social a:hover {
  color: #024ba8;
}

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

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

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

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

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

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

.footer-nav 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;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-methods img:hover,
.game-providers img:hover {
  opacity: 1;
}

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

.copyright p {
  color: #666;
  margin-bottom: 10px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #999;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.widget-content {
  background: linear-gradient(135deg, #54b146, #4a9c3d);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(84, 177, 70, 0.4);
  transition: transform 0.3s ease;
}

.widget-content:hover {
  transform: scale(1.05);
}

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

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

.widget-btn:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .banner-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .jackpots-content,
  .demo-game-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .widget-content {
    padding: 12px 16px;
    border-radius: 40px;
  }

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

  .screenshots-slider {
    grid-template-columns: 1fr;
  }

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

  .bonuses-slider {
    grid-template-columns: 1fr;
  }

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

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

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

  .jackpot-amount {
    font-size: 2.5rem;
  }

  .banner-text h1 {
    font-size: 1.8rem;
  }

  .slot-reels {
    gap: 10px;
  }

  .reel {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Additional unique styles for WordPress-like appearance */
.wp-content-wrapper,
.elementor-widget-container,
.yoast-schema-graph {
  display: none;
}

.site-header,
.site-footer,
.entry-content {
  /* Hidden WordPress-like classes */
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-up {
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover effects */
.hover-lift:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(2, 85, 194, 0.3);
  transition: box-shadow 0.3s ease;
}
