/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #050a6b;
  --foreground: #ffffff;
  --primary: #ee3f3f;
  --secondary: #0066ff;
  --muted: rgba(255, 255, 255, 0.1);
  --muted-foreground: #a1a1a1;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --shadow-orange: 0 4px 14px 0 rgba(241, 90, 36, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    url("https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/4a1d3d69-2eef-4b3a-969f-9091563e01ad-mbp-aff-com/assets/images/bg-CywmI08C.png"),
    url("https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/4a1d3d69-2eef-4b3a-969f-9091563e01ad-mbp-aff-com/assets/images/top-lights-BFX9N8f3.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* Navigation */
.navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.header {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
}

.mobile-menu {
  display: flex;
  cursor: pointer;
  color: white;
  margin-right: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  cursor: pointer;
}

.logo-content {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.logo-m,
.logo-stbet {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: white;
  font-style: italic;
}

.logo-star {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
}

.logo-star span {
  color: white;
  font-size: 18px;
}

.logo-stbet {
  margin-left: -4px;
}

.logo-partners {
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

.logo-partners span {
  font-size: 14px;
  font-weight: 900;
  color: white;
  font-style: italic;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.language-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.language-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.flag-icon {
  width: 20px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
}

.language-text {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.login-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}

.login-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

.login-text {
  display: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.registration-button {
  background: var(--secondary);
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transition: all 0.2s;
}

.registration-button:hover {
  background: #0055dd;
}

.registration-button:active {
  transform: scale(0.95);
}

.navigation-links {
  display: none;
  width: 100%;
  justify-content: center;
  background: transparent;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation-wrapper.nav-open .navigation-links {
  display: flex;
}

.navigation-links ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.navigation-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 0.2s;
}

.navigation-links a:hover {
  color: white;
}

.nav-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(5, 10, 107, 0.8), transparent);
  pointer-events: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.hero-left {
  max-width: 640px;
  width: 100%;
}

.hero-left h1 {
  color: white;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-description p {
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.6;
}

.hero-description .highlight {
  color: white;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-label {
  color: #050a6b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.6;
}

.stat-value {
  color: #050a6b;
  font-size: 28px;
  font-weight: 800;
}

.hero-right {
  position: relative;
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
  padding-right: 2.5rem;
}

.feature-card {
  position: relative;
}

.feature-card-offset {
  margin-top: 2.5rem;
}

.feature-card-inner {
  width: 180px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.3s;
}

.feature-card-inner:hover {
  transform: scale(1.05);
}

.feature-card-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.feature-label {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 16px 16px;
}

.feature-label-blue {
  background: var(--secondary);
  color: white;
}

.hero-watermark {
  position: absolute;
  left: -3rem;
  bottom: 0;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero-watermark span {
  color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  white-space: nowrap;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}

/* Benefits Section */
.benefits-section {
  position: relative;
  padding: 5rem 0;
}

.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-badge span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.benefit-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: scale(1.02);
}

.benefit-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.benefit-item:hover .benefit-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.benefit-content {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.benefit-title-dark {
  font-size: 16px;
  font-weight: 700;
  color: #050a6b;
  line-height: 1.3;
}

.benefit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f15a24;
  color: white;
  font-size: 10px;
  font-weight: 900;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-style: italic;
}

.benefit-number {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.number-prefix {
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.number-suffix {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.number-prefix-lg {
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.benefit-title-below {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.benefit-white-card {
  background: white;
}

.white-card-content {
  position: absolute;
  inset: 0;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.community-icon {
  width: 100px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.benefit-white-card-bg {
  background: white;
}

.white-card-bg-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Grid positioning */
.benefit-item-1 {
  grid-column: span 4;
  height: 280px;
}
.benefit-item-2 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-3 {
  grid-column: span 2;
  grid-row: span 2;
  height: 580px;
}
.benefit-item-4 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-5 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-6 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-7 {
  grid-column: span 2;
  grid-row: span 2;
  height: 580px;
}
.benefit-item-8 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-9 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-10 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-11 {
  grid-column: span 2;
  height: 280px;
}
.benefit-item-12 {
  grid-column: span 2;
  height: 280px;
}

.benefits-glow {
  position: absolute;
  top: 25%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

/* Loyalty Section */
.loyalty-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5rem 0;
}

.loyalty-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.loyalty-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loyalty-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.loyalty-text {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

.loyalty-text h2 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.loyalty-description {
  margin-bottom: 2rem;
}

.loyalty-description p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

.loyalty-description .highlight {
  font-weight: 700;
}

.btn-blue {
  display: inline-block;
  background: var(--secondary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.btn-blue:hover {
  background: #0055dd;
}

.btn-blue:active {
  transform: scale(0.95);
}

.loyalty-visual {
  flex: 1;
  width: 100%;
  max-width: 640px;
  position: relative;
}

.loyalty-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s ease-out;
}

.loyalty-image:hover {
  transform: scale(1.03);
}

.loyalty-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  filter: blur(15px);
  z-index: -1;
}

/* Payouts Section */
.payouts-section {
  padding: 5rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.payouts-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 2.5rem;
  text-align: center;
}

.payouts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.payout-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.payout-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.2);
}

.payout-card img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(1.1);
}

.payout-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.multi-card-icon {
  width: 32px;
  height: 20px;
  background: #0066ff;
  border-radius: 4px;
  opacity: 0.8;
}

.multi-card-text {
  color: white;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payout-text {
  color: white;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.payout-text.italic {
  font-style: italic;
}

.payout-text.pm {
  font-family: serif;
  font-size: 16px;
  font-style: italic;
}

.payout-text.pm sup {
  font-size: 10px;
}

.payout-text.paytm {
  color: #00b9f1;
  font-weight: 900;
  font-size: 24px;
  font-style: italic;
}

.payout-text.visa {
  font-weight: 900;
  font-size: 30px;
  font-style: italic;
  letter-spacing: -0.05em;
}

.crypto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.crypto-icon.bitcoin {
  background: #f7931a;
  font-family: serif;
}

.crypto-icon.tether {
  background: #22c55e;
  font-style: italic;
}

.crypto-text {
  color: white;
  font-weight: 700;
  font-size: 20px;
  text-transform: lowercase;
}

.card-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(1.1);
}

.maestro-circles,
.mastercard-circles {
  display: flex;
  margin-bottom: 0.25rem;
}

.maestro-circles {
  gap: -0.75rem;
}

.maestro-circles .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 0.9;
}

.maestro-circles .circle.red {
  background: #dc2626;
}

.maestro-circles .circle.blue {
  background: #2563eb;
  margin-left: -12px;
}

.mastercard-circles {
  gap: -1rem;
}

.mastercard-circles .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.mastercard-circles .circle.mc-red {
  background: #eb001b;
}

.mastercard-circles .circle.mc-yellow {
  background: #f79e1b;
  margin-left: -16px;
  mix-blend-mode: screen;
}

.card-name {
  color: white;
  font-size: 10px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.payouts-glow-blue,
.payouts-glow-orange {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.payouts-glow-blue {
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  opacity: 0.05;
}

.payouts-glow-orange {
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  background: var(--primary);
  opacity: 0.03;
  width: 400px;
  height: 400px;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--background);
}

.testimonials-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.testimonials-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.testimonials-label {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.3);
}

.testimonial-logo {
  flex-shrink: 0;
}

.logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066ff 0%, #050a6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.testimonial-content {
  flex: 1;
  min-width: 0;
}

.testimonial-brand {
  display: block;
  color: #050a6b;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.testimonial-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.carousel-arrows {
  display: flex;
  gap: 0.5rem;
}

.arrow-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.arrow-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot.active {
  background: var(--secondary);
}

/* Careers Section */
.careers-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 107, 0.95),
    rgba(10, 30, 77, 0.95)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0066ff, #7c3aed);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.careers-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #0066ff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.career-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: left 0.5s ease;
}

.career-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.25);
}

.career-card:hover::before {
  left: 100%;
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.career-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.career-arrow {
  font-size: 24px;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.career-card:hover .career-arrow {
  transform: translateX(4px);
}

.career-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  background: rgba(0, 102, 255, 0.15);
  color: #00bfff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.careers-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.careers-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.careers-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #0066ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.careers-email::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066ff;
  transition: width 0.3s ease;
}

.careers-email:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .careers-section {
    padding: 50px 0;
  }

  .careers-header h2 {
    font-size: 32px;
  }

  .careers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .career-card {
    padding: 24px;
  }

  .careers-cta {
    padding: 24px;
  }
}

/* Contact & Registration Section */
.contact-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
}

/* Promo Code Box Styles */
.promo-code-box {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(241, 90, 36, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(241, 90, 36, 0.5);
  }
}

.promo-code-box button:hover {
  background: #ee3f3f;
  transform: scale(1.05);
}

.promo-code-box button:active {
  transform: scale(0.95);
}

/* Manager Cards Hover Effects */
.contact-methods > div > div > div {
  transition: all 0.3s ease;
}

.contact-methods > div > div > div:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateX(5px);
}

/* Bonus Offers Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.loyalty-section li {
  animation: slideInRight 0.5s ease-out forwards;
  opacity: 0;
}

.loyalty-section li:nth-child(1) {
  animation-delay: 0.1s;
}
.loyalty-section li:nth-child(2) {
  animation-delay: 0.2s;
}
.loyalty-section li:nth-child(3) {
  animation-delay: 0.3s;
}
.loyalty-section li:nth-child(4) {
  animation-delay: 0.4s;
}
.loyalty-section li:nth-child(5) {
  animation-delay: 0.5s;
}

.contact-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.contact-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-left {
  flex: 1;
  max-width: 540px;
}

.contact-left h2 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-description {
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.contact-methods h3 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 1.25rem;
  flex: 1;
  min-height: 90px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
}

.telegram-button {
  background: var(--secondary);
}

.telegram-button:hover {
  background: #0052cc;
}

.email-button {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.email-button:hover {
  background: rgba(255, 255, 255, 0.95);
}

.contact-button-text {
  position: relative;
  z-index: 10;
}

.contact-button-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: white;
}

.email-title {
  color: #050a6b;
}

.contact-button-title svg {
  opacity: 0.7;
}

.contact-button-handle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.email-handle {
  color: rgba(5, 10, 107, 0.6);
}

.contact-button-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-right: -0.5rem;
}

.contact-button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-right {
  flex: 1;
  width: 100%;
  max-width: 480px;
}

/* Signup Banner Styles */
.signup-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.95) 0%,
    rgba(5, 10, 107, 0.95) 100%
  );
  border-radius: 24px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.signup-circle-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.signup-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.signup-circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

.signup-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.signup-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.signup-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.signup-icon svg {
  stroke: #0066ff;
}

.signup-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: glow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.signup-title {
  color: white;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: slideInDown 0.8s ease-out;
}

.signup-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.5;
  animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-promo {
  background: rgba(241, 90, 36, 0.2);
  border: 2px dashed rgba(202, 72, 60, 0.8);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1.2s ease-out;
}

.signup-promo-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.signup-promo-code {
  font-size: 28px;
  font-weight: 900;
  color: #ee3f3f;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.1em;
  display: inline-block;
  animation: colorPulse 2s ease-in-out infinite;
}

@keyframes colorPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(241, 90, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(241, 90, 36, 0.8);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1.4s ease-out;
}

.signup-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.signup-benefit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.signup-benefit-icon {
  font-size: 20px;
}

.signup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ee3f3f;
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.4);
  transition: all 0.3s ease;
  animation: slideInUp 1.6s ease-out;
  position: relative;
  overflow: hidden;
}

.signup-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.signup-cta:hover::before {
  width: 300px;
  height: 300px;
}

.signup-cta:hover {
  background: #d94a18;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(241, 90, 36, 0.6);
}

.signup-cta:active {
  transform: translateY(-1px);
}

.signup-cta-text,
.signup-cta-arrow {
  position: relative;
  z-index: 1;
}

.signup-cta-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.signup-cta:hover .signup-cta-arrow {
  transform: translateX(5px);
}

.signup-footer {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  animation: slideInUp 1.8s ease-out;
}

.signup-footer a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.signup-footer a:hover {
  color: #f15a24;
  text-decoration: none;
}

.registration-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.registration-form h3 {
  color: #050a6b;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.form-group input {
  width: 100%;
  background: #f8f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3rem;
  color: #050a6b;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.form-group input:focus {
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
  width: 16px;
  height: 16px;
  accent-color: var(--secondary);
  border: 1px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.3;
}

.form-checkbox a {
  color: var(--secondary);
  text-decoration: underline;
}

.form-checkbox a:hover {
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #e04a18;
}

.btn-submit:active {
  transform: scale(0.98);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.form-footer a {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}

.form-footer a:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  width: 100%;
  background: var(--background);
  color: white;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo .logo-image {
  height: 36px;
}

.footer-logo .logo-content {
  font-size: 24px;
}

.footer-partners {
  transform: skewX(-10deg);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-language span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.footer-legal {
  max-width: 800px;
}

.footer-legal p {
  color: var(--muted-foreground);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: all 0.3s;
}

.footer-social a:hover {
  color: white;
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 640px) and (max-width: 1199px) {
  .navigation-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 107, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .navigation-links ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .navigation-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navigation-links li:last-child {
    border-bottom: none;
  }

  .navigation-links a {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
  }

  .navigation-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
}

@media (min-width: 640px) {
  .language-selector {
    display: flex;
  }

  .login-text {
    display: inline;
  }

  .contact-buttons {
    flex-direction: row;
  }

  .signup-title {
    font-size: 36px;
  }

  .signup-promo-code {
    font-size: 32px;
  }

  .header {
    padding: 0 1.5rem;
  }

  .logo-image {
    height: 36px;
  }

  .benefits-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .benefit-item-1 {
    grid-column: span 3 !important;
    height: 240px !important;
  }
  .benefit-item-2 {
    grid-column: span 3 !important;
    height: 240px !important;
  }
  .benefit-item-3 {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    height: 500px !important;
  }
  .benefit-item-4 {
    grid-column: span 2 !important;
    height: 240px !important;
  }
  .benefit-item-5 {
    grid-column: span 2 !important;
    height: 240px !important;
  }
  .benefit-item-6 {
    grid-column: span 3 !important;
    height: 240px !important;
  }
  .benefit-item-7 {
    grid-column: span 3 !important;
    grid-row: span 1 !important;
    height: 240px !important;
  }
  .benefit-item-8 {
    grid-column: span 3 !important;
    height: 240px !important;
  }
  .benefit-item-9 {
    grid-column: span 3 !important;
    height: 240px !important;
  }
  .benefit-item-10 {
    grid-column: span 2 !important;
    height: 240px !important;
  }
  .benefit-item-11 {
    grid-column: span 2 !important;
    height: 240px !important;
  }
  .benefit-item-12 {
    grid-column: span 2 !important;
    height: 240px !important;
  }
}

@media (min-width: 768px) {
  .payouts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payout-centered {
    grid-column: auto;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
  }

  .footer-right {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: flex-end;
  }

  .signup-banner {
    padding: 2.5rem 2.5rem;
  }

  .signup-icon {
    width: 120px;
    height: 120px;
  }

  .signup-icon-glow {
    width: 140px;
    height: 140px;
  }

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 0 2.5rem;
  }

  .hero-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-right {
    margin-top: 0;
  }

  .loyalty-container {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .loyalty-text {
    text-align: left;
  }

  .contact-container {
    flex-direction: row;
    gap: 5rem;
  }

  .signup-benefits {
    flex-direction: row;
    gap: 1.5rem;
  }

  .signup-benefit {
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .benefit-item-1 {
    grid-column: span 4 !important;
    height: 280px !important;
  }
  .benefit-item-2 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-3 {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    height: 580px !important;
  }
  .benefit-item-4 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-5 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-6 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-7 {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    height: 580px !important;
  }
  .benefit-item-8 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-9 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-10 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-11 {
    grid-column: span 2 !important;
    height: 280px !important;
  }
  .benefit-item-12 {
    grid-column: span 4 !important;
    height: 280px !important;
  }
}

@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }

  .navigation-links {
    display: flex;
  }

  .header {
    padding: 0 7.5rem;
  }
}

/* Mobile optimizations for signup banner */
@media (max-width: 639px) {
  .header {
    padding: 0 0.75rem;
    height: 70px;
  }

  .logo-image {
    height: 32px;
  }

  .language-selector {
    display: none !important;
  }

  .login-button {
    padding: 0.4rem;
  }

  .login-button svg {
    width: 18px;
    height: 18px;
  }

  .registration-button {
    padding: 0.5rem 1rem;
    font-size: 12px;
  }

  .mobile-menu {
    margin-right: 0.5rem;
  }

  .mobile-menu svg {
    width: 20px;
    height: 20px;
  }

  .navigation-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 107, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .navigation-links ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .navigation-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navigation-links li:last-child {
    border-bottom: none;
  }

  .navigation-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
  }

  .navigation-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item-1,
  .benefit-item-2 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 240px !important;
    display: block;
  }

  .benefit-item-3,
  .benefit-item-4,
  .benefit-item-5,
  .benefit-item-6,
  .benefit-item-7,
  .benefit-item-8,
  .benefit-item-9,
  .benefit-item-10,
  .benefit-item-11,
  .benefit-item-12 {
    display: none;
  }

  .signup-banner {
    padding: 2rem 1.5rem;
  }

  .signup-title {
    font-size: 24px;
  }

  .signup-subtitle {
    font-size: 14px;
  }

  .signup-promo-code {
    font-size: 24px;
  }

  .signup-icon {
    width: 80px;
    height: 80px;
  }

  .signup-icon svg {
    width: 40px;
    height: 40px;
  }

  .signup-icon-glow {
    width: 100px;
    height: 100px;
  }

  .signup-cta {
    padding: 1rem 2rem;
    font-size: 16px;
  }

  .signup-benefit {
    font-size: 14px;
    padding: 0.6rem 0.8rem;
  }
}
