/*!
Theme Name: AdX Approval
Theme URI: https://adxapproval.com
Author: AdX Approval Team
Author URI: https://adxapproval.com
Description: A professional monetization partner WordPress theme with MCM integration. Features dark theme with neon green accents, responsive design, and full customization options.
Version: 1.5.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adxapproval
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   GLOBAL STYLES
   ============================================ */
:root {
  --primary-color: #10b981;
  --primary-dark: #059669;
  --background-color: #0a0e14;
  --card-background: #1a1f2e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: rgba(16, 185, 129, 0.2);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

a:focus, button:focus {
  outline: none !important;
  box-shadow: none !important;
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1001;
}

.site-logo a {
  color: var(--text-primary);
}

.site-logo .accent {
  color: var(--primary-color);
}

/* ============================================
   MOBILE NAV TOGGLE
   ============================================ */
.mobile-nav-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 18px;
  position: relative;
}

.hamburger-icon .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.hamburger-icon .line:nth-child(1) { top: 0; }
.hamburger-icon .line:nth-child(2) { top: 8px; }
.hamburger-icon .line:nth-child(3) { top: 16px; }

.mobile-nav-toggle.is-active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.is-active .line:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.main-navigation {
  display: flex;
  align-items: center;
  position: static;
  width: auto;
  height: auto;
  background: none;
  padding: 0;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

/* ============================================
   DESKTOP HEADER ACTIONS
   ============================================ */
.desktop-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 18px;
  border: 1px solid var(--text-primary);
  border-radius: 4px;
}

.btn-signup {
  font-size: 13px;
  font-weight: 600;
  background-color: #000033;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #000033;
}

/* ============================================
   MOBILE RESPONSIVE HEADER
   ============================================ */
@media (max-width: 1024px) {
  .mobile-nav-toggle { display: flex !important; }
  .desktop-header-actions { display: none !important; }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    padding-top: 100px;
    display: block;
    overflow-y: auto;
  }
  .main-navigation.is-active { right: 0; }
  .nav-inner { padding: 0 30px; flex-direction: column; gap: 30px; }
  .nav-menu { flex-direction: column; gap: 20px; width: 100%; }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
  .nav-menu li a { font-size: 18px; display: block; }
  .mobile-header-actions { display: flex !important; flex-direction: column; gap: 15px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-color); }
  .btn-login-mobile, .btn-signup-mobile { text-align: center; padding: 12px; font-weight: 700; border-radius: 6px; font-size: 16px; }
  .btn-login-mobile { color: #fff; border: 1px solid #fff; }
  .btn-signup-mobile { background-color: var(--primary-color); color: #000; }
}

/* ============================================
   SAN1GO FINAL CTA SECTION STYLES
   ============================================ */
.final-cta-section {
  padding: 100px 20px;
  background-color: #0a0e14;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta-card {
  background-color: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.final-cta-card .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta-card .section-content {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"] {
  width: 100%;
  background-color: #181e25;
  border: 1px solid rgba(41, 50, 56, 0.65);
  border-radius: 8px;
  padding: 12px 16px;
  color: #f8fbff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus {
  border-color: #10b981;
}

.requirements-box {
  background-color: rgba(10, 14, 20, 0.6);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.requirements-box p {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.requirements-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-box li {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.requirements-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
}

.disclaimer-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.disclaimer-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #10b981;
}

.disclaimer-group label {
  font-size: 13px;
  color: #a0a0a0;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

.btn-apply-now {
  width: 100%;
  background-color: #10b981;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-apply-now:hover {
  background-color: #059669;
}

@media (max-width: 768px) {
  .final-cta-card { padding: 40px 20px; }
  .final-cta-card .section-title { font-size: 32px; }
  .final-cta-card .section-content { font-size: 16px; }
}

/* Original styles for other sections */
.hero-section { padding: 160px 20px 80px; text-align: center; }
.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.stats-section { background-color: #111; padding: 60px 20px; }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.stat-value { font-size: 40px; font-weight: 800; color: var(--primary-color); }
.stat-label { font-size: 14px; text-transform: uppercase; color: var(--text-secondary); margin-top: 5px; }
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.feature-card { padding: 1.5rem; border-radius: 0.5rem; border: 1px solid var(--border-color); background-color: rgba(26, 31, 46, 0.5); }
.site-footer { background-color: rgba(10, 14, 20, 0.8); border-top: 1px solid var(--border-color); padding: 3rem 2rem; }
.footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; color: var(--text-secondary); font-size: 0.875rem; }
