/*
Theme Name: Crypto LatAm Bet
Author: Web Developer
Version: 1.0
Description: Responsive theme for Crypto LatAm Bet
*/

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --bg-main: #0B0E14;
  --bg-card: #151A23;
  --bg-hover: #1E2532;
  --text-main: #F0F4F8;
  --text-muted: #8A99AD;
  --accent-primary: #4882ff;
  --accent-secondary: #FFB300;
  --accent-cyan: #00E5FF;
  --border-color: #232D3F;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Arimo', sans-serif;
  --container-width: 1240px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.2;
  font-weight: 700;
}

.site-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 14, 20, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-accent {
  color: var(--accent-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
}

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

.desktop-menu a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.desktop-menu a:hover {
  color: var(--accent-primary);
}

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

.search-btn, .burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  transition: background-color 0.2s, border-color 0.2s;
}

.search-btn:hover, .burger-btn:hover {
  background-color: var(--bg-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

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

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(11, 14, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.lightbox-overlay.is-active .lightbox-modal {
  transform: translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-hover);
  color: var(--text-muted);
  transition: color 0.2s, background-color 0.2s;
}

.lightbox-close:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-body {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 4px;
}

.lightbox-search-box form {
  display: flex;
  gap: 8px;
}

.lightbox-search-box input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
}

.lightbox-search-box input[type="search"]:focus {
  border-color: var(--accent-primary);
}

.lightbox-search-box input[type="submit"] {
  padding: 12px 20px;
  background-color: var(--accent-primary);
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: 8px;
  background-color: var(--bg-main);
}

.mobile-menu a:hover {
  color: var(--accent-primary);
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

.site-footer {
  margin-top: auto;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 24px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  background-color: #E53935;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .site-footer {
    padding: 30px 0 20px;
  }

  .footer-disclaimer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-main {
  padding: 32px 0 60px;
  flex: 1 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-primary);
}

.breadcrumbs .separator {
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text-main);
  font-weight: 600;
}

.page-header {
  margin-bottom: 32px;
}

.page-title {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.post-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.post-card-thumbnail {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-main);
}

.post-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-card-thumbnail img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.post-card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card-title a {
  color: #FFFFFF;
}

.post-card-title a:hover {
  color: var(--accent-primary);
}

.post-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.post-card-excerpt p {
  margin: 0;
}

.read-more {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-weight: 600;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background-color: var(--accent-primary);
  color: #000000;
  border-color: var(--accent-primary);
}

@media (max-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.single-post {
  max-width: 860px;
  margin: 0 auto 60px;
}

.single-header {
  margin-bottom: 32px;
}

.single-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(0, 230, 118, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge:hover {
  background-color: var(--accent-primary);
  color: #000000;
}

.single-title {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.author-info a {
  color: var(--accent-primary);
  font-weight: 700;
}

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

.meta-dot {
  opacity: 0.5;
}

.single-thumbnail {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.entry-content-isolated {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.7;
}

.entry-content-isolated > * + * {
  margin-top: 1.5em;
}

.entry-content-isolated h1,
.entry-content-isolated h2,
.entry-content-isolated h3,
.entry-content-isolated h4,
.entry-content-isolated h5,
.entry-content-isolated h6 {
  color: #FFFFFF;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.25;
}

.entry-content-isolated h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.entry-content-isolated h3 {
  font-size: 1.4rem;
}

.entry-content-isolated p {
  margin-bottom: 1.2em;
}

.entry-content-isolated img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.8em 0;
  display: block;
}

.entry-content-isolated a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.entry-content-isolated a:hover {
  color: var(--accent-cyan);
}

.entry-content-isolated ul,
.entry-content-isolated ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}

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

.entry-content-isolated table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.entry-content-isolated th,
.entry-content-isolated td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.entry-content-isolated th {
  background-color: var(--bg-hover);
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.entry-content-isolated blockquote {
  border-left: 4px solid var(--accent-primary);
  padding: 16px 20px;
  margin: 1.8em 0;
  background-color: var(--bg-card);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #FFFFFF;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.related-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.no-related {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .single-title {
    font-size: 1.8rem;
  }

  .entry-content-isolated {
    font-size: 1rem;
  }

  .entry-content-isolated table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.single-page {
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-thumbnail {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-links {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-weight: 600;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 40px;
}

.author-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.author-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-name {
  font-size: 1.8rem;
  margin: 4px 0 8px;
}

.author-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.author-bio-btn {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 1px dashed var(--accent-cyan);
  padding-bottom: 2px;
}

.author-bio-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.author-modal {
  max-width: 520px;
}

.author-lightbox-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.author-modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-primary);
}

.author-modal-name {
  font-size: 1.3rem;
  color: #FFFFFF;
}

.author-lightbox-content {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}

.archive-description {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .author-details {
    align-items: center;
  }
}

.search-header {
  margin-bottom: 40px;
}

.search-query {
  color: var(--accent-primary);
}

.search-page-form {
  margin-top: 20px;
  max-width: 500px;
}

.search-page-form form {
  display: flex;
  gap: 8px;
}

.search-page-form input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
}

.search-page-form input[type="search"]:focus {
  border-color: var(--accent-primary);
}

.search-page-form input[type="submit"] {
  padding: 12px 20px;
  background-color: var(--accent-primary);
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

.no-results-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.no-results-box h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.no-results-box p {
  color: var(--text-muted);
}

.error-404-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 680px;
  margin: 40px auto 60px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-primary);
  text-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
  margin-bottom: 12px;
}

.error-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.error-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 28px;
}

.error-actions {
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--accent-primary);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--accent-cyan);
  color: #000000;
  transform: translateY(-2px);
}

.error-search {
  width: 100%;
  max-width: 440px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.error-search p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.error-search form {
  display: flex;
  gap: 8px;
}

.error-search input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
}

.error-search input[type="search"]:focus {
  border-color: var(--accent-primary);
}

.error-search input[type="submit"] {
  padding: 12px 20px;
  background-color: var(--accent-primary);
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .error-code {
    font-size: 4.5rem;
  }

  .error-title {
    font-size: 1.6rem;
  }

  .error-404-box {
    padding: 40px 16px;
  }
}

/* Latest Posts Section */
.latest-posts-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-header-row h2 {
  font-size: 1.8rem;
  margin: 0 !important;
}

.view-all-link {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
}

.view-all-link:hover {
  color: var(--accent-cyan);
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recent-post-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.recent-post-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
}

.card-image-link {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.recent-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-title {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 16px !important;
}

.card-title a {
  color: #FFFFFF;
  text-decoration: none !important;
}

.card-read-more {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-decoration: none !important;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .latest-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-main-title { font-size: 1.8rem; }
  .crypto-hero-heroic { padding: 28px 20px; }
  .cta-box-premium { flex-direction: column; text-align: center; padding: 24px; }
  .cta-btn-action { width: 100%; }
  .latest-posts-grid { grid-template-columns: 1fr; }
  .faq-container-block { padding: 20px; }
}



.hero-section {
    position: relative;
    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    background-image: url('https://cryptolatambet.com/wp-content/uploads/crypto-betting-con-criptomonedas-scaled.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}

/* Dark gradient over image */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 18, 0.92) 0%,
            rgba(5, 8, 18, 0.78) 38%,
            rgba(5, 8, 18, 0.38) 70%,
            rgba(5, 8, 18, 0.18) 100%
        );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 100px 6vw;

    box-sizing: border-box;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 24px;

    font-size: clamp(42px, 5vw, 48px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;

    color: #ffffff;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 34px;

    font-size: clamp(17px, 1.5vw, 18px);
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

/* Primary button */
.hero-btn-primary {
    color: #ffffff;
    background: #1677ff;

    box-shadow: 0 10px 30px rgba(22, 119, 255, 0.25);
}

.hero-btn-primary:hover {
    background: #0868ed;
    box-shadow: 0 14px 35px rgba(22, 119, 255, 0.35);
}

/* Secondary button */
.hero-btn-secondary {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .hero-section {
        min-height: 600px;
        background-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 8, 18, 0.9) 0%,
                rgba(5, 8, 18, 0.68) 65%,
                rgba(5, 8, 18, 0.4) 100%
            );
    }

    .hero-content {
        padding: 80px 5vw;
    }

    .hero-content h1 {
        max-width: 650px;
    }

    .hero-content p {
        max-width: 560px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .hero-section {
        min-height: 620px;

        align-items: flex-end;

        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 8, 18, 0.25) 0%,
                rgba(5, 8, 18, 0.58) 42%,
                rgba(5, 8, 18, 0.94) 100%
            );
    }

    .hero-content {
        padding: 50px 22px 55px;
    }

    .hero-content h1 {
        margin-bottom: 18px;

        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.08;
        letter-spacing: -0.8px;
    }

    .hero-content p {
        margin-bottom: 26px;

        font-size: 16px;
        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        min-height: 52px;
        padding: 0 20px;
        box-sizing: border-box;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .hero-section {
        min-height: 580px;
    }

    .hero-content {
        padding: 40px 18px 45px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

.just-section {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

.just-text {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.65;
    margin-top: 12px;
    margin-bottom: 12px;
}

.just-h2 {
    font-size: 48px;
}

@media (max-width: 900px) {
    .just-h2 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .just-h2 {
        font-size: 34px;
    }    
}

@media (max-width: 380px) {
    .just-h2 {
        font-size: 32px;
    }    
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #4882ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}



.crypto-cta {
    position: relative;
    width: 100%;
    margin: 60px 0;
    padding: 60px 7%;
    box-sizing: border-box;

    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(72, 130, 255, 0.25);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(72, 130, 255, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 100%,
            rgba(72, 130, 255, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080d18 0%,
            #0b1324 50%,
            #080d18 100%
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.crypto-cta__glow {
    position: absolute;
    z-index: -1;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -150px;

    background: #4882ff;
    opacity: 0.12;

    filter: blur(90px);
    border-radius: 50%;
}


.crypto-cta__content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}


.crypto-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;

    color: #79a6ff;
}

.crypto-cta__label::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #4882ff;

    box-shadow: 0 0 14px #4882ff;
}


.crypto-cta h2 {
    max-width: 780px;

    margin: 0 0 18px;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    font-weight: 800;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 25%,
        #9dbfff 60%,
        #4882ff 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.crypto-cta p {
    max-width: 700px;

    margin: 0 0 30px;

    font-size: 17px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.68);
}


.crypto-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 56px;
    padding: 0 25px 0 28px;

    box-sizing: border-box;

    border-radius: 12px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #5c92ff 0%,
        #4882ff 50%,
        #326ee8 100%
    );

    font-size: 16px;
    font-weight: 800;
    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(72, 130, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.crypto-cta__button:hover {
    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 18px 40px rgba(72, 130, 255, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


.crypto-cta__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.16);

    font-size: 18px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.crypto-cta__button:hover .crypto-cta__arrow {
    transform: translateX(4px);
}



.crypto-cta__decoration {
    position: absolute;

    right: 7%;
    top: 50%;

    width: 170px;
    height: 170px;

    transform: translateY(-50%) rotate(45deg);

    opacity: 0.8;
}

.crypto-cta__decoration span {
    position: absolute;

    display: block;

    border: 1px solid rgba(72, 130, 255, 0.2);

    border-radius: 20px;
}

.crypto-cta__decoration span:nth-child(1) {
    inset: 0;
}

.crypto-cta__decoration span:nth-child(2) {
    inset: 22px;

    border-color: rgba(72, 130, 255, 0.28);
}

.crypto-cta__decoration span:nth-child(3) {
    inset: 48px;

    background: rgba(72, 130, 255, 0.08);
    border-color: rgba(72, 130, 255, 0.35);

    box-shadow:
        0 0 40px rgba(72, 130, 255, 0.15);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .crypto-cta {
        margin: 40px 0;
        padding: 40px 24px;

        border-radius: 18px;
    }

    .crypto-cta h2 {
        font-size: 31px;
        letter-spacing: -0.7px;
    }

    .crypto-cta p {
        font-size: 16px;
        line-height: 1.55;
    }

    .crypto-cta__button {
        width: 100%;
    }

    .crypto-cta__decoration {
        right: -80px;
        top: 20px;

        width: 140px;
        height: 140px;

        opacity: 0.35;
    }
}


.deposit-guide-section {
  margin: 40px 0;
}

.deposit-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.deposit-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
}

.crypto-warning-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 179, 0, 0.08);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-left: 4px solid #FFB300;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0 32px;
}

.crypto-warning-alert .alert-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.crypto-warning-alert p {
  margin: 0 !important;
  font-size: 0.98rem;
  color: #FFE082;
}

.deposit-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.deposit-step-card {
  background: linear-gradient(145deg, rgba(21, 26, 35, 0.9) 0%, rgba(15, 19, 26, 0.95) 100%);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deposit-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary, #00E676);
  box-shadow: 0 10px 25px rgba(0, 230, 118, 0.08);
}

.step-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-number-badge {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: #000000;
  background: linear-gradient(135deg, var(--accent-primary, #00E676) 0%, var(--accent-cyan, #00E5FF) 100%);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.2);
}

.step-card-header h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 !important;
}

.step-card-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted, #94A3B8);
  margin-bottom: 12px;
}

.step-card-body p:last-child {
  margin-bottom: 0;
}

.crypto-coins-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 16px;
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 !important;
}

.crypto-coins-list li {
  position: relative;
  padding-left: 24px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
}

.crypto-coins-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent-primary, #00E676);
  font-size: 0.75rem;
  top: 2px;
}

.step-footnote {
  font-size: 0.88rem !important;
  font-style: italic;
  color: var(--text-muted, #64748B) !important;
  margin-top: 8px;
}

.deposit-footer-note {
  background-color: var(--bg-card, #151A23);
  border: 1px dashed var(--border-color, rgba(255, 255, 255, 0.15));
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
}

.deposit-footer-note p {
  margin: 0 !important;
  font-size: 0.95rem;
  color: var(--text-muted, #94A3B8);
}

@media (max-width: 768px) {
  .deposit-step-card {
    padding: 20px;
  }
  .crypto-coins-list {
    grid-template-columns: 1fr;
  }
  .deposit-guide-section h2 {
    font-size: 1.6rem;
  }
}


.crypto-cta--deposit {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(72, 130, 255, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(72, 130, 255, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #080d18 0%,
            #0b1324 50%,
            #080d18 100%
        );
}



.crypto-cta--deposit .crypto-cta__label {
    color: #8eb4ff;
}

.crypto-cta--deposit .crypto-cta__label::before {
    background: #4882ff;
    box-shadow:
        0 0 10px #4882ff,
        0 0 20px rgba(72, 130, 255, 0.5);
}



.crypto-cta--deposit h2 {
    max-width: 700px;
}



.crypto-cta--deposit .crypto-cta__button {
    background: linear-gradient(
        135deg,
        #4882ff 0%,
        #3d75e8 100%
    );
}




.bonus-guide-section {
  margin: 40px 0;
}

.bonus-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.bonus-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
}

.checklist-intro-title {
  font-weight: 700;
  color: #FFFFFF !important;
  margin-top: 28px !important;
  margin-bottom: 16px !important;
}


.bonus-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}

.checklist-card {
  background: rgba(21, 26, 35, 0.8);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.checklist-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan, #00E5FF);
}

.checklist-num {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--accent-cyan, #00E5FF);
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.checklist-card p {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: #FFFFFF !important;
  line-height: 1.3;
}


.bonus-tip-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 28px 0 36px;
}

.bonus-tip-box .tip-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.bonus-tip-box p {
  margin: 0 !important;
  font-size: 0.98rem;
  color: #B9F6CA;
  font-weight: 500;
}


.freespins-card {
  margin-top: 32px;
  border-left: 4px solid var(--accent-cyan, #00E5FF);
}

.freespins-icon-badge {
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .bonus-checklist-grid {
    grid-template-columns: 1fr;
  }
  .bonus-guide-section h2 {
    font-size: 1.6rem;
  }
}




.crypto-cta--compact {
    position: relative;

    width: 100%;
    margin: 40px 0;
    padding: 32px 36px;

    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid rgba(72, 130, 255, 0.18);
    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            #090e19 0%,
            #0c1424 100%
        );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.2);
}


.crypto-cta--compact::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        #4882ff 30%,
        #7ba7ff 50%,
        #4882ff 70%,
        transparent 100%
    );

    opacity: 0.8;
}


.crypto-cta--compact::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -100px;

    border-radius: 50%;

    background: #4882ff;
    opacity: 0.08;

    filter: blur(55px);

    pointer-events: none;
}


.crypto-cta__compact-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}


.crypto-cta--compact .crypto-cta__label {
    margin-bottom: 12px;

    font-size: 11px;
    letter-spacing: 1.7px;
}


.crypto-cta--compact h2 {
    max-width: 700px;

    margin: 0 0 10px;

    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.5px;
}


.crypto-cta--compact p {
    max-width: 760px;

    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.64);
}


.crypto-cta--compact .crypto-cta__button {
    min-height: 46px;
    padding: 0 19px 0 21px;

    border-radius: 9px;

    font-size: 14px;

    box-shadow:
        0 8px 22px rgba(72, 130, 255, 0.2);
}


.crypto-cta--compact .crypto-cta__arrow {
    width: 24px;
    height: 24px;

    font-size: 16px;
}


/* Mobile */
@media (max-width: 600px) {

    .crypto-cta--compact {
        margin: 32px 0;
        padding: 28px 22px;

        border-radius: 14px;
    }

    .crypto-cta--compact h2 {
        font-size: 25px;
    }

    .crypto-cta--compact p {
        font-size: 15px;
        line-height: 1.55;
    }

    .crypto-cta--compact .crypto-cta__button {
        width: 100%;
    }
}





.games-guide-section {
  margin: 40px 0;
}

.games-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.games-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 12px;
}


.games-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.game-category-card {
  background: linear-gradient(145deg, rgba(21, 26, 35, 0.9) 0%, rgba(15, 19, 26, 0.95) 100%);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-category-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan, #00E5FF);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.08);
}


.game-category-card.featured-game {
  grid-column: 1 / -1;
  border-left: 4px solid var(--accent-primary, #00E676);
}

.game-category-card.crypto-exclusive {
  border-left: 4px solid var(--accent-cyan, #00E5FF);
}


.game-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.game-card-top h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 !important;
}

.game-type-badge {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-primary, #00E676);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.game-type-badge.live {
  background: rgba(255, 82, 82, 0.12);
  color: #FF5252;
  border-color: rgba(255, 82, 82, 0.25);
}

.game-type-badge.classic {
  background: rgba(255, 179, 0, 0.12);
  color: #FFB300;
  border-color: rgba(255, 179, 0, 0.25);
}

.game-type-badge.crypto {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-cyan, #00E5FF);
  border-color: rgba(0, 229, 255, 0.25);
}


.game-card-content p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted, #94A3B8);
  margin-bottom: 12px;
}

.game-card-content p:last-child {
  margin-bottom: 0;
}

.crypto-note-text {
  font-weight: 600;
  color: #FFFFFF !important;
  background: rgba(0, 229, 255, 0.05);
  border-left: 3px solid var(--accent-cyan, #00E5FF);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 14px !important;
}

@media (max-width: 992px) {
  .games-grid-container {
    grid-template-columns: 1fr;
  }
  .game-category-card.featured-game {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .game-category-card {
    padding: 20px;
  }
  .games-guide-section h2 {
    font-size: 1.6rem;
  }
}




.withdrawals-guide-section {
  margin: 40px 0;
}

.withdrawals-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.withdrawals-intro-block p,
.finance-management-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
}

.factors-intro-title {
  font-weight: 700;
  color: #FFFFFF !important;
  margin-top: 28px !important;
  margin-bottom: 16px !important;
}

.withdrawal-factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0 32px;
}

.factor-chip-card {
  background: rgba(21, 26, 35, 0.8);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.factor-chip-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary, #00E676);
}

.factor-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.factor-chip-card p {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: #FFFFFF !important;
  line-height: 1.3;
}

.btc-withdrawal-card {
  margin: 36px 0;
  border-left: 4px solid #FFB300;
}

.btc-withdrawal-card .step-number-badge {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #000000;
}

.finance-management-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

@media (max-width: 768px) {
  .withdrawal-factors-grid {
    grid-template-columns: 1fr;
  }
  .withdrawals-guide-section h2 {
    font-size: 1.6rem;
  }
}

.security-guide-section {
  margin: 40px 0;
}

.security-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.security-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
}

.security-grid-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .security-guide-section h2 {
    font-size: 1.6rem;
  }
}


.eth-guide-section {
  margin: 40px 0;
}

.eth-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.eth-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 12px;
}

.eth-highlight-card {
  margin-top: 28px;
  border-left: 4px solid var(--accent-cyan, #00E5FF);
}

.step-number-badge.eth-badge {
  background: linear-gradient(135deg, #627EEA 0%, #00E5FF 100%);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .eth-guide-section h2 {
    font-size: 1.6rem;
  }
}

.comparison-guide-section {
  margin: 40px 0;
}

.comparison-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.comparison-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .comparison-guide-section h2 {
    font-size: 1.6rem;
  }
}


.geo-guide-section {
  margin: 40px 0;
}

.geo-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.geo-intro-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .geo-guide-section h2 {
    font-size: 1.6rem;
  }
}


.faq-guide-section {
  margin: 40px 0;
}

.faq-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.faq-card {
  padding: 20px 24px;
}

.faq-card .step-card-header {
  margin-bottom: 12px;
}

.faq-summary-block {
  padding-top: 32px;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.faq-summary-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .faq-guide-section h2 {
    font-size: 1.6rem;
  }
  .faq-card {
    padding: 18px;
  }
}


.faq-guide-section {
  margin: 40px 0;
}

.faq-guide-section h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.faq-card {
  padding: 20px 24px;
}

.faq-card .step-card-header {
  margin-bottom: 12px;
}

.faq-summary-block {
  padding-top: 32px;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
}

.faq-summary-block p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-main, #E0E6ED);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .faq-guide-section h2 {
    font-size: 1.6rem;
  }
  .faq-card {
    padding: 18px;
  }
}


