/* ============================================
   ELITE WEALTH CAPITA - MAIN STYLESHEET
   Consolidated from: main.css, premium.css, navbar.css, 
   homepage-premium.css, auth-premium.css, glassmorphism-theme.css
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-bg-medium: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-border-light: rgba(255, 255, 255, 0.25);
    --glass-blur: blur(20px);
    --glass-blur-light: blur(10px);

    /* Text colors */
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);

    /* Accent colors */
    --accent-blue: #3B82F6;
    --accent-cyan: #06b6d4;
    --accent-purple: #8B5CF6;
    --accent-green: #00A86B;
    --accent-gold: #FFD700;
    --accent-red: #ef4444;

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    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;
    overflow-x: visible;
    color: var(--text-white);
}

/* === MAIN SITE BACKGROUND === */
body.main-site {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.70) 0%, rgba(30, 41, 59, 0.60) 50%, rgba(15, 23, 42, 0.70) 100%),
        url('../images/offices/office-investors.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 110px;
    /* Space for ticker (40px) + navbar (70px) */
}

body.main-site::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 40px;
    /* Below the ticker */
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    /* Fixed height to prevent CLS */
    display: flex;
    align-items: center;
}

.navbar .container,
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 10;
}

.navbar-logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    list-style: none;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.15);
}

/* Legacy nav classes */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-auth,
.navbar-auth {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    align-items: center;
}

/* Navbar Toggle (Mobile Hamburger) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* === BUTTONS === */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-white);
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--accent-blue);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--glass-border-light);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--accent-blue);
}

/* === SECTIONS === */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLASS CARDS === */
.card,
.glass-card,
.feature-card,
.plan-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.card:hover,
.glass-card:hover,
.feature-card:hover {
    background: var(--glass-bg-light);
    border-color: var(--glass-border-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glass), var(--shadow-glow-blue);
}

/* === HERO SECTION === */
.hero,
.hero-section {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Hero Sub-components */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge,
.hero-badge-container {
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-badge {
    background: var(--gradient-gold);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-text {
    display: inline-block;
}

.hero-title,
.hero-title-container {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    background: linear-gradient(135deg, #fff 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle,
.hero-subtitle-container {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Rotating text animations */
.rotating-badge,
.rotating-title,
.rotating-subtitle {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--glass-border-light);
}

.btn-outline:hover {
    background: var(--glass-bg-light);
    border-color: var(--accent-blue);
}

.btn-login {
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.btn-login:hover {
    background: var(--glass-bg-light);
}

.btn-signup {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-signup-mobile {
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

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

/* === PRICE CARDS === */
.price-cards {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.price-cards::-webkit-scrollbar {
    display: none;
}

.price-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 150px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-symbol {
    font-weight: 700;
    color: var(--text-white);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.price-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.price-change.positive {
    color: var(--accent-green);
}

.price-change.negative {
    color: var(--accent-red);
}

.mini-chart {
    margin-top: 0.5rem;
    height: 30px;
}

/* === GRIDS === */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {

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

@media (max-width: 576px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* === CARDS === */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
}

.card-gradient {
    background: var(--gradient-accent);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 80px 0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* === HOW IT WORKS === */
.how-it-works-section {
    padding: 80px 0;
}

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

.step-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

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

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-arrow {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-blue);
}

/* === PARTNERS SECTION === */
.partners-section {
    padding: 60px 0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

/* === INVESTMENT SECTORS === */
.investment-sectors {
    padding: 80px 0;
}

/* === PORTFOLIOS SECTION === */
.portfolios-section {
    padding: 80px 0;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    min-width: 350px;
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--gradient-accent);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

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

/* === OIL/ENERGY/SERVICES SECTIONS === */
.oil-energy-section,
.services-section,
.regulation-section {
    padding: 80px 0;
    position: relative;
}

/* === SECURITY CARD === */
.security-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

/* === CRYPTO TABS === */
.crypto-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.crypto-tab {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-tab:hover,
.crypto-tab.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact {
    color: var(--text-muted);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

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

/* === RISK ALERT === */
.risk-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* === VIDEO MODAL === */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 90%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.video-modal-player {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
}

/* === PARTICLES === */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* === LANGUAGE SELECTOR === */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === MOBILE AUTH LINKS === */
.mobile-auth-links,
.mobile-header-auth {
    display: none;
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
}

.desktop-auth {
    display: flex;
}

/* === BOOTSTRAP-LIKE UTILITIES === */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4,
.col-md-5,
.col-lg-6 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333%;
    }

    .col-md-5 {
        width: 41.666%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

.align-items-center {
    align-items: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

.pe-lg-5 {
    padding-right: 3rem;
}

.ps-lg-5 {
    padding-left: 3rem;
}

.bg-gradient-navy {
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
}

/* === FORMS === */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-subtle);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

/* === AUTH PAGES === */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
}

.auth-card {
    background: var(--glass-bg-medium);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-glass);
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.auth-card p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* === FOOTER === */
footer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

footer h4,
footer h5 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

footer p,
footer a {
    color: var(--text-muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--text-white);
}

/* === CRYPTO TICKER === */
.crypto-ticker-horizontal {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 6px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    gap: 3rem;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.crypto-symbol {
    font-weight: 700;
    color: #FFD700;
}

.crypto-price {
    font-weight: 500;
}

.crypto-change {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.crypto-change.positive {
    color: #00A86B;
    background: rgba(0, 168, 107, 0.1);
}

.crypto-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {

    .nav-menu,
    .navbar-menu {
        gap: 1rem;
    }

    .navbar-link {
        font-size: 13px;
        padding: 0.4rem 0.5rem;
    }
}

@media (max-width: 968px) {

    /* Show mobile toggle */
    .navbar-toggle {
        display: flex;
    }

    /* Hide desktop menu */
    .navbar-menu {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 15px;
        border-radius: 8px;
    }

    .navbar-link:hover,
    .navbar-link.active {
        background: rgba(59, 130, 246, 0.2);
    }

    .navbar-auth.desktop-auth {
        display: none;
    }

    /* Fix Mobile Auth Visibility */
    .mobile-header-auth {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 1rem;
    }

    .mobile-auth-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        width: 100%;
    }

    .mobile-auth-links a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px;
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    body.main-site {
        background-attachment: scroll;
    }

    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }

    /* Fix mobile ticker - ensure it's above navbar, not overlapping logo */
    .crypto-ticker-horizontal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002;
        height: 36px;
    }

    /* Push navbar down to make room for ticker */
    .navbar {
        position: fixed;
        top: 36px !important;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    /* Add padding to body to prevent content from hiding under fixed elements */
    body.main-site {
        padding-top: 100px;
    }

    /* Make sure logo and nav items don't get covered */
    .navbar-logo,
    .navbar-container {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
        min-height: 44px; /* Touch-friendly minimum */
    }

    /* Touch-friendly testimonial cards */
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    /* Hero section mobile fixes */
    .hero-section {
        min-height: 80vh;
        padding: 60px 15px 40px;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px; /* Extra touch-friendly for primary actions */
    }

    /* Section headings mobile */
    .section-title,
    h2 {
        font-size: 1.5rem !important;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    /* Cards mobile */
    .glass-card,
    .feature-card,
    .plan-card {
        padding: 1.25rem;
        margin: 0 5px;
    }

    /* Navbar mobile */
    .navbar-container {
        padding: 0 15px;
    }

    /* Stats section mobile */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 1rem;
    }

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

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Tables mobile - horizontal scroll */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Input fields - prevent zoom on iOS */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--glass-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-white);
}

.text-muted {
    color: var(--text-muted);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

/* ============================================
   AUTH PAGES (Login, Signup, Forgot Password)
   ============================================ */

.auth-background {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 50%, #0A1F44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.auth-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
}

.auth-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-form {
    width: 100%;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent-blue);
    text-decoration: none;
}

.auth-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #fca5a5;
    margin-bottom: 1rem;
}

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

.auth-features {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.auth-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

/* ============================================
   DASHBOARD PAGES
   ============================================ */

.dashboard-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-container {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.dashboard-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.dashboard-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Balance Card */
.balance-card {
    background: var(--gradient-accent);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

/* Action Grid */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
}

.action-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.action-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Bottom Navigation (Mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0.5rem;
    z-index: 1000;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--accent-blue);
}

.bottom-nav-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* ============================================
   FORM COMPONENTS
   ============================================ */

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-error {
    color: var(--accent-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-success {
    color: var(--accent-green);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ============================================
   BUTTONS - EXTENDED
   ============================================ */

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-success {
    background: var(--accent-green);
    color: white;
}

.btn-danger {
    background: var(--accent-red);
    color: white;
}

.btn-warning {
    background: var(--accent-gold);
    color: #000;
}

.btn-secondary {
    background: var(--glass-bg-light);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ============================================
   BADGES & STATUSES
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    gap: 0.25rem;
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.badge-warning {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.badge-info {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

.badge-icon {
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.active {
    background: var(--accent-green);
}

.status-indicator.pending {
    background: var(--accent-gold);
}

.status-indicator.inactive {
    background: var(--accent-red);
}

/* ============================================
   INVESTMENT PLANS & CALCULATOR
   ============================================ */

.plan-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.plan-duration {
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.calculator-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.calculator-input {
    margin-bottom: 1.5rem;
}

.calculator-result {
    background: var(--glass-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
}

.result-label {
    color: var(--text-muted);
}

/* ============================================
   CERTIFICATES & SEALS
   ============================================ */

.cert-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.cert-header {
    margin-bottom: 2rem;
}

.cert-body {
    margin-bottom: 2rem;
}

.cert-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.seal-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.seal-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.signature-line {
    width: 200px;
    border-bottom: 1px solid var(--glass-border);
    margin: 2rem auto 0.5rem;
}

.signature-name {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-white);
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 80px 0;
}

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

.team-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--accent-blue);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent-blue);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    color: var(--text-white);
    margin: 1rem 0;
}

.error-message {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   PAYMENT / DEPOSIT
   ============================================ */

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

.payment-method {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.payment-name {
    color: var(--text-white);
    font-weight: 600;
}

.amount-input {
    position: relative;
}

.amount-input input {
    padding-left: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.amount-input::before {
    content: '$';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* ============================================
   SUMMARY BOXES
   ============================================ */

.summary-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    color: var(--text-white);
    font-weight: 600;
}

.summary-total {
    font-size: 1.25rem;
    color: var(--accent-green);
}

/* ============================================
   CORNER DECORATIONS
   ============================================ */

.corner-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-gold);
}

.corner-tl {
    top: 1rem;
    left: 1rem;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 1rem;
    right: 1rem;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 1rem;
    left: 1rem;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 1rem;
    right: 1rem;
    border-left: none;
    border-top: none;
}

/* ============================================
   BACK HOME LINK
   ============================================ */

.back-home {
    position: fixed;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-home:hover {
    color: var(--text-white);
    border-color: var(--accent-blue);
}

/* ============================================
   BONUS BANNER
   ============================================ */

.bonus-banner {
    background: var(--gradient-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.bonus-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.bonus-text {
    font-size: 0.875rem;
}

/* ============================================
   ADD FUNDS
   ============================================ */

.add-funds-container {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-gradient-navy {
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
}

/* ============================================
   REMAINING COMPONENT STYLES
   ============================================ */

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-site {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A1F44 0%, #1e293b 100%);
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
}

.dashboard-nav {
    background: var(--glass-bg);
    padding: 1rem;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 900;
}

.sidebar-nav {
    list-style: none;
    margin-top: 2rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-white);
}

/* Stats Grid & Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.stat-number,
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--accent-green);
}

.stat-change.negative {
    color: var(--accent-red);
}

.stat {
    margin-bottom: 0.5rem;
}

/* Charts */
.chart-card,
.charts-row {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Tables */
.table-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.table-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.data-table th {
    background: var(--glass-bg-light);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.data-table td {
    color: var(--text-white);
}

.data-table tr:hover {
    background: var(--glass-bg-light);
}

/* Search Box */
.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
}

.search-btn {
    padding: 0.75rem 1rem;
    background: var(--accent-blue);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    font-weight: 600;
    color: var(--text-white);
}

.user-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--glass-bg-light);
    border-radius: 4px;
    color: var(--text-muted);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.status-badge.verified,
.status-badge.active,
.status-check,
.status-open {
    background: rgba(0, 168, 107, 0.2);
    color: var(--accent-green);
}

.status-badge.pending {
    background: rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
}

.status-badge.rejected,
.status-closed {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent-green);
}

/* Notification */
.notification-wrapper {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.show-icon,
.hide-icon {
    font-size: 1.25rem;
}

.password-strength {
    margin-top: 0.5rem;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    overflow: hidden;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Buttons Extended */
.btn-container {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-text {
    display: inline-block;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background: var(--glass-bg-light);
}

.btn-github {
    background: #24292e;
}

.btn-plan,
.btn-plan-primary,
.btn-plan-gold {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.btn-plan-primary {
    background: var(--gradient-accent);
    color: white;
}

.btn-plan-gold {
    background: var(--gradient-gold);
    color: #000;
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Input Groups */
.input-group-lg input {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
}

.currency-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Quick Amounts */
.quick-amounts {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Plan Components */
.plans-section,
.plans-hero {
    padding: 80px 0;
}

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

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.plan-range {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.plan-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Calculator Extended */
.calculator-section {
    padding: 80px 0;
}

.calculator-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.calculator-results {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.result-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

/* Range Slider */
.range-slider,
.slider-theme {
    width: 100%;
    height: 6px;
    background: var(--glass-border);
    border-radius: 3px;
    appearance: none;
}

.range-slider::-webkit-slider-thumb,
.slider-theme::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
}

/* Certificate Extended */
.certificate {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    padding: 4rem;
}

.certificate-container {
    max-width: 800px;
    margin: 0 auto;
}

.certificate-content {
    text-align: center;
}

.cert-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.cert-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cert-details {
    margin: 2rem 0;
}

.cert-authority {
    color: var(--text-muted);
    font-style: italic;
}

/* Seals Extended */
.seal-outer {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seal-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seal-verified {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.seal-year {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Signature Extended */
.signatures {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.signature {
    text-align: center;
}

.signature-handwritten {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--accent-gold);
}

.signature-title {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Stamps & Decorative */
.stamp {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
}

.stamp-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-align: center;
}

.emblem {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.emblem-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.decorative-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto;
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
}

/* Logo Variants */
.logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo-icon {
    font-size: 1.5rem;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.license-number {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Team Extended */
.team-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.team-info {
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.credential-tag {
    background: var(--glass-bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Extended */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
}

/* Error Extended */
.error-container {
    max-width: 500px;
    text-align: center;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: left;
}

.error-msg {
    color: var(--accent-red);
    font-size: 0.875rem;
}

/* Payment Extended */
.method-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.method-card {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-card:hover,
.method-card.selected {
    border-color: var(--accent-blue);
}

.payment-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.min-amount-notice {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.limit-display {
    background: var(--glass-bg-light);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

/* Summary Extended */
.summary-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Forms Extended */
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.label-icon {
    margin-right: 0.5rem;
}

/* File Upload */
.file-upload {
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: var(--accent-blue);
}

/* Withdraw Container */
.withdraw-container {
    max-width: 600px;
    margin: 0 auto;
}

.withdraw-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Tickets */
.ticket-list {
    margin-top: 1rem;
}

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* Dispute */
.dispute-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Callback */
.callback-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Detail Items */
.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    color: var(--text-white);
    font-weight: 600;
}

/* Features Extended */
.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-content h4 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Sections Extended */
.section-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--glass-border);
}

/* Security */
.security-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.security-pin-box {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.pin-input-group {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.pin-digit {
    width: 50px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.pin-digit:focus {
    border-color: var(--accent-blue);
    outline: none;
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    color: white;
}

/* Spinner */
.spinner,
.pending-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Theme Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-switch {
    width: 50px;
    height: 26px;
    background: var(--glass-bg);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
}

.sun,
.moon {
    font-size: 0.875rem;
}

/* Sound Toggle */
.sound-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Diamond Decoration */
.diamond {
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    transform: rotate(45deg);
}

/* Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Links */
.link,
.link-gold {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    text-decoration: underline;
}

.link-gold {
    color: var(--accent-gold);
}

.helpful-links {
    margin-top: 2rem;
}

.helpful-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
}

.helpful-link:hover {
    color: var(--accent-blue);
}

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

/* Footer Extended */
.footer-about {
    max-width: 300px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Retry Timer */
.retry-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Referral */
.referral-quick-share {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Locked Overlay */
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

/* Print Button */
.print-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Loan Metric Card */
.loan-metric-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

/* Profit */
.profit {
    color: var(--accent-green);
    font-weight: 600;
}

/* Text Utilities */
.text-gold {
    color: var(--accent-gold);
}

/* Grid Extended */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {

    .grid-2,
    .calculator-grid,
    .social-login {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .dashboard-main {
        padding: 1rem;
    }
}

/* === GOOGLE TRANSLATE CUSTOM STYLES === */
#google_translate_element {
    display: inline-block;
    padding: 0 5px;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: var(--text-white) !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 6px 10px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    outline: none !important;
}

.goog-te-gadget .goog-te-combo:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.goog-te-gadget .goog-te-combo option {
    background: #1e293b !important;
    color: #fff !important;
}

/* Hide Google Top Bar frame */
body {
    top: 0px !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Hide Google branding/logo if possible */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget span {
    display: none !important;
}
