/* Base Styles - payidcasinosau.com */
/**
 * Global variables and base styles
 */

:root {
  /* Colors */
  --primary: #34a74c;      /* Main green */
  --primary-dark: #2a8c3d;  /* Darker green for hover states */
  --accent: #E6B422;       /* Outback gold */
  --accent-hover: #FFD700; /* Brighter gold for hover */
  --text-light: #FFFFFF;   /* White text */
  --text-muted: #666666;   /* Muted text */
  --text-dark: #333333;    /* Dark text */
  --bg-dark: #2C2C2C;      /* Charcoal background */
  --bg-light: #F8F9FA;     /* Light background */
  --header-bg: #1a1a1a;
  --nav-bg: #252525;
  
  /* Sizing */
  --border-radius: 12px;
  --nav-height: 56px;
  --header-height: 80px;
  
  /* Effects */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Base Typography */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

/* 404 Page Styles */
body.page-404 {
  background-color: var(--bg-dark);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-404-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.page-404-content {
  text-align: center;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-dark);
  color: var(--text-light);
  flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  /* Header and Footer Spacing */
  .page-404 #header-placeholder {
    flex: 0 0 auto;
  }

  .page-404 #footer-placeholder {
    flex: 0 0 auto;
    margin-top: 2rem;
  }

  .page-404-message {
    padding: 3rem;
  }

  .page-404-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
    letter-spacing: -2px;
  }

  .page-404-title {
    font-size: 2rem;
    color: var(--text-light);
    margin: 1rem 0;
    font-weight: 600;
  }

  .page-404-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-404-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .page-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 2px solid var(--text-light);
  }

  .page-404-btn i {
    font-size: 1.1rem;
  }

  .page-404-btn-home {
    background-color: var(--bg-dark);
    border-color: var(--text-light);
    color: var(--text-light);
  }

  .page-404-btn-home:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 167, 76, 0.2);
  }

  .page-404-btn-bonuses {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
  }

  .page-404-btn-bonuses:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 180, 34, 0.2);
  }

  @media (max-width: 768px) {
    .page-404-code {
      font-size: 6rem;
    }

    .page-404-title {
      font-size: 1.75rem;
    }

    .page-404-text {
      font-size: 1rem;
      padding: 0 1rem;
    }

    .page-404-actions {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-404-btn {
      width: 100%;
      justify-content: center;
      padding: 0.75rem 1.25rem;
    }
  }


  
  /* Navigation Styles */
  .nav-link {
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: var(--text-muted);
      text-decoration: none;
      padding: 12px 16px;
      border-radius: 8px;
      text-align: center;
      font-weight: 500;
  }
  
  /* Active state for all navigation items */
  .nav-link.active {
      color: #E6B422 !important; /* Force gold color */
      background-color: rgba(230, 180, 34, 0.15) !important;
      transform: translateY(-2px);
      font-weight: 600;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
  /* Active icon styling */
  .nav-link.active i {
      color: #E6B422 !important;
      transform: scale(1.1);
      text-shadow: 0 0 4px rgba(230, 180, 34, 0.3);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  
  /* Active state indicator - Consistent for all nav items */
  .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 20%;
      width: 60%;
      height: 3px;
      background-color: #E6B422;
      border-radius: 3px;
      box-shadow: 0 0 12px rgba(230, 180, 34, 0.8);
      animation: none; /* Remove any existing animation */
      opacity: 1; /* Ensure it's always visible */
  }
  
  /* Hover effect */
  .nav-link:not(.active):hover {
      color: var(--accent-hover) !important;
      background-color: rgba(230, 180, 34, 0.08) !important;
      transform: translateY(-1px);
  }
  
  .hamburger:hover {
    color: var(--accent-hover);
    background-color: rgba(230, 180, 34, 0.08) !important;
  }
  
  .hamburger:hover span {
    transform: translateY(-1px);
  }
  
  /* Icon transitions */
  .nav-link i {
      transition: all 0.3s ease;
      margin-bottom: 6px;
      font-size: 1.3rem;
  }
  
  /* Force active state styles */
  .nav-item .active {
      color: #E6B422 !important;
  }
  
  /* Debug styles */
  .debug-nav-active {
      outline: 2px solid red !important;
  }
  
  /* Footer links active state */
  .footer-link.active {
      color: var(--accent);
      font-weight: 600;
  }
  
  .footer-link:hover {
      color: var(--accent-hover);
  }
  
  /* Footer Links Hover */
  .footer-links-list a:hover {
    color: var(--accent-hover);
    padding-left: 5px;
    transition: all 0.2s ease;
  }
  
  /* Popular Games List */
  .footer-links-column:nth-child(2) .footer-links-list a {
    position: relative;
    padding-left: 0;
    transition: all 0.2s ease;
  }
  
  .footer-links-column:nth-child(2) .footer-links-list a:hover {
    padding-left: 10px;
    color: var(--accent-hover);
  }
  
  .footer-links-column:nth-child(2) .footer-links-list a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--accent);
  }
  
  .footer-links-column:nth-child(2) .footer-links-list a:hover::before {
    left: -12px;
    opacity: 1;
  }
  
  body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent scroll when menu is open */
    overflow-y: auto;
    position: relative;
  }
  
  /* Typography Elements */
  h1, h2, h3, h4, h5, h6,
  button, input, select, textarea {
    font-family: 'Poppins', sans-serif;
  }

  /* Consistent H2 Underline Styles */
  h2 {
    position: relative;
    padding-bottom: 0.75rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
  }

  /* Centered H2 underlines for specific sections */
  h2.centered::after,
  .section-header h2::after,
  #faq h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  
  /* Links */
  a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
  }
  
  a:hover {
    color: var(--primary-dark);
    text-decoration: none;
  }
  
  /* Mobile Navigation - Used for both mobile and desktop */
  /* Prevent Blue Flash */
  .bottom-nav .nav-link,
  .mobile-menu-overlay .nav-link,
  .mobile-menu-overlay .nav-link:visited,
  .mobile-menu-overlay .nav-link:active,
  .mobile-menu-overlay .nav-link:focus,
  .mobile-menu-overlay .nav-link:hover {
    color: var(--text-muted) !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  
  .bottom-nav .nav-link:hover,
  .bottom-nav .nav-link:active,
  .mobile-menu-overlay .nav-link:hover,
  .mobile-menu-overlay .nav-link:active {
    color: var(--accent) !important;
  }
  
  /* Mobile Menu Icons */
  .bottom-nav .nav-link i,
  .mobile-menu-overlay .nav-link i {
    color: var(--text-muted) !important;
    transition: var(--transition);
  }
  
  .bottom-nav .nav-link:hover i,
  .bottom-nav .nav-link:active i,
  .mobile-menu-overlay .nav-link:hover i,
  .mobile-menu-overlay .nav-link:active i {
    color: var(--accent) !important;
  }
  
  /* Buttons */
  button,
  .button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"] {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
  }
  
  /* Forms */
  input,
  select,
  textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }
  
  /* Utility Classes */
  .text-primary { color: var(--primary); }
  .text-accent { color: var(--accent); }
  .text-light { color: var(--text-light); }
  .text-muted { color: var(--text-muted); }
  
  /* Responsive Base */
  @media (max-width: 768px) {
    html {
      font-size: 15px;
    }
  }
  
/* Smooth Scrolling - Handled in base html styles */

/* Mobile-specific hero margin */
@media (max-width: 768px) {
  .hero-container {
    margin-top: 2rem;
  }
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f1923; /* Dark background to match site theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#page-loader .loader {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(46, 204, 113, 0.2);
  border-top-color: #2ecc71;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed header */
  }

  /* Smooth scrolling for anchor links */
  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }
  
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* These variables are already defined in the :root at the top */

/* Header Styles */
.site-header {
    background: var(--header-bg);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
}

/* Logo Container */
.logo-container {
    grid-column: 2;
    display: flex;
    justify-content: center;
    z-index: 1;
}

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

/* Desktop Menu Toggle - Shows mobile menu when clicked */
.desktop-menu-toggle {
    grid-column: 1;
    justify-self: start;
    background: none !important;
    border: 1px solid transparent !important;
    color: var(--text-light) !important;
    font-size: 24px !important;
    cursor: pointer !important;
    padding: 8px !important;
    margin: 0 5px !important;
    border-radius: 4px !important;
    display: none; /* Hidden by default */
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    min-width: 40px;
    min-height: 40px;
}

.desktop-menu-toggle:hover,
.desktop-menu-toggle:focus {
    color: var(--accent-hover) !important;
    background-color: rgba(230, 180, 34, 0.1) !important;
    border-color: var(--accent) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.desktop-menu-toggle:active {
    transform: translateY(0) !important;
    box-shadow: none !important;
}

/* Ensure the icon inherits the correct color */
.desktop-menu-toggle i {
    color: inherit !important;
}

/* Header Gift Button */
.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-gift-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-gift-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.header-gift-btn i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* Adjust floating button visibility */
@media (min-width: 992px) {
    /* Show desktop menu toggle */
    .desktop-menu-toggle {
        display: flex;
    }
    
    /* Show mobile menu when desktop menu toggle is active */
    .desktop-menu-toggle.active + .logo-container + .header-actions + .mobile-menu-overlay {
        display: block;
    }
    
    /* Adjust logo container margin */
    .logo-container {
        margin-right: auto;
    }
    
    /* Hide mobile floating gift button on desktop */
    .gift-btn {
        display: none !important;
    }
    
    /* Show header gift button on desktop */
    .header-actions {
        display: flex;
    }
}

@media (max-width: 991px) {
    /* Hide header gift button on mobile */
    .header-actions {
        display: none;
    }
    
    /* Show mobile floating gift button */
    .gift-btn {
        display: flex !important;
    }
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 200px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #252525;
    display: flex;
    padding: 0;
    margin: 0;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    background: transparent !important;
}

.bottom-nav .nav-item.menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
    min-width: 60px;
    background: transparent !important;
}

.bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    padding: 10px 0;
    height: 100%;
    width: 100%;
    transition: all 0.2s ease;
    background: transparent !important;
}

.bottom-nav .nav-link i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    background: transparent !important;
}

.bottom-nav .nav-link span {
    background: transparent !important;
}

.bottom-nav .nav-link:hover,
.bottom-nav .nav-link:active,
.bottom-nav .nav-link.active {
    color: var(--accent-color);
    background: transparent !important;
}

.bottom-nav .nav-link:hover i,
.bottom-nav .nav-link:active i,
.bottom-nav .nav-link.active i {
    color: var(--accent-color);
    transform: translateY(-2px);
    background: transparent !important;
}

/* Hamburger Menu */
.hamburger {
    background: none;
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.hamburger i {
    font-size: 24px;
    margin-bottom: 2px;
}

.hamburger span {
    font-size: 10px;
    line-height: 1;
}

.hamburger:hover {
    color: var(--accent-hover);
}

.hamburger:hover span {
    color: var(--accent-hover);
}


/* Remove yellow background from nav items */
.nav-item *,
.nav-item *:hover,
.nav-item *:active,
.nav-item *:focus {
    background: transparent !important;
    background-color: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 991;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    background: #252525;
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-menu-title {
    color: var(--accent-hover);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-close-btn {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 20px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0;
    opacity: 0.9;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-close-btn:hover {
    background-color: var(--accent);
    color: #1a1a1a;
    opacity: 1;
    transform: translateY(-1px);
}

.mobile-nav-list {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav-list li {
    margin: 0;
    position: relative;
    transition: background-color 0.2s ease;
}

.mobile-nav-list li::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: rgba(230, 180, 34, 0.2);
}

.mobile-nav-list li:last-child::after {
    display: none;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-list a i {
    margin-right: 10px;
    color: rgba(230, 180, 34, 0.7);
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus,
.mobile-nav-list a.active {
    color: #fff;
    background-color: rgba(230, 180, 34, 0.15);
    font-weight: 500;
}

.mobile-nav-list a:hover i,
.mobile-nav-list a:focus i,
.mobile-nav-list a.active i {
    color: var(--accent);
    transform: translateX(3px);
    opacity: 1;
}

.mobile-nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-list a:hover::before,
.mobile-nav-list a:focus::before,
.mobile-nav-list a.active::before {
    transform: translateX(0);
}

.mobile-nav-list a:hover::before,
.mobile-nav-list a:focus::before {
    transform: translateX(0);
}

.mobile-nav-list i {
    margin-right: 16px;
    font-size: 20px;
    color: var(--accent-color);
    width: 24px;
    text-align: center;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 998;
    outline: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: translateY(1px);
}

.gift-btn {
    bottom: 80px;
    left: 15px;
    right: auto;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.gift-btn i {
    color: white !important;
    position: relative;
    z-index: 2;
}

.gift-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 50%;
}

.gift-btn:hover::before {
    opacity: 1;
}

.gift-btn:hover i {
    color: white !important;
}

.gift-btn .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Scroll to top button - Matches gift button size and position */
.scroll-top-btn {
    position: fixed;
    bottom: 20px !important;
    right: 30px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    cursor: pointer !important;
    z-index: 999 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    outline: none !important;
}

.scroll-top-btn:hover {
    background: #f8f8f8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.scroll-top-btn i {
    transition: transform 0.3s ease;
    color: #333333 !important;
}

.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

.scroll-top-btn.show,
.scroll-top-btn.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 991px) {
    .scroll-top-btn {
        bottom: 80px !important; /* 60px (bottom nav) + 20px spacing */
        right: 30px !important;
        width: 56px !important;
        height: 56px !important;
        font-size: 22px !important;
        z-index: 1001 !important; /* Above bottom nav */
    }
    
    .gift-button {
        right: 30px !important;
        bottom: 150px !important; /* 80px (scroll btn) + 56px (btn height) + 14px spacing */
        width: 56px !important;
        height: 56px !important;
        z-index: 1001 !important; /* Above bottom nav */
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 80px !important; /* 60px (bottom nav) + 20px spacing */
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        z-index: 1001 !important; /* Above bottom nav */
    }
    
    .gift-button {
        right: 20px !important;
        bottom: 150px !important; /* 80px (scroll btn) + 50px (btn height) + 20px spacing */
        width: 50px !important;
        height: 50px !important;
        z-index: 1001 !important; /* Above bottom nav */
    }
}

/* Animation for menu items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-list li {
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
}

.mobile-nav-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-list li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-list li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-list li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-list li:nth-child(5) { animation-delay: 0.3s; }

/* Content */
.main-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive */
/* Mobile Styles */
@media (max-width: 991px) {
    .header-container {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px !important;
        height: 60px;
    }
    
    .desktop-menu-toggle {
        display: none !important;
    }
    
    .logo-container {
        flex: 1;
        justify-content: flex-start;
        margin: 0;
    }
    
    .logo-img {
        height: 70px !important;
        width: auto;
        max-width: 180px;
        transition: all 0.3s ease;
    }
    
    .header-actions {
        display: flex !important;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .header-actions .header-gift-btn {
        display: none !important;
    }
    
    .play-now-btn {
        position: relative;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #2ecc71, #27ae60, #1abc9c);
        background-size: 200% 200%;
        color: white;
        padding: 12px 28px;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    }
    
    .play-now-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, #27ae60, #1abc9c, #2ecc71);
        background-size: 200% 200%;
        z-index: -1;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .play-now-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 30px rgba(46, 204, 113, 0.6);
        color: white;
    }
    
    .play-now-btn:hover::before {
        opacity: 1;
        animation: gradientBG 3s ease infinite;
    }
    
    .play-now-btn:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.5);
    }
    
    .play-now-btn i {
        margin-left: 10px;
        font-size: 14px;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
    }
    
    .play-now-btn:hover i {
        transform: translateX(5px) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
    }
    
    @keyframes gradientBG {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
}

/* Hide Play Now button on desktop by default */
.play-now-btn {
    display: none;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .header-container {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 20px !important;
        max-width: 1200px;
        margin: 0 auto;
        height: var(--header-height);
    }
    
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--header-height);
        z-index: 1000;
        background: #1a1a1a;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden; /* Prevent any child elements from overflowing */
    }
    
    .desktop-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        margin: 0 5px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .desktop-menu-toggle:hover {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .logo-container {
        grid-column: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    
    .logo-img {
        height: 70px !important; /* Fixed height */
        width: auto;
        max-width: 200px;
        max-height: 120px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .logo-img:hover {
        transform: scale(1.03); /* More subtle hover effect */
    }
    
    .header-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        height: 100%;
        padding: 0 10px;
    }
    
    .header-actions .header-gift-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .header-actions .header-gift-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .header-actions .header-gift-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    }
    
    .header-actions .header-gift-btn:hover::before {
        opacity: 1;
    }
    
    .header-actions .header-gift-btn i {
        position: relative;
        z-index: 2; /* Higher than the ::before pseudo-element */
        color: white !important; /* Ensure icon stays white */
    }
    
    .header-actions .header-gift-btn:hover i {
        color: white !important; /* Ensure icon stays white on hover */
    }
    
    .play-now-btn {
        display: none;
    }
    
    .bottom-nav {
        display: none;
    }
    
    .main-content {
        margin: 20px auto;
    }
}

/* Bonus Logo */
.bonus-logo {
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.bonus-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* Make logo larger on mobile */
@media (max-width: 768px) {
    .bonus-logo {
        margin: 0 auto 1.5rem;
    }
    
    .bonus-logo img {
        width: 160px; /* Increased size for mobile */
        max-width: 100%;
        height: auto;
    }
}

/* PayID Guide Styles - Modern responsive design */
.payid-guide {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
  position: relative;
}

.payid-guide__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.payid-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.payid-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.payid-hero__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-hover);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.payid-hero__badge:hover {
  background: var(--accent-hover);
}

.payid-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.payid-hero__description {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* Content Container */
.payid-content {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.payid-intro {
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.payid-intro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.payid-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

/* Section Styles */
.payid-section {
  margin-bottom: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.payid-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.payid-section:last-child {
  margin-bottom: 0;
}

.payid-section__header {
  padding: 40px 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.payid-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1.3;
  position: relative;
}

.payid-section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
}

.payid-section__content {
  padding: 20px 40px 40px;
}

.payid-section__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 20px;
}

/* Benefits Grid */
.payid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.payid-benefit {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payid-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.payid-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payid-benefit:hover::before {
  transform: scaleY(1);
}

.payid-benefit__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
}

.payid-benefit__content {
  flex: 1;
}

.payid-benefit__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.payid-benefit__content p {
  margin-bottom: 15px;
}

.payid-benefit__content p:last-child {
  margin-bottom: 0;
}

/* Checklist Styles */
.payid-checklist {
  margin-top: 30px;
}

.payid-checklist-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.payid-checklist-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.payid-checklist-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

.payid-checklist-item__content {
  flex: 1;
}

.payid-checklist-item__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}

/* Safety Alert */
.payid-safety-alert {
  display: flex;
  gap: 20px;
  padding: 30px;
  margin-top: 30px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 15px;
  border: 1px solid var(--accent);
  position: relative;
}

.payid-safety-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 15px 15px 0 0;
}

.payid-safety-alert__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.payid-safety-alert__content {
  flex: 1;
}

.payid-safety-alert__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #856404;
  margin-bottom: 15px;
}

.payid-safety-alert__content p {
  color: #856404;
  margin-bottom: 15px;
}

.payid-safety-alert__content p:last-child {
  margin-bottom: 0;
}

/* Comparison Cards */
.payid-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.payid-comparison-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.payid-comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payid-comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.payid-comparison-card:hover::before {
  transform: scaleX(1);
}

.payid-comparison-card__header {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.payid-comparison-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

.payid-comparison-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.payid-comparison-card__content {
  padding: 25px;
}

.payid-comparison-card__content p {
  margin-bottom: 15px;
}

.payid-comparison-card__content p:last-child {
  margin-bottom: 0;
}

/* FAQ Styles */
.payid-faq {
  margin-top: 30px;
}

.payid-faq-item {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: all 0.3s ease;
}

.payid-faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.payid-faq-item__question {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payid-faq-item__question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.payid-faq-item__question i {
  color: var(--primary);
  font-size: 1.2rem;
}

.payid-faq-item__question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.payid-faq-item__answer {
  padding: 25px;
}

.payid-faq-item__answer p {
  margin: 0;
}

/* Conclusion Section */
.payid-section--conclusion {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* CTA Styles */
.payid-cta {
  display: flex;
  gap: 20px;
  padding: 30px;
  margin-top: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.payid-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
  opacity: 0.3;
}

.payid-cta__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.payid-cta__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.payid-cta__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.payid-cta__content p {
  margin-bottom: 15px;
  color: white;
}

.payid-cta__content p:last-of-type {
  margin-bottom: 25px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .payid-guide {
    padding: 40px 0;
  }
  
  .payid-guide__wrapper {
    padding: 0 15px;
  }
  
  .payid-hero {
    margin-bottom: 40px;
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .payid-hero__title {
    font-size: 2.5rem;
  }
  
  .payid-hero__description {
    font-size: 1.1rem;
  }
  
  .payid-intro {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .payid-section {
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .payid-section__header {
    padding: 30px 20px 15px;
  }
  
  .payid-section__title {
    font-size: 1.8rem;
  }
  
  .payid-section__content {
    padding: 15px 20px 30px;
  }
  
  .payid-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .payid-benefit {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .payid-benefit__icon {
    align-self: center;
  }
  
  .payid-checklist-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .payid-checklist-item__icon {
    align-self: center;
  }
  
  .payid-safety-alert {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .payid-safety-alert__icon {
    align-self: center;
  }
  
  .payid-comparison {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .payid-comparison-card__header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .payid-comparison-card__content {
    padding: 20px;
  }
  
  .payid-faq-item__question {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .payid-faq-item__answer {
    padding: 20px;
  }
  
  .payid-cta {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .payid-cta__icon {
    align-self: center;
  }
  

}

@media (max-width: 480px) {
  .payid-hero__title {
    font-size: 2rem;
  }
  
  .payid-hero__description {
    font-size: 1rem;
  }
  
  .payid-intro {
    margin-bottom: 15px;
  }
  
  .payid-section {
    margin-bottom: 15px;
    border-radius: 10px;
  }
  
  .payid-section__title {
    font-size: 1.5rem;
  }
  
  .payid-benefits {
    gap: 15px;
  }
  
  .payid-benefit {
    padding: 15px;
  }
  
  .payid-checklist-item {
    padding: 15px;
  }
  
  .payid-safety-alert {
    padding: 15px;
  }
  
  .payid-comparison-card__header {
    padding: 15px;
  }
  
  .payid-comparison-card__content {
    padding: 15px;
  }
  
  .payid-faq-item__question {
    padding: 15px;
  }
  
  .payid-faq-item__answer {
    padding: 15px;
  }
  
  .payid-cta {
    padding: 15px;
  }
  

}

/* PayID Content Styles */
.seo-text__section {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-text__heading {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 0 0 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

/* H2 underlines now handled by global h2 styles above */

.seo-text__benefits {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: rgba(52, 167, 76, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.benefit-title {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-title i {
  color: var(--accent);
}

.seo-text__checklist {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.checklist-item {
  background: rgba(230, 180, 34, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.checklist-title {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seo-text__safety-notice {
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.safety-title {
  color: #00c853;
  font-size: 1.3rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.seo-text__comparison {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-title {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-title i {
  color: var(--accent);
}

.seo-text__faq {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-question i {
  color: var(--accent);
}

.faq-answer {
  margin: 0;
  line-height: 1.6;
}

.conclusion-highlight {
  background: rgba(230, 180, 34, 0.1);
  border: 1px solid rgba(230, 180, 34, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0 0;
}

.highlight-title {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .seo-text__section {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .seo-text__benefits {
    grid-template-columns: 1fr;
  }
  
  .benefit-item,
  .checklist-item,
  .comparison-item,
  .faq-item {
    padding: 1.25rem;
  }
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding-bottom 0.3s ease;
}

/* Add top margin on desktop */
@media (min-width: 993px) {
    .site-footer {
        margin-top: 0px;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 20px 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Footer Logo */
.footer-logo {
    text-align: left;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 100%;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1rem;
}

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

.footer-links-title {
    color: #ffd700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ffd700;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 0.35rem 0;
}

.footer-link:hover {
    color: #ffd700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.social-link {
    display: inline-block;
    text-align: center;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.2s ease;
}

.social-link i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.social-link:hover {
    background-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a; /* Matching main footer background */
    padding: 1rem 0;
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tablet-specific styles */
@media (min-width: 769px) and (max-width: 991px) {
    .footer-bottom {
        margin-top: 10px; /* Slightly more space on tablets */
        margin-bottom: 60px /* Slightly more padding on tablets */
    }
}

/* Section Styles */
section {
    padding: 2rem 0;
    position: relative;
    margin: 0;
}

/* Section Separator */
.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.2) 80%, transparent 100%);
    margin: 2rem 0;
    position: relative;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

/* No extra padding needed for main as it's handled by individual sections */

.footer-bottom .footer-container {
    flex-direction: column;
    gap: 0.5rem;
}

.copyright, .disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0px 10px 3.5rem; /* Reduced padding for a more compact footer */
        margin-bottom: 0;
        position: relative;
        z-index: 1;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem 1rem;
    }
    
    .footer-links-column {
        margin-bottom: 1rem;
    }
    
    .footer-links-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-link {
        padding: 0.25rem 0;
    }
    
    .social-links {
        justify-content: center; /* Center social links on mobile */
    }
    
    .footer-link.active {
        color: #ffd700;
        font-weight: 600;
    }
}

/* PayID Header Section Styles - Removed duplicates, using guides.css styles */

/* SEO Content Sections - Removed duplicates, using guides.css styles */

/* Comparison and Article Sections - Removed duplicates, using guides.css styles */

/* Conclusion and Responsive Styles - Removed duplicates, using guides.css styles */