* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0b1120;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
header {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #334155;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.8), transparent);
    border-radius: 0 0 20px 20px;
}
.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-wrap img {
    max-width: 100%;
}
.header-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(239, 68, 68, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(239, 68, 68, 0.32);
    filter: brightness(1.05);
}
.header-cta:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.24);
}
.header-cta:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.45);
    outline-offset: 3px;
}
.site-logo {
    height: 166px;
    border-radius: 10px;
}
h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 10px;
    border: 3px solid #fbbf24;
    display: inline-block;
    padding: 10px 30px;
    background: rgba(15, 23, 42, 0.9);
    border-image: linear-gradient(to right, #b45309, #fbbf24, #b45309) 1;
}
.subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-top: 15px;
}
section {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
}
h2 {
    font-size: 1.8rem;
    color: #f8fafc;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ef4444;
    display: inline-block;
    position: relative;
}
h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fbbf24;
}
p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #cbd5e1;
}
.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b45309, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
    border: 3px solid #fcd34d;
}
.icon-box svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
    stroke-width: 2.5;
}
ul {
    list-style: none;
    padding-left: 0;
}
ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
ul li::before {
    content: '•';
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.step-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #fbbf24;
    border-radius: 0 4px 4px 0;
}
.step-number {
    font-weight: 900;
    color: #fbbf24;
    margin-right: 10px;
}
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.casino-card {
    background: linear-gradient(180deg, #1e293b, #0f172a);
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.casino-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}
.casino-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 10px;
}
details {
    background: rgba(255,255,255,0.05);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}
summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #fbbf24;
    background: rgba(0,0,0,0.2);
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    content: '+';
    float: right;
    font-weight: bold;
}
details[open] summary::after {
    content: '-';
}
.faq-content {
    padding: 15px;
    border-top: 1px solid #334155;
    font-size: 0.95rem;
}
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid #334155;
    background: #020617;
    color: #64748b;
    font-size: 0.9rem;
}
.box {
    margin-bottom: 30px;
}
.spoiler-list {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid #334155;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.spoiler-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: rgba(30, 41, 59, 0.6);
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fbbf24;
    text-align: left;
    transition: background 0.2s;
}
.spoiler-btn:hover {
    background: rgba(30, 41, 59, 0.9);
}
.spoiler-btn .arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.25s ease;
}
.spoiler-list.is-open .spoiler-btn .arrow {
    transform: rotate(180deg);
}
.spoiler-list-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.spoiler-list.is-open .spoiler-list-content {
    max-height: 600px;
}
.spoiler-list-content ol {
    list-style: decimal;
    padding: 16px 20px 20px 40px;
    margin: 0;
    border-top: 1px solid #334155;
}
.spoiler-list-content li {
    padding: 6px 0;
    padding-left: 0;
}
.spoiler-list-content li::before {
    display: none;
}
.spoiler-list-content a {
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.spoiler-list-content a:hover {
    color: #fbbf24;
}
.language-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}
.language-selector {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 36px 10px 14px;
    background: rgba(15, 23, 42, 0.95);
    color: #e2e8f0;
    border: 2px solid #334155;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.language-selector:hover {
    border-color: #fbbf24;
    box-shadow: 0 2px 12px rgba(251, 191, 36, 0.2);
}
.language-selector:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
}
.language-selector option {
    background: #0f172a;
    color: #e2e8f0;
    padding: 10px;
}
@media (max-width: 768px) {
    header {
        padding: 24px 12px 18px;
        margin-bottom: 24px;
    }
    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: 0.8px;
        padding: 10px 14px;
        word-break: break-word;
    }
    h2 {
        font-size: 1.35rem;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding: 10px;
    }
    section {
        padding: 16px;
        margin-bottom: 20px;
    }
    .spoiler-btn {
        padding: 12px 14px;
    }
    .spoiler-list-content ol {
        padding: 14px 16px 16px 28px;
    }
    .demo-frame {
        margin: 16px auto 24px;
        border-radius: 10px;
    }
    .author-box {
        margin: 30px 0;
        padding: 16px;
    }
    .author-box-inner {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    .author-avatar img {
        width: 88px;
        height: 88px;
    }
    .pros-cons-wrapper {
        grid-template-columns: 1fr;
    }
    .play-real-wrapper {
        margin: 18px 0 24px;
    }
    .site-logo {
        height: 120px;
    }
    .header-cta-wrap {
        margin-top: 18px;
        padding: 0 8px;
    }
    .header-cta {
        width: 100%;
        max-width: 280px;
        min-width: 0;
        padding: 13px 22px;
    }
    .language-container {
        position: static;
        margin: 0 auto 14px;
        text-align: center;
    }
    .language-selector {
        width: 100%;
        max-width: 280px;
    }
    .site-footer {
      margin-top: 28px;
      padding: 24px 14px;
    }
    .site-footer p {
      font-size: 13px;
    }
    .footer-links,
    .footer-topics {
      gap: 8px;
      margin-bottom: 16px;
    }
    .footer-links a,
    .footer-topics span {
      width: 100%;
      min-height: 0;
      padding: 10px 14px;
      font-size: 12px;
    }
}
.highlight-yellow { color: #fbbf24; font-weight: bold; }
.highlight-red { color: #ef4444; font-weight: bold; }
.highlight-green { color: #22c55e; font-weight: bold; }
.site-footer {
  margin-top: 60px;
  padding: 40px 20px 34px;
  background:
    radial-gradient(circle at top, rgba(251, 191, 36, 0.08), transparent 38%),
    linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  text-align: center;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.site-footer p {
  margin: 10px 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links,
.footer-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0 0 20px;
}

.footer-links a,
.footer-topics span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.3;
}

.footer-links a {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.footer-heading {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-text-strong {
  color: #f8fafc;
}

.footer-disclaimer {
  color: #94a3b8;
}

.footer-responsible {
  color: #f8fafc;
  font-weight: 500;
}
.author-box {
  margin: 60px 0;
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.author-box-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pros-cons-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pros,
.cons {
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 18px;
}

.pros h3,
.cons h3 {
  margin-bottom: 12px;
}

.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #e2e8f0, 0 6px 18px rgba(0,0,0,0.1);
}

.author-content {
  flex: 1;
  color: #1e293b;
  line-height: 1.6;
}

.author-content p {
  color: #334155;
  margin: 10px 0;
}

.author-content h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-weight: 600;
}

.author-label {
  font-size: 14px;
  color: #475569;
  margin-bottom: 5px;
}

.author-content ul {
  margin: 10px 0 15px;
  padding-left: 20px;
  color: #334155;
}

.author-content li {
  margin-bottom: 6px;
}

.author-dates {
  font-size: 13px;
  color: #64748b;
  margin-top: 15px;
}
.author-box h2 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}
.demo-frame {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 30px auto 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  background: #000;
}

.demo-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.play-real-wrapper {
  text-align: center;
  margin: 25px 0 35px;
}

.play-real-btn.gocasino {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
  line-height: 1;
}

.play-real-btn.gocasino:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.play-real-btn.gocasino:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.play-real-btn.gocasino:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

@media (max-width: 480px) {
  .container {
    padding: 8px;
  }
  h1 {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    border-width: 2px;
  }
  h2 {
    font-size: 1.2rem;
  }
  section {
    padding: 14px;
  }
  .spoiler-list-content a {
    font-size: 0.9rem;
  }
  .site-logo {
    height: 86px;
  }
  .header-cta {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .play-real-btn.gocasino {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}
