:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.menu-checkbox {
  display: none;
}

.menu-checkbox:checked + .menu-item .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.menu-checkbox:checked ~ .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 0.5rem;
  overflow-y: auto;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.menu-item a:hover {
    color: var(--accent-orange);
}


.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Header */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

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

.brand-logo img {
  height: 50px;
  width: auto;
}

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.menu-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}


.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

.button-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.button-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Hero Section */
.welcome-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-main);
  overflow: hidden;
  padding-top: 80px;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0;
}

.main-heading {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.accent-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--muted-text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-package {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
}

.package-details {
  margin: 1rem 0;
}

.package-details span {
  display: block;
  font-size: 1.1rem;
  color: var(--muted-text);
}

.package-details strong {
  font-size: 1.5rem;
  color: var(--light-text);
}

.signup-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.signup-info p {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Promo Code Section */
.promo-display {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.promo-heading {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.info-tooltip {
  position: relative;
  display: inline-block;
}

.help-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.help-icon:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.tooltip-content {
  visibility: hidden;
  width: 280px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  margin-left: -140px;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.info-tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

.code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.bonus-code {
  background: rgba(0, 0, 0, 0.4);
  color: var(--light-text);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--accent-orange);
  user-select: all;
}

.copy-button {
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.copy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.copy-button:active {
  transform: translateY(0);
}

.copy-button.copied {
  background: var(--success-green);
}

.copy-symbol {
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.badge-item img {
  width: 60px;
  height: auto;
}

/* Common Section Styles */
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-action {
  text-align: center;
  margin-top: 3rem;
}

/* About Section */
.company-overview {
  padding: 5rem 0;
  background: var(--deep-navy);
}

.overview-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.company-description p {
  margin-bottom: 1.5rem;
  color: var(--muted-text);
  line-height: 1.8;
  font-size: 1.1rem;
}

.company-statistics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.statistic-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--border-slate);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* Bonus Features Section */
.rewards-showcase {
  padding: 3rem 0;
  background: var(--deep-navy);
}

.rewards-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reward-highlight {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-slate);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-highlight.featured {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: scale(1.02);
}

.reward-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reward-highlight.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.reward-symbol {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.reward-highlight h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.reward-highlight p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.reward-benefits .benefit {
  display: block;
  color: var(--success-green);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* Features Section */
.platform-advantages {
  padding: 5rem 0;
  background: var(--darker-navy);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-slate);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-visual {
  margin-bottom: 1.5rem;
}

.advantage-visual img {
  width: 80px;
  height: auto;
}

.advantage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.advantage-item p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Getting Started Section */
.registration-guide {
  padding: 5rem 0;
  background: var(--deep-navy);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-slate);
  text-align: center;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-indicator {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
}

.step-details h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-details p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Games Section */
.gaming-collection {
  padding: 5rem 0;
  background: var(--darker-navy);
}

.game-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab {
  background: transparent;
  color: var(--muted-text);
  border: 2px solid var(--border-slate);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.game-tile {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.game-tile:hover {
  transform: translateY(-5px);
}

.game-tile img {
  width: 100%;
  height: 150px;
}

.tile-content {
  padding: 1.5rem;
}

.tile-content h3 {
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.tile-content p {
  color: var(--muted-text);
  margin-bottom: 1rem;
}

.tile-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Sports Section */
.sports-portfolio {
  padding: 5rem 0;
  background: var(--deep-navy);
}

.sports-introduction {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sports-introduction p {
  color: var(--muted-text);
  font-size: 1.1rem;
  line-height: 1.7;
}

.sports-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.sport-category {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-slate);
  transition: transform 0.3s ease;
}

.sport-category:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.sport-category img {
  margin-bottom: 1rem;
  width: 100px;
  height: auto;
}

.sport-category h3 {
  margin-bottom: 1rem;
  color: var(--light-text);
  font-size: 1.3rem;
  font-weight: 700;
}

.sport-category p {
  color: var(--muted-text);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.category-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.category-highlights span {
  color: var(--success-green);
  font-size: 0.9rem;
}

/* Payments Section */
.payment-solutions {
  padding: 5rem 0;
  background: var(--darker-navy);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-slate);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method.featured {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-method img {
  margin-bottom: 1rem;
  width: 80px;
  height: auto;
}

.payment-method h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.payment-method p {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.method-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.method-benefits .benefit {
  color: var(--success-green);
  font-size: 0.9rem;
  text-align: left;
}

.payment-details {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid var(--border-slate);
}

.payment-details h3 {
  color: var(--light-text);
  margin-bottom: 2rem;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.detail-block h4 {
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.detail-block p {
  color: var(--muted-text);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

/* Payment icons horizontal layout */
.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-text);
}

.legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

   .dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    transition: all 0.3s ease;
  }

    .menu-checkbox:checked ~ .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
    overflow-y: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 768px) {
  .welcome-banner {
    padding: 6rem 0 3rem;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .package-value {
    font-size: 3rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .security-badges {
    gap: 1rem;
    justify-content: space-around;
  }

  .badge-item {
    flex: 1;
    min-width: 80px;
  }

  .badge-item img {
    width: 50px;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-statistics {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .advantages-grid,
  .rewards-collection,
  .game-showcase,
  .sports-selection,
  .payment-options,
  .guide-steps,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .game-categories {
    justify-content: center;
    gap: 0.5rem;
  }

  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .tile-actions {
    justify-content: center;
  }

  .method-benefits .benefit {
    text-align: center;
  }

  .section-heading {
    font-size: 2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tooltip-content {
    width: 250px;
    margin-left: -125px;
    font-size: 0.8rem;
  }

  .code-container {
    flex-direction: column;
    gap: 0.6rem;
  }

  .bonus-code {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }

  .copy-button {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .action-buttons {
    gap: 0.5rem;
  }

  .button {
    padding: 0.55rem 0.55rem;
    font-size: 0.8rem;
  }

  .content-wrapper {
    padding: 0 15px;
  }

  .welcome-banner {
    padding: 5rem 0 2rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .welcome-package {
    padding: 1.5rem;
    margin: 1.5rem auto;
  }

  .package-value {
    font-size: 2.5rem;
  }

  .package-details strong {
    font-size: 1.3rem;
  }

  .signup-info {
    padding: 0.8rem;
  }

  .signup-info p {
    font-size: 0.9rem;
  }

  .security-badges {
    gap: 0.5rem;
  }

  .badge-item {
    font-size: 0.8rem;
  }

  .badge-item img {
    width: 40px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .company-statistics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .advantage-item,
  .reward-highlight,
  .step-item,
  .payment-method {
    padding: 1.5rem;
  }

  .step-indicator {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .tile-actions {
    flex-direction: column;
    gap: 0.3rem;
  }

  .button-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .payment-icons img {
    max-width: 35px;
  }

  .promo-heading {
    flex-direction: column;
    gap: 0.3rem;
  }

  .tooltip-content {
    width: 220px;
    margin-left: -110px;
    font-size: 0.75rem;
    padding: 10px;
  }

  .promo-display {
    padding: 1.2rem;
  }

  .bonus-code {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }

  .help-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for interactive elements */
.advantage-item,
.reward-highlight,
.step-item,
.payment-method,
.sport-category,
.game-tile {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.advantage-item:hover,
.reward-highlight:hover,
.step-item:hover,
.payment-method:hover,
.sport-category:hover,
.game-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Focus states for accessibility */
.button:focus,
.category-tab:focus,
.menu-item:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success states */
.success {
  border-color: var(--success-green) !important;
  background: rgba(5, 150, 105, 0.1) !important;
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 320px) {
  .header-layout {
    min-height: 130px;
    padding: 1.2rem 0;
  }

  .main-header {
    min-height: 130px;
  }

  .action-buttons .button {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
}
