/**
 * ==========================================================================
 * Project     : Stateswin UI
 * Description : Main Stylesheet
 * Author      : Professional Theme Designer
 * ==========================================================================
 * 
 * Table of Contents:
 * 01. Variables & Base Reset
 * 02. Hero Wrapper
 * 03. Top Navigation
 * 04. Section Base
 * 05. Product Cards
 * 06. States Row
 * 07. Responsive Media Queries
 * ==========================================================================
 */

/*--------------------------------------------------------------
# 01. VARIABLES & BASE RESET
--------------------------------------------------------------*/
:root {
  /* Backgrounds - two different shades from the image */
  --bg-body: #0E111B;
  /* Main body / States background */
  --bg-featured: #08090E;
  /* Featured/Recent background */

  /* Card gradient - white top to dark navy bottom */
  --card-gradient: linear-gradient(180deg, #e8ecf3 0%, #c4c9d4 35%, #4a5268 75%, #1a2033 100%);

  /* Text */
  --text: #e8ecf5;
  --text-dim: #8b93a8;
  --text-muted: #5a6278;

  /* Accent */
  --accent: #3ee0ff;
  --accent-glow: rgba(62, 224, 255, 0.35);

  /* Pill / badge */
  --pill-bg: #2a3147;
  --pill-bg-dark: rgba(10, 14, 24, 0.75);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg-body);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

/*--------------------------------------------------------------
# 02. HERO WRAPPER
--------------------------------------------------------------*/
.hero-wrapper {
  background: var(--bg-featured);
  border-bottom: 1px solid #1B1F31;
}

/*--------------------------------------------------------------
# 03. TOP NAVIGATION
--------------------------------------------------------------*/
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(120px, calc((100% - 1200px) / 2));
  gap: 24px;
  background: transparent;
}

/* 03.A NAV GLOW EFFECTS */
.nav::before,
.nav::after {
  content: '';
  position: absolute;
  top: -56px;
  height: 192px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.nav::before {
  width: 1200px;
  left: calc(50% - 600px);
  background: #22D3EE;
  opacity: 0.05;
  filter: blur(64px);
}

.nav::after {
  width: 768px;
  left: calc(50% - 384px);
  background: #E879F9;
  opacity: 0.05;
  filter: blur(64px);
}

.nav-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.menu-btn svg,
.menu-btn i {
  font-size: 20px;
  color: var(--text);

  width: 20px;
  height: 20px;
  stroke: var(--text);

}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
}

.logo-mark {
  width: 26px;
  height: 20px;
  background: var(--text);
  mask: linear-gradient(transparent 0 2px, black 2px 6px, transparent 6px 8px, black 8px 12px, transparent 12px 14px, black 14px 18px);
  -webkit-mask: linear-gradient(transparent 0 2px, black 2px 6px, transparent 6px 8px, black 8px 12px, transparent 12px 14px, black 14px 18px);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  height: 52px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 26px;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  height: 40px;
  border-radius: 20px;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-item:hover {
  color: var(--text);
}

.nav-item svg,
.nav-item i {
  font-size: 18px;

  width: 18px;
  height: 18px;

}

.nav-item.active {
  color: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, rgba(37, 99, 235, 0) 20%, #22D3EE 50%, rgba(37, 99, 235, 0) 80%);
}

.nav-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.icon-btn svg,
.icon-btn i {
  font-size: 20px;
  color: var(--text);

  width: 20px;
  height: 20px;
  stroke: var(--text);

}

.sales-badge {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 32px 7px 24px;
  gap: 16px;
  height: 48px;
  border-radius: 48px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.05) 0%, transparent 100%);
  backdrop-filter: blur(6px);
}

.sales-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48px;
  padding: 1.5px;
  background: linear-gradient(90deg, #22D3EE 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sales-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22D3EE;
  box-shadow: 0px 0px 0px 4px rgba(34, 211, 238, 0.1);
  flex-shrink: 0;
}

.sales-text {
  display: flex;
  flex-direction: column;
}

.sales-text strong {
  color: #22D3EE;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

.sales-text span {
  color: #22D3EE;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

/*--------------------------------------------------------------
# 04. SECTION BASE
--------------------------------------------------------------*/
.section {
  padding: 28px max(120px, calc((100% - 1200px) / 2)) 40px;
}

.section.featured-section {
  background: transparent;
}

.section.states-section {
  background: transparent;
}

.section.recent-section {
  background: transparent;
}

.section.countries-section {
  background: transparent;
}

.section.random-section {
  background: #08090E;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.section-title .chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.pager {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pager-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pager-btn:hover {
  color: var(--accent);
}

.pager-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.2s;
}

.dot.active {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/*--------------------------------------------------------------
# 05. PRODUCT CARDS
--------------------------------------------------------------*/
.card-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card-grid::-webkit-scrollbar {
  display: none;
}

.product-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}

.product-card {
  box-sizing: border-box;
  background: #1B1F31;
  border-bottom: 1px solid #1B1F31;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  /* Card: 282×256, image: 282×168, content: 88px */
  aspect-ratio: 282 / 256;
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 282 / 168;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 31, 49, 0) 0%, #1B1F31 100%);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
  z-index: 1;
}

.state-tag {
  box-sizing: border-box;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px 4px 4px;
  gap: 4px;
  height: 24px;
  background: linear-gradient(180deg, rgba(53, 61, 97, 0.6) 0%, rgba(53, 61, 97, 0.6) 100%);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  z-index: 5;
}

.state-tag .state-tag-flag.fi {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background-size: cover !important;
  background-position: center !important;
  display: block !important;
  overflow: hidden;
  flex-shrink: 0;
  line-height: initial !important;
}

.card-action {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}

.card-action:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-action svg,
.card-action i {
  font-size: 16px;
  color: #fff;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px 20px;
  margin-top: -15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-info-title {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

/*
 * Featured, Recent & Random: title overlays image bottom.
 * 168px image → 1 line starts at 140px (168-28), 2 lines at 112px (168-56).
 */
.featured-section .card-info-title,
.recent-section .card-info-title,
.random-section .card-info-title {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16px;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured, Recent & Random card-content: title removed, badges+stats only */
.featured-section .card-content,
.recent-section .card-content,
.random-section .card-content {
  margin-top: 0;
  justify-content: space-evenly;
  padding: 0 16px 12px;
}

.card-badges {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
}

.badge .star {
  color: #ffb547;
}

.card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 500;
}

.stat {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat svg,
.stat i {
  font-size: 14px;
  color: var(--text-dim);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 4px;
}

.seller {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 64px;
  flex: none;
  order: 0;
  flex-grow: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seller-name {
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.engagement {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.engagement-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.engagement-item svg,
.engagement-item i {
  font-size: 14px;
  color: var(--text-dim);

  width: 14px;
  height: 14px;
  stroke: var(--text-dim);
  fill: none;

}

/*--------------------------------------------------------------
# 06. STATES ROW
--------------------------------------------------------------*/
.scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.state-card {
  flex: 0 0 135px;
  min-width: 90px;
  background: #1a2236;
  border-radius: 12px;
  padding: 14px 6px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid transparent;
  scroll-snap-align: start;
}

.state-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.state-flag {
  width: 100%;
  max-width: 100px;
  height: 56px;
  margin: 0 auto 10px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.state-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.state-count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  /* Adjusted to match picture */
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-dim);
}

.state-count strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 2px;
}

/*--------------------------------------------------------------
# 07. RESPONSIVE MEDIA QUERIES
--------------------------------------------------------------*/

@media (max-width: 1200px) {
  .product-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-center {
    display: none;
  }

  .section {
    padding: 24px 20px;
  }

  .product-item {
    flex: 0 0 100%;
  }
}

/*--------------------------------------------------------------
# 08. VIP & CREATORS SECTIONS
--------------------------------------------------------------*/
.creators-section {
  background: var(--bg-body);
}

.creator-card {
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 24px 8px 8px;
  gap: 12px;
  /* 187px @ 1440px design → clamp */
  width: clamp(150px, 12.986vw, 187px);
  height: clamp(58px, 5vw, 72px);
  background: #1B1F31;
  border-bottom: 1px solid #1B1F31;
  border-radius: 80px;
  cursor: pointer;
  transition: all 0.25s;
  scroll-snap-align: start;
}

.creator-card:hover {
  border-color: var(--accent);
  background: #222740;
  transform: translateY(-2px);
}

.creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 64px;
}

.creator-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
  width: 87px;
  height: 48px;
  flex: none;
  order: 1;
  flex-grow: 0;
  justify-content: center;
}

.creator-name {
  width: 87px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.creator-count {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  gap: 2px;
  width: 81px;
  height: 24px;
  background: #242A43;
  border: 1px solid #242A43;
  border-radius: 20px;
  flex: none;
  order: 1;
  flex-grow: 0;
  /* Metin stili — text node'larını da kapsar */
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #94A3B8;
}

/* Sayı bold, metin normal */
.creator-count strong {
  font-weight: 700;
  color: #94A3B8;
}

.vip-section {
  background: var(--bg-body);
  padding-bottom: 60px;
}

.vip-banner {
  width: 100%;
  position: relative;
  aspect-ratio: 1200 / 549;
  border-radius: 12px;
  border: 1px solid #1B1F31;
  background: url('../images/placeholder.png') center/cover no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 27, 0.8) 0%, rgba(14, 17, 27, 0.8) 100%), linear-gradient(180deg, #08090E 80%, #1B1F31 100%);
  mix-blend-mode: color;
  z-index: 1;
}

.vip-overlay-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 27, 0.8) 0%, rgba(14, 17, 27, 0.95) 100%);
  z-index: 1;
}

.vip-left {
  flex: 1;
  min-width: 320px;
  position: relative;
  z-index: 2;
  padding: 64px 48px;
  background: linear-gradient(270deg, rgba(13, 15, 24, 0) 0%, #0D0F18 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vip-right {
  width: 500px;
  position: relative;
  z-index: 2;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-yellow-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(50% 50% at 50% 50%, #FBBF24 0%, rgba(251, 191, 36, 0) 100%);
  opacity: 0.15;
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.vip-subtitle {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FBBF24;
  margin-bottom: 8px;
  font-weight: 500;
}

.vip-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 36px;
}

.vip-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.vip-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vip-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  flex-shrink: 0;
  font-size: 16px;
}

.vip-feature-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #FFFFFF;
}

.vip-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vip-card-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0) 0%, #FBBF24 50%, rgba(251, 191, 36, 0) 100%);
  opacity: 0.8;
}

.vip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.vip-points-wrap {
  display: flex;
  flex-direction: column;
}

.vip-points-value {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #FBBF24;
  letter-spacing: -1px;
}

.vip-points-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 4px;
}

.vip-diamond {
  font-size: 32px;
  color: #FBBF24;
}

.vip-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.vip-price {
  font-size: 36px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.vip-price-old {
  font-size: 20px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: line-through;
}

.vip-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #FBBF24;
  border-radius: 32px;
  padding: 6px 6px 6px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.vip-btn:hover {
  background: #fcd34d;
  transform: translateY(-2px);
}

.vip-btn-text {
  font-size: 18px;
  font-weight: 600;
  color: #0B0E16;
}

.vip-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0E111B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  font-size: 20px;
}

.vip-footer {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.vip-footer-icon {
  color: #FBBF24;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vip-footer-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #CBD5E1;
}

@media (max-width: 992px) {
  .vip-banner {
    flex-direction: column;
    aspect-ratio: auto;
  }

  .vip-left,
  .vip-right {
    width: 100%;
    padding: 40px;
  }
}

@media (max-width: 576px) {

  .vip-left,
  .vip-right {
    padding: 24px;
  }

  .vip-title {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# 09. PRODUCTS (BUNDLES) SECTION
--------------------------------------------------------------*/
.products-section {
  background: var(--bg-body);
}

.bundle-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bundle-grid::-webkit-scrollbar {
  display: none;
}

.bundle-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}

/* Card: 282x370 ratio */
.bundle-card {
  position: relative;
  background: #1B1F31;
  border-bottom: 1px solid #1B1F31;
  border-radius: 8px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  aspect-ratio: 282 / 370;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  margin-top: 14px;
}

.bundle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Sales badge – floats above card top like state-tag (Figma: top: 2748, card: 2756 → -8px) */
.bundle-sales-badge {
  box-sizing: border-box;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  gap: 4px;
  height: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(53, 61, 97, 0.6) 0%, rgba(53, 61, 97, 0.6) 100%);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.bundle-sales-badge i {
  color: var(--accent);
  font-size: 14px;
}

/* Image area: 282x282 — perfectly square (1:1) within the card */
.bundle-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.bundle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.bundle-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 14, 0) 0%, #1B1F31 100%);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
  z-index: 1;
}

/* Content area: below image — only badges + stats */
.bundle-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  background: #1B1F31;
  border-radius: 0 0 8px 8px;
}

/*
 * Title: overlays the bottom of the 282x282 image.
 * bottom: 0 → 1 line starts at 254px (282-28), 2 lines at 226px (282-56).
 * Max 2 lines, clipped if longer.
 */
.bundle-title {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #FFFFFF;
  /* max 2 lines, overflow hidden */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bundle-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bundle-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  height: 24px;
  background: #353D61;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  flex: none;
  flex-grow: 0;
}

.bundle-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 500;
  width: 100%;
}

.bundle-stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bundle-stat i {
  font-size: 13px;
  color: var(--text-dim);
}

/* Footer below card (outside card, price row) */
.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 4px;
}

.bundle-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bundle-price {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #FFFFFF;
}

.bundle-price-old {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #94A3B8;
  position: relative;
  text-decoration: none;
}

/* Figma Rectangle 58 — diagonal strikethrough, rotate(-12deg) */
.bundle-price-old::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: #94A3B8;
  transform: rotate(-12deg);
  transform-origin: center;
}

.bundle-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.bundle-rating-count {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .bundle-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 720px) {
  .bundle-item {
    flex: 0 0 calc(50% - 6px);
  }
}

@media (max-width: 480px) {
  .bundle-item {
    flex: 0 0 100%;
  }
}

/*--------------------------------------------------------------
# 11. REVIEWS SECTION
--------------------------------------------------------------*/
.reviews-section {
  background: transparent;
}

.review-wrapper {
  position: relative;
  height: 386px;
  overflow: hidden;
}

.review-grid {
  column-count: 4;
  column-gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  background: #1B1F31;
  border-radius: 12px;
  break-inside: avoid;
  margin-bottom: 20px;
}

.review-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.review-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.review-stars i {
  color: #94A3B8;
  font-size: 16px;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #CBD5E1;
  width: 100%;
}

.review-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.review-avatar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #08090E;
  border-radius: 24px;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar i {
  font-size: 24px;
  color: #353D61;
}

.review-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.review-username {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.review-role {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #CBD5E1;
}

.reviews-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(14, 17, 27, 0) 0%, #0E111B 100%);
  pointer-events: none;
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.show-more-btn {
  background: #1B1F31;
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  pointer-events: auto;
}

.show-more-btn:hover {
  background: #2a3147;
  color: #FFF;
}

@media (max-width: 1200px) {
  .review-grid {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .review-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .review-grid {
    column-count: 1;
  }
}

/*--------------------------------------------------------------
# 12. FOOTER
--------------------------------------------------------------*/
.site-footer {
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}



/* ── Top: 5-column link grid ── */
.footer-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
  margin: 0 max(120px, calc((100% - 1200px) / 2));
  padding: 60px 0 48px;
  border-top: 1px solid #1B1F31;
  position: relative;
  z-index: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

/* Column headings — "GET STARTED" style */
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94A3B8;
}

/* Column link list */
.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 12px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  border-radius: 4px;
}

.footer-link:hover {
  color: var(--accent);
  opacity: 0.9;
}

/* ── Telegram row (right-aligned) ── */
.footer-telegram-row {
  display: flex;
  justify-content: flex-end;
  margin: 0 max(120px, calc((100% - 1200px) / 2));
  padding: 0 0 32px;
  position: relative;
  z-index: 1;
}

.footer-telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #94A3B8;
  transition: color 0.2s;
}

.footer-telegram-link:hover {
  color: #CBD5E1;
}

.footer-telegram-icon {
  font-size: 20px;
  opacity: 0.8;
}

.footer-telegram-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 max(120px, calc((100% - 1200px) / 2));
  padding: 20px 0;
  border-top: 1px solid #1B1F31;
  position: relative;
  z-index: 1;
}

/* ── Footer Bottom Glow Effects ── */
.footer-bottom::before,
.footer-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  height: 192px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.footer-bottom::before {
  width: 1200px;
  left: calc(50% - 600px);
  background: #22D3EE;
  opacity: 0.05;
  filter: blur(64px);
}

.footer-bottom::after {
  width: 768px;
  left: calc(50% - 384px);
  background: #E879F9;
  opacity: 0.05;
  filter: blur(64px);
}

/* Logo in footer */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.footer-logo-text strong {
  font-weight: 700;
}

/* Legal links row */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-link {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #CBD5E1;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s;
  flex: none;
}

.footer-legal-link:hover {
  color: #FFFFFF;
}

/* Language selector button */
.footer-lang-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  gap: 6px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.footer-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-lang-icon {
  font-size: 20px;
  color: #CBD5E1;
  opacity: 0.8;
  width: 20px;
  height: 20px;
}

.footer-lang-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #CBD5E1;
}

.footer-lang-caret {
  font-size: 16px;
  color: #CBD5E1;
  width: 16px;
  height: 16px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 40px;
    padding: 40px 0 32px;
  }

  .footer-col {
    flex: 0 0 calc(50% - 16px);
  }

  .footer-telegram-row {
    margin: 0 40px;
    padding: 0 0 24px;
  }

  .footer-bottom {
    margin: 0 40px;
    padding: 20px 0;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    margin: 0 20px;
    padding: 32px 0 24px;
    gap: 24px;
  }

  .footer-telegram-row {
    margin: 0 20px;
    padding: 0 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 20px;
    padding: 20px 0;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# 11. LOGIN PAGE
--------------------------------------------------------------*/
.login-body {
  background: var(--bg-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.login-page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.login-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
  margin-top: 50px;
  margin-bottom: 40px;
  position: relative;
}

.login-header-logo::before,
.login-header-logo::after {
  content: '';
  position: absolute;
  top: -122px;
  height: 192px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.login-header-logo::before {
  width: 1200px;
  left: calc(50% - 600px);
  background: #22D3EE;
  opacity: 0.05;
  filter: blur(64px);
}

.login-header-logo::after {
  width: 768px;
  left: calc(50% - 384px);
  background: #E879F9;
  opacity: 0.05;
  filter: blur(64px);
}

.login-box {
  /* Figma: Rectangle 177 — 480×564, top:132px centred at 1440 */
  /* rgba ile %50 opaklık — opacity yerine background'u yarı saydam yapıyoruz */
  width: 480px;
  margin: 0 auto;
  background: rgba(27, 31, 49, 0.5);
  border-radius: 8px;
  padding: 48px;
  /* 48px L/R inner padding as per Figma */
  box-sizing: border-box;
}

.login-title {
  /* Figma: Sign up or log in — Nationale 600 30px lh:36 */
  text-align: center;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.reset-description {
  /* Figma: 384×60px, Nationale 500 14px lh:20 #94A3B8 centered */
  width: 384px;
  margin: -16px auto 24px;
  /* login-title'ın margin-bottom'undan gelen boşluğu dengeleyip altına yerleştir */
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #94A3B8;
}

.reset-description-brand {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #94A3B8;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form .form-group {
  margin-bottom: 24px;
}

.login-form label {
  /* Figma: Email or username — Nationale 500 12px lh:16 */
  display: block;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #CBD5E1;
  margin-bottom: 8px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.label-row label {
  margin-bottom: 0;
}

.forgot-link {
  font-size: 12px;
  font-weight: 600;
  color: #22D3EE;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-link:hover {
  color: #FFFFFF;
}

.input-wrapper {
  position: relative;
}

.login-form input {
  width: 100%;
  height: 36px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #242A43;
  border-radius: 0;
  padding: 0 0px 12px;
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.login-form input::placeholder {
  color: #475569;
}

.login-form input:focus {
  border-bottom-color: #22D3EE;
}

.show-pwd-icon {
  position: absolute;
  right: 0;
  top: 12px;
  transform: translateY(-50%);
  color: #64748B;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.show-pwd-icon:hover {
  color: #CBD5E1;
}

/* ── Register: Terms & Conditions Checkbox ── */
.register-terms-label {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-top: 8px;
  margin-bottom: 4px;
}

.register-terms-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.register-terms-box {
  flex: none;
  order: 0;
  flex-grow: 0;
  width: 20px;
  height: 20px;
  background: #242A43;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}

/* Checkmark icon — hidden by default */
.register-terms-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}

/* Checked state */
.register-terms-input:checked+.register-terms-box {
  background: #22D3EE;
}

.register-terms-input:checked+.register-terms-box::after {
  opacity: 1;
}

/* Focus ring */
.register-terms-input:focus-visible+.register-terms-box {
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.4);
}

/* Hover highlight */
.register-terms-label:hover .register-terms-box {
  background: #2e3660;
}

.register-terms-input:checked~.register-terms-box,
.register-terms-label:hover .register-terms-input:checked+.register-terms-box {
  background: #22D3EE;
}

.register-terms-text {
  flex: none;
  order: 1;
  flex-grow: 0;
  width: 262px;
  height: 24px;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #CBD5E1;
  white-space: nowrap;
}

.register-terms-link {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.register-terms-link:hover {
  opacity: 0.75;
}

.login-btn {
  /* Figma: Frame 391 — 384×48px, flex row, justify-center, border-radius 8px */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 10px;
  width: 384px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 8px;
  border: none;
  color: #0F172A;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s, transform 0.15s;
  /* centre inside 480px card (480 - 96px padding = 384px → fills exactly) */
  align-self: center;
}

.login-btn:hover {
  background: #F1F5F9;
  transform: translateY(-1px);
}

.login-signup-text {
  /* Figma: Don't have an account? Sign Up — Nationale 500 16px lh:24 white */
  text-align: center;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 20px;
}

.login-signup-text a {
  /* Figma: Sign Up linki — aynı Nationale 500 16px stili, sadece #22D3EE rengi */
  color: #22D3EE;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.login-signup-text a:hover {
  opacity: 0.75;
}

.login-divider {
  /* Figma: Or Continue With — Nationale 500 14px lh:20 #94A3B8 */
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 20px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.login-divider span {
  padding: 0 16px;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #94A3B8;
  white-space: nowrap;
}

.social-login-grid {
  display: flex;
  gap: 16px;
}

.social-btn {
  flex: 1;
  height: 44px;
  background: #1E2335;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #272E45;
}

.social-btn i {
  font-size: 20px;
  color: #F8FAFC;
}

/* ── Robot Verification Page ── */
.robot-box {
  width: 576px !important;
  padding: 48px !important;
}

.robot-title {
  font-size: 20px !important;
  line-height: 28px !important;
}

.robot-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.robot-text {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #CBD5E1;
}

.robot-list {
  padding-left: 24px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.robot-list li {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #CBD5E1;
  position: relative;
  padding-left: 16px;
}

.robot-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #CBD5E1;
}

.robot-link {
  color: #22D3EE;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.robot-link:hover {
  opacity: 0.75;
}

/* Footer overrides for login — layout footer-bottom'dan geliyor */
.login-footer-wrap {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding-top: 160px;
  /* glow'un yukarı kanması için alan */
}

.login-footer {
  border-top: none;
}

@media (max-width: 900px) {
  .login-footer {
    flex-direction: column;
    padding: 32px 40px;
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .login-box {
    width: calc(100% - 40px);
    min-height: auto;
    margin: 0 20px;
    padding: 32px 24px;
  }

  .login-btn {
    width: 100%;
    align-self: stretch;
  }

  .login-footer {
    padding: 32px 20px;
  }
}

/*--------------------------------------------------------------
# 08. MODAL
--------------------------------------------------------------*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 14, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-dialog {
  position: relative;
  width: 576px;
  border-radius: 8px;
  border-top: 1px solid transparent;
  background: linear-gradient(#0E111B, #0E111B) padding-box,
    linear-gradient(90deg, #60A5FA 0%, #E879F9 100%) border-box;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.modal-glow-wrap {
  position: absolute;
  width: 100%;
  height: 376px;
  left: 0;
  top: 0;
  isolation: isolate;
  border-radius: 8px;
  pointer-events: none;
  overflow: hidden;
}

.modal-glow-ellipse {
  position: absolute;
  width: 100%;
  height: 96px;
  left: 0;
  top: -48px;
  background: linear-gradient(90deg, #60A5FA 0%, #E879F9 100%);
  opacity: 0.2;
  filter: blur(64px);
  z-index: 0;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #8b93a8;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.modal-close:hover {
  color: #fff;
}

.modal-close svg,
.modal-close i {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 84px 48px 48px;
  height: 100%;
}

.modal-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Nationale', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 4px;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.modal-title {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-align: center;
}

.modal-subtitle {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #CBD5E1;
  margin-bottom: 24px;
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
}

.modal-actions button {
  flex: 1;
  height: 48px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-actions .btn-primary {
  background: #FFFFFF;
  color: #0B0E16;
  border: none;
}

.modal-actions .btn-primary:hover {
  background: #E2E8F0;
  transform: translateY(-1px);
}

.modal-actions .btn-secondary {
  background: #242A43;
  color: #CBD5E1;
  border: none;
}

.modal-actions .btn-secondary:hover {
  background: #2e3660;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.modal-footer-text {
  font-family: 'Nationale', 'Inter', sans-serif;
  font-size: 13px;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.6;
  width: 320px;
}

.modal-footer-text a {
  color: #22D3EE;
  text-decoration: none;
  font-weight: 500;
}

.modal-footer-text a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .modal-dialog {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}