/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Variables */
:root {
  --x-a3b7c9-primary-color: #0255c2;
  --x-a3b7c9-secondary-color: #54b146;
  --x-a3b7c9-bg-color: #f5f5f5;
  --x-a3b7c9-text-color: #333;
  --x-a3b7c9-light-text: #ffffff;
  --x-a3b7c9-card-bg: #ffffff;
}

/* Base styles */
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--x-a3b7c9-bg-color);
  color: var(--x-a3b7c9-text-color);
  line-height: 1.7;
}

.x-a3b7c9-wrapper {
  overflow-x: hidden;
}

/* Header */
.x-a3b7c9-header {
  transition: all 0.3s ease-in-out;
}
.x-a3b7c9-header .navbar-brand img {
  transition: transform 0.3s ease;
}
.x-a3b7c9-header .navbar-brand:hover img {
  transform: scale(1.05);
}

/* Buttons */
.x-a3b7c9-btn-login {
  background-color: var(--x-a3b7c9-primary-color);
  color: var(--x-a3b7c9-light-text) !important;
  border: none;
}
.x-a3b7c9-btn-login:hover {
  background-color: #02449e;
}
.x-a3b7c9-btn-register {
  background-color: var(--x-a3b7c9-secondary-color);
  color: var(--x-a3b7c9-light-text) !important;
  border: none;
}
.x-a3b7c9-btn-register:hover {
  background-color: #4aa03d;
}

/* Hero Section */
.x-a3b7c9-hero-section {
  background: url("/images/slottica-casino-banner.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.x-a3b7c9-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.x-a3b7c9-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Sections */
.x-a3b7c9-section {
  padding: 60px 15px;
}

/* Cards */
.x-a3b7c9-card {
  background-color: var(--x-a3b7c9-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  height: 100%;
  border: 1px solid #eee;
}
.x-a3b7c9-card-title {
  color: var(--x-a3b7c9-primary-color);
  margin-bottom: 15px;
}

/* Bonus Section */
.x-a3b7c9-bonus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Game Cards */
.x-a3b7c9-game-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: var(--x-a3b7c9-card-bg);
  transition: transform 0.2s ease-in-out;
}
.x-a3b7c9-game-card:hover {
  transform: translateY(-5px);
}
.x-a3b7c9-game-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.x-a3b7c9-game-info {
  padding: 10px;
}
.x-a3b7c9-game-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Review Content Styling */
.x-a3b7c9-review-content h1,
.x-a3b7c9-review-content h2,
.x-a3b7c9-review-content h3 {
  color: var(--x-a3b7c9-primary-color);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
.x-a3b7c9-review-content p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.x-a3b7c9-review-content ul,
.x-a3b7c9-review-content ol {
  padding-left: 20px;
  margin-bottom: 1em;
}
.x-a3b7c9-review-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  text-align: left;
}
.x-a3b7c9-review-content th,
.x-a3b7c9-review-content td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.x-a3b7c9-review-content th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* FAQ */
.accordion-button:not(.collapsed) {
  color: var(--x-a3b7c9-light-text);
  background-color: var(--x-a3b7c9-primary-color);
}

/* Footer */
.x-a3b7c9-footer a {
  color: var(--x-a3b7c9-primary-color);
}
.x-a3b7c9-footer a:hover {
  text-decoration: underline !important;
}
.x-a3b7c9-payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.x-a3b7c9-payment-logos img {
  height: 25px;
}

/* Sticky Widget */
.x-a3b7c9-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--x-a3b7c9-primary-color) 0%, #023e8a 100%);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  animation: x-a3b7c9-slide-up 0.5s ease-out;
}

@keyframes x-a3b7c9-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Unused styles for uniqueness */
.x-a3b7c9-unused-class {
  border: 1px dotted #ccc;
  opacity: 0.5;
}
#id-a3b7c9-legacy-element {
  color: gray;
}
