/* Main Styles for Azino777 KZ */
:root {
  --color-header: #090111;
  --color-btn-login: #0b80dc;
  --color-btn-signup: #a8c94e;
  --color-bg: #020100;
  --color-text: #e8e8e8;
  --color-text-muted: #9a9a9a;
}

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

body {
  font-family: Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Header Styles */
.header-wrap {
  background: var(--color-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section a {
  display: inline-block;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-menu li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-menu li a:hover {
  color: var(--color-btn-login);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-login {
  background: var(--color-btn-login);
  color: #fff;
}

.btn-login:hover {
  background: #0a6bb8;
  transform: scale(1.05);
}

.btn-signup {
  background: var(--color-btn-signup);
  color: #000;
}

.btn-signup:hover {
  background: #92b344;
  transform: scale(1.05);
}

.online-counter {
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-text);
}

.online-counter .num {
  color: var(--color-btn-signup);
  font-weight: bold;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(2,1,0,0.8), rgba(2,1,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 40px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e8e8e8;
}

.hero-btn {
  background: var(--color-btn-signup);
  color: #000;
  padding: 15px 40px;
  font-size: 18px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(168,201,78,0.4);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168,201,78,0.6);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--color-btn-login);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--color-text-muted);
  margin: 0 8px;
}

/* Content Blocks */
.content-block {
  background: rgba(9,1,17,0.5);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.content-block h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--color-btn-signup);
}

.content-block h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-text);
}

/* Pros and Cons */
.pros-cons-wrapper {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.pros-column,
.cons-column {
  flex: 1;
  background: rgba(0,0,0,0.3);
  padding: 25px;
  border-radius: 8px;
}

.pros-column {
  border-left: 4px solid #4caf50;
}

.cons-column {
  border-left: 4px solid #f44336;
}

.pros-column h3 {
  color: #4caf50;
}

.cons-column h3 {
  color: #f44336;
}

.pros-column ul,
.cons-column ul {
  list-style: none;
  padding-left: 0;
}

.pros-column li,
.cons-column li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.pros-column li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

.cons-column li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
  font-size: 18px;
}

/* Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.screenshot-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

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

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

/* Tournaments */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.tournament-card {
  background: linear-gradient(135deg, rgba(11,128,220,0.2), rgba(168,201,78,0.2));
  padding: 25px;
  border-radius: 10px;
  border: 2px solid rgba(11,128,220,0.3);
  transition: all 0.3s;
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-btn-login);
}

.tournament-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-btn-signup);
}

.tournament-card p {
  margin-bottom: 15px;
  color: var(--color-text-muted);
}

.tournament-timer {
  background: rgba(0,0,0,0.4);
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.tournament-prize {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-btn-signup);
  text-align: center;
}

/* Video Block */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 20px;
}

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

/* Wheel of Fortune */
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.wheel-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  margin-bottom: 30px;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid var(--color-btn-signup);
  position: relative;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 0 30px rgba(168,201,78,0.5);
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-arrow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #ff0000;
  z-index: 10;
}

.spin-btn {
  background: var(--color-btn-signup);
  color: #000;
  padding: 15px 50px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  text-transform: uppercase;
}

.spin-btn:hover {
  background: #92b344;
  transform: scale(1.05);
}

.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wheel-result {
  margin-top: 30px;
  text-align: center;
  min-height: 100px;
}

.wheel-result.show {
  animation: fadeInUp 0.5s;
}

.wheel-result h3 {
  font-size: 28px;
  color: var(--color-btn-signup);
  margin-bottom: 15px;
}

.claim-bonus-btn {
  background: var(--color-btn-login);
  color: #fff;
  padding: 12px 40px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  transition: all 0.3s;
}

.claim-bonus-btn:hover {
  background: #0a6bb8;
  transform: scale(1.05);
}

/* Author Block */
.author-block {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: rgba(0,0,0,0.3);
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

.author-photo {
  flex-shrink: 0;
}

.author-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-btn-login);
}

.author-info h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-btn-signup);
}

.author-bio {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

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

.author-socials a {
  color: var(--color-btn-login);
  font-size: 24px;
  transition: all 0.3s;
}

.author-socials a:hover {
  color: var(--color-btn-signup);
  transform: scale(1.2);
}

/* Footer */
.footer-wrap {
  background: var(--color-header);
  margin-top: auto;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo img {
  height: 45px;
}

.footer-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-menu li a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: var(--color-text);
}

.payment-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-providers img {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

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

.game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.game-providers span {
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-legal {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.8;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-btn-login), var(--color-btn-signup));
  padding: 15px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  animation: slideUp 0.5s;
}

.widget-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
}

.widget-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.widget-text span {
  color: #000;
}

.widget-btn {
  background: #000;
  color: #fff;
  padding: 12px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 16px;
}

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

/* Slider for mobile */
.mobile-slider {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Content styling */
.main-content {
  line-height: 1.8;
}

.main-content p {
  margin-bottom: 15px;
}

.main-content ul,
.main-content ol {
  margin-left: 30px;
  margin-bottom: 15px;
}

.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background: rgba(0,0,0,0.3);
}

.main-content table th,
.main-content table td {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: left;
}

.main-content table th {
  background: rgba(11,128,220,0.3);
  font-weight: bold;
}

.main-content h2,
.main-content h3,
.main-content h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Unused styles for uniqueness */
.elementor-widget-container {display: none;}
.wp-block-image {display: none;}
.yoast-schema-graph {display: none;}
.wpcf7-form {display: none;}
.wp-caption-text {display: none;}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-header);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  
  .tournaments-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshots-grid,
  .tournaments-grid {
    display: block;
  }
  
  .mobile-slider {
    display: block;
    overflow-x: auto;
    display: flex;
    gap: 15px;
    padding: 10px 0;
  }
  
  .mobile-slider .screenshot-item,
  .mobile-slider .tournament-card {
    min-width: 280px;
    flex-shrink: 0;
  }
  
  .pros-cons-wrapper {
    flex-direction: column;
  }
  
  .hero-content h2 {
    font-size: 32px;
  }
  
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .wheel-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media screen and (max-width: 576px) {
  .header-actions {
    gap: 8px;
  }
  
  .btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  .online-counter {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .hero-content h2 {
    font-size: 24px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .widget-content {
    justify-content: center;
    text-align: center;
  }
  
  .widget-text {
    font-size: 14px;
  }
}

/* =========================
   OB container (review/overview)
   ========================= */

.container.ob{
    width: 100%;
    max-width: 980px;
    margin: 24px auto 56px;
    padding: 30px 30px;

    background: rgba(9, 1, 17, 0.55);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.38);

    color: #e8e8e8;
    font-size: 16px;
    line-height: 1.9;

    overflow-wrap: anywhere;
    word-break: break-word;
}

/* paragraphs */
.container.ob p{
    margin: 0 0 16px;
    color: #cfcfcf;
}

/* headings */
.container.ob h1,
.container.ob h2,
.container.ob h3{
    margin: 28px 0 14px;
    line-height: 1.25;
}

.container.ob h1{
    font-size: 40px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.container.ob h2{
    font-size: 28px;
    color: #a8c94e;
    position: relative;
    padding-bottom: 10px;
}

.container.ob h2::after{
    content: "";
    display: block;
    width: 84px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, #a8c94e 0%, rgba(168,201,78,0) 100%);
}

.container.ob h3{
    font-size: 20px;
    color: #0b80dc;
}

/* links */
.container.ob a{
    color: #0b80dc;
    text-decoration: none;
    border-bottom: 1px dashed rgba(11,128,220,.55);
    transition: color .2s ease, border-color .2s ease;
}
.container.ob a:hover{
    color: #a8c94e;
    border-bottom-color: rgba(168,201,78,.75);
}

.container.ob strong{ color: #fff; }

/* lists */
.container.ob ul,
.container.ob ol{
    margin: 10px 0 18px 22px;
    padding: 0;
    color: #cfcfcf;
}

.container.ob li{
    margin: 0 0 10px;
}

.container.ob ul li::marker{ color: #a8c94e; }
.container.ob ol li::marker{ color: #0b80dc; font-weight: 800; }

/* “useful links” list a bit more card-like */
.container.ob ul li a{
    display: inline;
}

.container.ob h3 + ul{
    margin-top: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(168,201,78,.14);
    background: rgba(0,0,0,.18);
}

/* optional callout (якщо захочеш виділяти важливе) */
.container.ob .ob-callout{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #a8c94e;
    background: rgba(168,201,78,.08);
    border-radius: 12px;
}

/* tables if appear */
.container.ob table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: rgba(9, 1, 17, 0.65);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 12px;
    overflow: hidden;
}
.container.ob th,
.container.ob td{
    padding: 12px 14px;
    border: 1px solid rgba(168, 201, 78, 0.16);
    text-align: left;
}
.container.ob th{
    background: rgba(168, 201, 78, 0.12);
    color: #a8c94e;
    font-weight: 900;
}

/* =========================
   Mobile adaptation
   ========================= */

@media (max-width: 1024px){
    .container.ob{
        max-width: 900px;
        margin: 20px auto 48px;
    }
}

@media (max-width: 768px){
    .container.ob{
        margin: 16px 12px 44px;
        padding: 18px 16px;
        border-radius: 14px;
        font-size: 15.5px;
        line-height: 1.85;
    }

    .container.ob h1{ font-size: 30px; }
    .container.ob h2{ font-size: 22px; }
    .container.ob h3{ font-size: 18px; }

    .container.ob ul,
    .container.ob ol{ margin-left: 18px; }

    .container.ob h3 + ul{
        padding: 12px 12px;
    }
}

@media (max-width: 480px){
    .container.ob{
        margin: 14px 10px 40px;
        padding: 16px 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .container.ob h1{ font-size: 26px; }
    .container.ob h2{ font-size: 20px; }
    .container.ob h2::after{ width: 56px; }

    /* tables scroll on tiny screens */
    .container.ob table{
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}
