/* ===================================
   CASINO DETAIL V2 - Matching Site Design
   Uses exact same styles as cryptogambling.com
   =================================== */

/* ===================================
   ICON SYSTEM
   =================================== */
.v2-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-icon svg {
  width: 100%;
  height: 100%;
}

.v2-crypto-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.v2-crypto-icon-text,
.v2-fiat-icon {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.icon-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ===================================
   BASE LAYOUT
   =================================== */
.casino-v2 {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-primary);
}

.casino-v2-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* ===================================
   HERO SECTION - Matches content-hero
   =================================== */
.v2-hero {
  padding: 56px 20px 48px;
  background: linear-gradient(180deg, #f9f9f9, transparent);
  text-align: center;
}

@media (min-width: 768px) {
  .v2-hero {
    padding: 56px 40px 48px;
  }
}

@media (max-width: 767px) {
  .v2-hero {
    padding: 30px 20px 24px;
  }
}

.v2-hero-bg {
  display: none;
}

.v2-hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .v2-hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.v2-hero-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .v2-hero-logo-section {
    flex-direction: row;
    gap: 24px;
  }
}

.v2-hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .v2-hero-logo {
    width: 160px;
    height: 160px;
  }
}

.v2-hero-info {
  text-align: center;
}

@media (min-width: 768px) {
  .v2-hero-info {
    text-align: left;
  }
}

.v2-hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  margin: 0 0 8px 0;
}

@media (min-width: 768px) {
  .v2-hero-title {
    font-size: 48px;
  }
}

.v2-hero-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .v2-hero-subtitle {
    font-size: 18px;
  }
}

.v2-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

@media (min-width: 768px) {
  .v2-hero-badges {
    justify-content: flex-start;
  }
}

.v2-hero-crypto-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}

@media (min-width: 768px) {
  .v2-hero-crypto-strip {
    justify-content: flex-start;
  }
}

.v2-hero-crypto {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 10px 4px 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  backdrop-filter: blur(4px);
}

.v2-hero-crypto .v2-crypto-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-hero-crypto-name {
  font-size: 12px;
  line-height: 1;
}

.v2-hero-crypto--more {
  padding: 4px 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
}

.v2-badge--crypto,
.v2-badge--verified {
  background: var(--color-white);
  color: var(--color-dark);
}

.v2-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .v2-hero-cta {
    align-items: flex-end;
  }
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #eeb220, #f6ba23);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(238, 178, 32, 0.4);
}

.v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 178, 32, 0.5);
}

.v2-hero-link {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===================================
   RATINGS ROW
   =================================== */
.v2-ratings-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px;
  max-width: var(--container-max-width);
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .v2-ratings-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 40px;
    margin-bottom: 48px;
  }
}

.v2-rating-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.v2-rating-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.v2-rating-card-value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #eeb220, #f6ba23);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-rating-card-value.excellent,
.v2-rating-card-value.good,
.v2-rating-card-value.average,
.v2-rating-card-value.poor {
  background: linear-gradient(135deg, #eeb220, #f6ba23);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-rating-card-info-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 4px 0;
  word-break: break-word;
}

.v2-rating-card-link {
  color: var(--color-primary, #2563eb);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  word-break: break-all;
  transition: color 0.15s ease;
}

.v2-rating-card-link:hover {
  color: var(--color-primary-dark, #1d4ed8);
  text-decoration: underline;
}

.v2-rating-card-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ===================================
   PROS & CONS (Sidebar Box)
   =================================== */
.v2-pros-cons-box .v2-pros-label,
.v2-pros-cons-box .v2-cons-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.v2-pros-list,
.v2-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-pros-list li,
.v2-cons-list li {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
}

.v2-pros-list li strong,
.v2-cons-list li strong {
  color: inherit;
  font-weight: 600;
}

.v2-pros-list li::before {
  content: '+';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  width: 14px;
}

.v2-cons-list li::before {
  content: '−';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  width: 14px;
}

/* Checkmark takeaway lists (✓ items in review content) */
.v2-check-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.v2-check-list .v2-check-item {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  text-align: left;
}

.v2-check-list .v2-check-item::before {
  content: '→ ';
  color: var(--color-text-muted, #999);
  font-weight: 400;
}

.v2-check-list .v2-check-item strong {
  color: inherit;
  font-weight: 700;
}

.v2-check-list p {
  display: none; /* Hide stray paragraphs inside list */
}

/* ===================================
   SECTIONS CONTAINER
   =================================== */
.v2-sections-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px 60px;
}

@media (min-width: 768px) {
  .v2-sections-container {
    padding: 0 40px 80px;
  }
}

/* ===================================
   TWO-COLUMN SECTIONS
   =================================== */
.v2-section-2col {
  margin-bottom: 48px;
}

.v2-section-2col:last-child {
  margin-bottom: 0;
}

.v2-section-2col-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .v2-section-2col-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.v2-section-2col-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .v2-section-2col-grid {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }
}

.v2-section-2col-content {
  order: 1;
}

.v2-section-2col-data {
  order: 2;
}

/* ===================================
   CONTENT TYPOGRAPHY
   =================================== */
.v2-section-2col-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .v2-section-2col-content p {
    font-size: 18px;
  }
}

.v2-section-2col-content p:last-child {
  margin-bottom: 0;
}

.v2-section-2col-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 32px 0 16px 0;
}

@media (min-width: 768px) {
  .v2-section-2col-content h3 {
    font-size: 22px;
  }
}

.v2-section-2col-content h3:first-child {
  margin-top: 0;
}

.v2-section-2col-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 24px 0 12px 0;
}

.v2-section-2col-content strong {
  color: var(--color-dark);
  font-weight: 600;
}

.v2-section-2col-content ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.v2-section-2col-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .v2-section-2col-content li {
    font-size: 18px;
  }
}

/* ===================================
   BOTTOM LINE SECTION
   =================================== */
.v2-bottom-line {
  margin-top: 48px;
}

.v2-bottom-line-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* ===================================
   BONUS CARDS
   =================================== */
.v2-bonus-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-bonus-cards {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .v2-bonus-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.v2-bonus-content {
  margin-top: 24px;
}

.v2-bonus-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(238, 178, 32, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.v2-bonus-card__header {
  background: rgba(238, 178, 32, 0.1);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #eeb220;
  text-align: center;
}

.v2-bonus-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.v2-bonus-card__match {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.v2-bonus-card__spins {
  font-size: 15px;
  font-weight: 600;
  color: #eeb220;
}

.v2-bonus-card__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-bonus-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-bonus-detail__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.45);
}

.v2-bonus-detail__value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.v2-bonus-card__maximize {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.v2-bonus-card__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.v2-bonus-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, #eeb220 0%, #d4a017 100%);
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.v2-bonus-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(238, 178, 32, 0.3);
}

.v2-bonus-terms {
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.v2-bonus-terms__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.v2-bonus-terms__text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ===================================
   DATA BOX
   =================================== */
.v2-data-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (min-width: 900px) {
  .v2-data-box {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

.v2-data-box-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.v2-data-box-section:first-child {
  padding-top: 0;
  border-top: none;
}

.v2-data-box-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin: 0;
}

.v2-data-box-label.warning {
  color: var(--color-text-muted);
}

/* Data Stats */
.v2-data-box-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v2-data-box-stats.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Stats - Clean inline display */
.v2-data-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-data-stat.large {
  text-align: center;
  padding: 12px 0;
}

.v2-data-stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--color-text-muted);
}

.v2-data-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.v2-data-stat.large .v2-data-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #eeb220;
}

.v2-data-stat-value.highlight,
.v2-data-stat-value.positive,
.v2-data-stat-value.link {
  color: var(--color-dark);
}

/* Payment Methods - Simple text list */
.v2-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  line-height: 1.6;
}

.v2-payment-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-dark);
}

.v2-payment-icon-symbol {
  font-size: 14px;
  opacity: 0.7;
}

.v2-payment-icon-name {
  font-weight: 500;
}

.v2-payment-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Crypto Tags - Icon with name */
.v2-crypto-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.v2-crypto-tag-name {
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Payment Method Tags */
.v2-payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v2-payment-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Info Grid - Key/value pairs */
.v2-info-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.v2-info-label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.v2-info-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.v2-info-value.highlight {
  color: #22c55e;
}

/* Payout speed breakdown rows */
.v2-info-row-header {
  border-bottom: none;
  padding-bottom: 2px;
}

.v2-info-row-sub {
  padding-left: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.v2-info-row-sub:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-info-label-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* Provider Tags - Simple comma-separated */
.v2-provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.v2-provider-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
}

.v2-provider-tag:not(:last-child)::after {
  content: ",";
  color: var(--color-text-muted);
}

.v2-provider-tag.more {
  color: var(--color-text-muted);
}

.v2-provider-tag.more::after {
  content: none;
}

/* Feature Items - Clean list */
.v2-data-box-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.v2-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.v2-feature-item.active {
  color: var(--color-dark);
}

.v2-feature-icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

/* Security Features - Clean list */
.v2-security-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.v2-security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.v2-security-item.active {
  color: var(--color-dark);
}

.v2-security-icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

/* Tag Lists - Simple inline text */
.v2-tag-list {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-dark);
}

.v2-tag {
  display: inline;
}

.v2-tag:not(:last-child)::after {
  content: ", ";
  color: var(--color-text-muted);
}

/* Restricted Tags - Simple inline text */
.v2-restricted-list {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.v2-restricted-tag {
  display: inline;
}

.v2-restricted-tag:not(:last-child)::after {
  content: ", ";
}

/* ===================================
   FAQ SECTION
   =================================== */
.v2-faq-section {
  max-width: var(--container-max-width);
  margin: 0 auto 48px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .v2-faq-section {
    padding: 0 40px;
  }
}

.v2-faq-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .v2-faq-title {
    font-size: 32px;
  }
}

.v2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.v2-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.v2-faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.v2-faq-icon {
  font-size: 20px;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
}

.v2-faq-item.open .v2-faq-icon {
  transform: rotate(45deg);
}

.v2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v2-faq-item.open .v2-faq-answer {
  max-height: 500px;
}

.v2-faq-answer-content {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ===================================
   BOTTOM CTA
   =================================== */
.v2-bottom-cta {
  max-width: var(--container-max-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .v2-bottom-cta {
    margin-bottom: 80px;
    padding: 0 40px;
  }
}

.v2-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .v2-cta-card {
    padding: 56px 40px;
  }
}

.v2-cta-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 12px 0;
}

@media (min-width: 768px) {
  .v2-cta-card h2 {
    font-size: 32px;
  }
}

.v2-cta-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0 0 24px 0;
}

@media (min-width: 768px) {
  .v2-cta-card p {
    font-size: 18px;
  }
}

.v2-cta-card .v2-btn-primary {
  display: inline-flex;
}

/* ===================================
   LOADING STATE
   =================================== */
.v2-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 16px;
}

.v2-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: #eeb220;
  border-radius: 50%;
  animation: v2-spin 1s linear infinite;
}

@keyframes v2-spin {
  to { transform: rotate(360deg); }
}

.v2-loading-text {
  font-size: 14px;
  color: var(--color-text-muted);
}
