/* ============================================
   CYBER TERMINAL THEME
   Version: 12.0
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Sarabun:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --cyber-green: #00ff41;
    --cyber-green-dim: #00cc33;
    --cyber-green-dark: #009922;
    --cyber-green-glow: rgba(0, 255, 65, 0.5);
    --cyber-green-10: rgba(0, 255, 65, 0.1);
    --cyber-green-20: rgba(0, 255, 65, 0.2);
    --cyber-green-30: rgba(0, 255, 65, 0.3);
    --cyber-green-50: rgba(0, 255, 65, 0.5);
    --cyber-bg: #000000;
    --cyber-bg-card: rgba(0, 255, 65, 0.02);
    --transition: all 0.3s ease;
}

/* Keyframes */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--cyber-green-30); }
    50% { box-shadow: 0 0 20px var(--cyber-green-50); }
}

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

html, body {
    min-height: 100vh;
}

body {
    font-family: 'JetBrains Mono', 'Sarabun', monospace;
    background: var(--cyber-bg);
    color: var(--cyber-green);
    line-height: 1.6;
    position: relative;
}

/* Scanlines */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9998;
}

/* CRT Vignette */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 9997;
}

/* Matrix Rain */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-size: 14px;
    line-height: 1.2;
    color: var(--cyber-green);
    text-shadow: 0 0 10px var(--cyber-green-glow);
    animation: matrixFall linear infinite;
    writing-mode: vertical-rl;
}

/* Selection */
::selection {
    background: var(--cyber-green);
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cyber-bg);
    border-left: 1px solid var(--cyber-green-30);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-green-30);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-green);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyber-green);
    font-weight: 700;
}

a {
    color: var(--cyber-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-shadow: 0 0 10px var(--cyber-green-glow);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.container-fluid {
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(0, 5, 0, 0.95) !important;
    border: none !important;
    border-bottom: 1px solid var(--cyber-green-30) !important;
    margin-bottom: 0;
    position: relative;
    z-index: 1000;
}

.navbar-default {
    background: transparent;
}

.navbar-brand {
    color: var(--cyber-green) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.navbar-brand::before {
    content: '>';
    animation: blink 1s step-end infinite;
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.navbar-nav > li > a {
    color: var(--cyber-green) !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 16px !important;
    transition: var(--transition);
}

.navbar-nav > li > a::before {
    content: '[';
    opacity: 0;
    transition: var(--transition);
}

.navbar-nav > li > a::after {
    content: ']';
    opacity: 0;
    transition: var(--transition);
}

.navbar-nav > li > a:hover::before,
.navbar-nav > li > a:hover::after,
.navbar-nav > li.active > a::before,
.navbar-nav > li.active > a::after {
    opacity: 1;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    background: transparent !important;
    text-shadow: 0 0 15px var(--cyber-green-glow);
}

.navbar-nav > li > a .badge {
    background: var(--cyber-green) !important;
    color: #000 !important;
    font-weight: 600;
    margin-left: 8px;
}

.navbar-toggle {
    border-color: var(--cyber-green-30) !important;
}

.navbar-toggle .icon-bar {
    background-color: var(--cyber-green) !important;
}

.navbar-collapse {
    border-color: var(--cyber-green-30) !important;
}

/* Dropdown */
.dropdown-menu {
    background: rgba(0, 5, 0, 0.98) !important;
    border: 1px solid var(--cyber-green-30) !important;
    border-radius: 0 !important;
}

.dropdown-menu > li > a {
    color: var(--cyber-green) !important;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.dropdown-menu > li > a:hover {
    background: var(--cyber-green-10) !important;
}

/* ============================================
   WELL / CARD
   ============================================ */
.well {
    background: var(--cyber-bg-card) !important;
    border: 1px solid var(--cyber-green-30) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 30px;
    position: relative;
}

.well::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyber-green), transparent);
    opacity: 0.5;
}

/* Terminal Header for Well */
.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--cyber-green-20);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--cyber-green-30);
}

.terminal-dot.red { border-color: #ff5f56; }
.terminal-dot.yellow { border-color: #ffbd2e; }
.terminal-dot.green { border-color: var(--cyber-green); background: var(--cyber-green); }

.terminal-title {
    font-size: 12px;
    color: var(--cyber-green-50);
    letter-spacing: 1px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.control-label,
label {
    color: var(--cyber-green) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px !important;
    display: block;
}

.control-label::before,
label::before {
    content: '> ';
    opacity: 0.6;
}

.form-control {
    background: var(--cyber-bg-card) !important;
    border: 1px solid var(--cyber-green-30) !important;
    border-radius: 0 !important;
    color: var(--cyber-green) !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    height: auto !important;
    transition: var(--transition);
    box-shadow: none !important;
}

.form-control:focus {
    border-color: var(--cyber-green) !important;
    box-shadow: 0 0 20px var(--cyber-green-20) !important;
    background: rgba(0, 255, 65, 0.05) !important;
}

.form-control::placeholder {
    color: var(--cyber-green-30) !important;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff41' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}

select.form-control option {
    background: #000 !important;
    color: var(--cyber-green) !important;
}

/* Checkbox */
.checkbox label {
    color: var(--cyber-green) !important;
    font-size: 13px !important;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox label::before {
    content: none;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--cyber-green-30);
    background: transparent;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

.checkbox input[type="checkbox"]:checked {
    background: var(--cyber-green);
    border-color: var(--cyber-green);
}

.checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px !important;
    border-radius: 0 !important;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent !important;
    border: 1px solid var(--cyber-green) !important;
    color: var(--cyber-green) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-green);
    transition: 0.3s ease;
    z-index: -1;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #000 !important;
    box-shadow: 0 0 20px var(--cyber-green-50) !important;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-default {
    background: transparent !important;
    border: 1px solid var(--cyber-green-30) !important;
    color: var(--cyber-green) !important;
}

.btn-default:hover {
    background: var(--cyber-green-10) !important;
    border-color: var(--cyber-green) !important;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: 0 !important;
    border: 1px solid;
    background: transparent !important;
    padding: 16px 20px;
}

.alert-success {
    border-color: var(--cyber-green) !important;
    color: var(--cyber-green) !important;
    background: var(--cyber-green-10) !important;
}

.alert-danger {
    border-color: #ff5f56 !important;
    color: #ff5f56 !important;
    background: rgba(255, 95, 86, 0.1) !important;
}

.alert-warning {
    border-color: #ffbd2e !important;
    color: #ffbd2e !important;
    background: rgba(255, 189, 46, 0.1) !important;
}

.alert-info {
    border-color: #00d4ff !important;
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1) !important;
}

.alert .close {
    color: inherit !important;
    opacity: 0.7;
    text-shadow: none !important;
}

.alert .close:hover {
    opacity: 1;
}

/* ============================================
   TABLES
   ============================================ */
.table {
    background: transparent !important;
}

.table > thead > tr > th {
    background: var(--cyber-green-10) !important;
    color: var(--cyber-green) !important;
    border-bottom: 1px solid var(--cyber-green-30) !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 16px !important;
}

.table > tbody > tr > td {
    border-top: 1px dashed var(--cyber-green-20) !important;
    color: var(--cyber-green) !important;
    padding: 14px 16px !important;
}

.table > tbody > tr:hover > td {
    background: var(--cyber-green-10) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: var(--cyber-bg-card) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination > li > a,
.pagination > li > span {
    background: transparent !important;
    border: 1px solid var(--cyber-green-30) !important;
    color: var(--cyber-green) !important;
    padding: 8px 14px;
    margin: 0 2px;
}

.pagination > li > a:hover {
    background: var(--cyber-green-10) !important;
    border-color: var(--cyber-green) !important;
}

.pagination > .active > a,
.pagination > .active > span {
    background: var(--cyber-green) !important;
    border-color: var(--cyber-green) !important;
    color: #000 !important;
}

/* ============================================
   PANELS
   ============================================ */
.panel {
    background: var(--cyber-bg-card) !important;
    border: 1px solid var(--cyber-green-30) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.panel-heading {
    background: var(--cyber-green-10) !important;
    border-bottom: 1px solid var(--cyber-green-30) !important;
    border-radius: 0 !important;
    color: var(--cyber-green) !important;
    padding: 14px 20px;
}

.panel-body {
    padding: 20px;
    color: var(--cyber-green);
}

.panel-default > .panel-heading {
    color: var(--cyber-green) !important;
}

/* ============================================
   LABELS / BADGES
   ============================================ */
.label {
    border-radius: 0 !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
}

.label-default {
    background: var(--cyber-green-30) !important;
    color: var(--cyber-green) !important;
}

.label-primary {
    background: var(--cyber-green) !important;
    color: #000 !important;
}

.label-success {
    background: var(--cyber-green) !important;
    color: #000 !important;
}

.label-warning {
    background: #ffbd2e !important;
    color: #000 !important;
}

.label-danger {
    background: #ff5f56 !important;
    color: #000 !important;
}

.badge {
    border-radius: 0 !important;
    background: var(--cyber-green) !important;
    color: #000 !important;
    font-weight: 600;
}

/* ============================================
   FORGOT PASSWORD LINK
   ============================================ */
.forgot-password {
    font-size: 12px;
    color: var(--cyber-green-50) !important;
    display: block;
    margin-top: 8px;
}

.forgot-password:hover {
    color: var(--cyber-green) !important;
}

/* ============================================
   PULL RIGHT MIDDLE
   ============================================ */
.pull-right-middle {
    color: var(--cyber-green-50);
    font-size: 13px;
}

.pull-right-middle a {
    color: var(--cyber-green) !important;
}

/* ============================================
   RTL SUPPORT
   ============================================ */
.rtl-form,
.rtl-navbar,
.rtl-alert,
.rtl-content {
    direction: rtl;
    text-align: right;
}

/* ============================================
   GOOGLE SIGN IN
   ============================================ */
.g_id_signin {
    margin-left: 10px;
}

/* ============================================
   NOTIFY WRAPPER
   ============================================ */
#notify-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    border-radius: 0 !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: rgba(0, 5, 0, 0.95);
    border-top: 1px solid var(--cyber-green-30);
    padding: 30px 0;
    margin-top: 60px;
    position: relative;
    z-index: 5;
}

footer a {
    color: var(--cyber-green-50);
}

footer a:hover {
    color: var(--cyber-green);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(0, 5, 0, 0.98) !important;
    }
    
    .navbar-nav > li > a::before,
    .navbar-nav > li > a::after {
        display: none;
    }
    
    .well {
        padding: 20px;
    }
    
    .container-fluid {
        padding: 0 15px;
    }
}

/* ============================================
   SEARCH DROPDOWN
   ============================================ */
.search-dropdown input {
    padding-left: 40px !important;
}

.search-dropdown button {
    color: var(--cyber-green) !important;
}

/* ============================================
   BORDER SOLID
   ============================================ */
.border-solid {
    border: 1px solid var(--cyber-green-30) !important;
    padding: 15px;
    background: var(--cyber-bg-card);
}

.border-rounded {
    border-radius: 0 !important;
}

/* ============================================
   TERMS CHECKBOX
   ============================================ */
.terms {
    font-size: 13px !important;
}

.terms-accept-checkbox {
    margin-right: 8px;
}

/* ============================================
   ROW COL ADJUSTMENTS
   ============================================ */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-8.col-md-offset-2 {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* ============================================
   TEXT ALIGNMENT FOR MD
   ============================================ */
@media (min-width: 992px) {
    .text-md-right {
        text-align: right;
    }
}

/* ============================================
   NEW ORDER PAGE - SEO STYLES
   ============================================ */

/* SEO Hero */
.seo-hero {
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    margin-bottom: 30px;
}

.seo-title {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-subtitle {
    font-size: 14px;
    color: rgba(0, 255, 65, 0.7);
    max-width: 800px;
    margin-bottom: 20px;
}

.seo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terminal-prompt {
    color: #00ff41;
    opacity: 0.7;
}

.cursor-blink {
    animation: blink 1s step-end infinite;
}

/* Order Terminal */
.order-terminal {
    margin-bottom: 30px;
}

.charge-input {
    font-size: 24px !important;
    font-weight: 700 !important;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 24px !important;
    font-size: 16px !important;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 20px;
}

.widget-header {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-header i {
    color: #00ff41;
}

/* Stats */
.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 16px;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #00ff41;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    display: block;
}

.stat-label {
    font-size: 11px;
    color: rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platform Grid Mini */
.platform-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.platform-item {
    text-align: center;
    padding: 12px 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.platform-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 6px;
}

.platform-item span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step List */
.step-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ff41;
    font-size: 12px;
    font-weight: 700;
    color: #00ff41;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 11px;
    color: rgba(0, 255, 65, 0.6);
    margin: 0;
}

/* Security Widget */
.security-widget {
    background: rgba(0, 255, 65, 0.05) !important;
    border-color: #00ff41 !important;
}

.security-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-icon {
    font-size: 32px;
    color: #00ff41;
}

.security-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.security-text p {
    font-size: 12px;
    color: rgba(0, 255, 65, 0.7);
    margin: 0;
}

/* SEO Content Section */
.seo-content-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.seo-content-well {
    padding: 40px;
}

.seo-article h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.seo-article h3 {
    font-size: 18px;
    margin: 32px 0 20px;
}

.seo-article h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.seo-article p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* SEO Features */
.seo-features {
    display: grid;
    gap: 20px;
}

.seo-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
}

.seo-feature > i {
    font-size: 24px;
    color: #00ff41;
    flex-shrink: 0;
}

.seo-feature p {
    font-size: 13px;
    margin: 0;
    color: rgba(0, 255, 65, 0.7);
}

/* SEO Services */
.seo-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.seo-service-card {
    padding: 24px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
}

.seo-service-card > i {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.seo-service-card h4 {
    margin-bottom: 16px;
}

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-service-card li {
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
    color: rgba(0, 255, 65, 0.8);
}

.seo-service-card li:last-child {
    border-bottom: none;
}

.seo-service-card li::before {
    content: '> ';
    color: #00ff41;
}

/* SEO Why Us */
.seo-why-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
    flex-shrink: 0;
}

.why-icon i {
    font-size: 20px;
    color: #00ff41;
}

.why-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.why-item p {
    font-size: 12px;
    margin: 0;
    color: rgba(0, 255, 65, 0.7);
}

/* SEO FAQ */
.seo-faq {
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 12px;
}

.faq-answer {
    padding: 0 20px 16px 48px;
    font-size: 13px;
    color: rgba(0, 255, 65, 0.8);
    display: flex;
    gap: 12px;
}

.q-icon, .a-icon {
    color: #00ff41;
    font-weight: 700;
    flex-shrink: 0;
}

/* Column Layout */
.col-lg-8 {
    width: 66.666667%;
    float: left;
    padding: 0 15px;
}

.col-lg-4 {
    width: 33.333333%;
    float: left;
    padding: 0 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .seo-services,
    .seo-why-us {
        grid-template-columns: 1fr;
    }
    
    .col-lg-8,
    .col-lg-4 {
        width: 100%;
        float: none;
    }
}

@media (max-width: 768px) {
    .seo-title {
        font-size: 22px;
    }
    
    .seo-badges {
        gap: 8px;
    }
    
    .seo-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .platform-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-content-well {
        padding: 24px;
    }
}

/* Clearfix */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: rgba(0, 5, 0, 0.95);
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
    z-index: 5;
    text-align: center;
}

.footer-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: rgba(0, 255, 65, 0.7);
}

.footer-seo {
    font-size: 11px !important;
    color: rgba(0, 255, 65, 0.4) !important;
    letter-spacing: 1px;
}

/* Main Content */
main {
    position: relative;
    z-index: 5;
    min-height: calc(100vh - 200px);
}

/* ============================================
   LANDING PAGE - SIGNIN.TWIG
   ============================================ */

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 5;
}

.hero-content {
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--cyber-green);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    background: rgba(0, 255, 65, 0.1);
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 255, 65, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(0, 255, 65, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

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

.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.stat-txt {
    font-size: 11px;
    color: rgba(0, 255, 65, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 11px;
}

.feature-badge i {
    color: #00ff41;
}

/* Login Terminal */
.login-terminal {
    margin-top: 0;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 255, 65, 0.2);
    font-size: 13px;
    color: rgba(0, 255, 65, 0.6);
}

.google-signin-wrap {
    margin-top: 20px;
}

.divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 255, 65, 0.2);
}

.divider span {
    background: #000;
    padding: 0 16px;
    position: relative;
    font-size: 12px;
    color: rgba(0, 255, 65, 0.5);
}

/* Section Styles */
.platforms-section,
.howitworks-section,
.whyus-section,
.pricing-section,
.faq-section,
.cta-section,
.seo-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.platforms-section {
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    color: rgba(0, 255, 65, 0.5);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 14px;
    color: rgba(0, 255, 65, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.platform-card {
    padding: 30px 20px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.2);
}

.platform-card i {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.platform-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
}

.platform-card li {
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
    color: rgba(0, 255, 65, 0.7);
}

.platform-card li:last-child {
    border-bottom: none;
}

.platform-card li::before {
    content: '> ';
    color: #00ff41;
}

.platform-price {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #00ff41;
    font-size: 11px;
    color: #00ff41;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    padding: 32px 24px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 8px 16px;
    background: #00ff41;
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 16px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 24px;
}

.step-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: rgba(0, 255, 65, 0.6);
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(0, 255, 65, 0.7);
    margin: 0;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-table .table {
    margin-bottom: 0;
}

.price-cell {
    color: #00ff41;
    font-weight: 600;
}

.text-success {
    color: #00ff41 !important;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    border: 1px dashed rgba(0, 255, 65, 0.2);
    font-size: 13px;
    color: rgba(0, 255, 65, 0.6);
}

/* FAQ Section */
.faq-section {
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(0, 255, 65, 0.2);
    margin-bottom: 12px;
    background: rgba(0, 255, 65, 0.02);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 65, 0.05);
}

.faq-question .q-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ff41;
    color: #00ff41;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
    font-size: 14px;
}

.faq-question i {
    color: rgba(0, 255, 65, 0.5);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px 20px 72px;
    font-size: 13px;
    color: rgba(0, 255, 65, 0.7);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.05);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(0, 255, 65, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* SEO Section */
.seo-section {
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.seo-content {
    padding: 40px;
}

.seo-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.seo-content h3 {
    font-size: 18px;
    margin: 24px 0 16px;
}

.seo-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 255, 65, 0.8);
    margin-bottom: 16px;
}

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

.seo-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
    font-size: 14px;
}

.seo-list li::before {
    content: '> ';
    color: #00ff41;
}

/* Responsive */
@media (max-width: 1200px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: space-between;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .platform-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle-wrap {
    display: flex;
    align-items: center;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--cyber-green, #00ff41);
    color: var(--cyber-green, #00ff41);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 5px 10px;
}

.theme-toggle-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.theme-toggle-btn i {
    font-size: 16px;
    position: absolute;
    transition: all 0.3s ease;
}

/* Dark theme (default) - show sun icon */
body:not(.light-theme) .theme-toggle-btn #themeIconLight,
body:not(.light-theme) .theme-toggle-btn .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg);
}

body:not(.light-theme) .theme-toggle-btn #themeIconDark,
body:not(.light-theme) .theme-toggle-btn .theme-icon-dark {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Light theme - show moon icon */
body.light-theme .theme-toggle-btn #themeIconLight,
body.light-theme .theme-toggle-btn .theme-icon-light {
    opacity: 0;
    transform: rotate(90deg);
}

body.light-theme .theme-toggle-btn #themeIconDark,
body.light-theme .theme-toggle-btn .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg);
}

/* ============================================
   TYPING EFFECT
   ============================================ */
.typing-text {
    display: inline;
}

.cursor-blink {
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   LIGHT THEME
   ============================================ */
body.light-theme {
    background: #f5f5f5;
    color: #1a1a2e;
}

body.light-theme::before {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.02),
        rgba(0, 0, 0, 0.02) 1px,
        transparent 1px,
        transparent 2px
    );
}

body.light-theme::after {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
}

body.light-theme .matrix-rain {
    opacity: 0.03;
}

body.light-theme .matrix-column {
    color: #009922;
}

/* Navbar Light */
body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(0, 153, 34, 0.2) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.light-theme .navbar-brand {
    color: #009922 !important;
}

body.light-theme .navbar-nav > li > a {
    color: #1a1a2e !important;
}

body.light-theme .navbar-nav > li > a:hover,
body.light-theme .navbar-nav > li.active > a {
    color: #009922 !important;
    text-shadow: none;
}

body.light-theme .navbar-toggle .icon-bar {
    background-color: #009922 !important;
}

body.light-theme .dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(0, 153, 34, 0.2) !important;
}

body.light-theme .dropdown-menu > li > a {
    color: #1a1a2e !important;
}

body.light-theme .dropdown-menu > li > a:hover {
    background: rgba(0, 153, 34, 0.1) !important;
    color: #009922 !important;
}

/* Theme Toggle Light */
body.light-theme .theme-toggle-btn {
    border-color: #009922;
    color: #009922;
}

body.light-theme .theme-toggle-btn:hover {
    background: rgba(0, 153, 34, 0.1);
}

/* Well / Cards Light */
body.light-theme .well {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 153, 34, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body.light-theme .well::before {
    background: linear-gradient(90deg, transparent, #009922, transparent);
}

body.light-theme .terminal-header {
    border-bottom-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .terminal-title {
    color: rgba(0, 153, 34, 0.6);
}

/* Typography Light */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #1a1a2e;
}

body.light-theme .hero-title {
    text-shadow: none;
}

body.light-theme .terminal-prompt {
    color: #009922;
}

body.light-theme a {
    color: #009922;
}

body.light-theme .hero-subtitle,
body.light-theme .seo-subtitle {
    color: #555;
}

/* Stats Light */
body.light-theme .stat-num,
body.light-theme .stat-number {
    color: #009922;
    text-shadow: none;
}

body.light-theme .stat-txt,
body.light-theme .stat-label {
    color: #777;
}

/* Badges Light */
body.light-theme .hero-badge,
body.light-theme .seo-badge,
body.light-theme .feature-badge {
    border-color: rgba(0, 153, 34, 0.3);
    background: rgba(0, 153, 34, 0.05);
    color: #1a1a2e;
}

body.light-theme .feature-badge i,
body.light-theme .seo-badge i {
    color: #009922;
}

/* Forms Light */
body.light-theme .control-label,
body.light-theme label {
    color: #1a1a2e !important;
}

body.light-theme .form-control {
    background: #fff !important;
    border-color: rgba(0, 153, 34, 0.3) !important;
    color: #1a1a2e !important;
}

body.light-theme .form-control:focus {
    border-color: #009922 !important;
    box-shadow: 0 0 20px rgba(0, 153, 34, 0.15) !important;
}

body.light-theme .form-control::placeholder {
    color: #999 !important;
}

body.light-theme .checkbox label {
    color: #1a1a2e !important;
}

/* Buttons Light */
body.light-theme .btn-primary {
    border-color: #009922 !important;
    color: #009922 !important;
}

body.light-theme .btn-primary::before {
    background: #009922;
}

body.light-theme .btn-primary:hover {
    color: #fff !important;
}

body.light-theme .btn-default {
    border-color: rgba(0, 153, 34, 0.3) !important;
    color: #1a1a2e !important;
}

body.light-theme .btn-default:hover {
    background: rgba(0, 153, 34, 0.1) !important;
    border-color: #009922 !important;
}

/* Cards Light */
body.light-theme .platform-card,
body.light-theme .step-card,
body.light-theme .feature-card,
body.light-theme .faq-item {
    border-color: rgba(0, 153, 34, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

body.light-theme .platform-card:hover,
body.light-theme .step-card:hover,
body.light-theme .feature-card:hover {
    border-color: #009922;
    background: rgba(0, 153, 34, 0.05);
    box-shadow: 0 10px 40px rgba(0, 153, 34, 0.15);
}

body.light-theme .platform-card h3,
body.light-theme .step-card h3,
body.light-theme .feature-card h3 {
    color: #1a1a2e;
}

body.light-theme .platform-card li,
body.light-theme .step-card p,
body.light-theme .feature-card p {
    color: #555;
}

body.light-theme .platform-card li::before {
    color: #009922;
}

body.light-theme .platform-price {
    border-color: #009922;
    color: #009922;
}

body.light-theme .step-number {
    background: #009922;
}

body.light-theme .step-icon,
body.light-theme .feature-icon {
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

/* Table Light */
body.light-theme .table > thead > tr > th {
    background: rgba(0, 153, 34, 0.1) !important;
    color: #1a1a2e !important;
    border-bottom-color: rgba(0, 153, 34, 0.2) !important;
}

body.light-theme .table > tbody > tr > td {
    color: #1a1a2e !important;
    border-top-color: rgba(0, 153, 34, 0.1) !important;
}

body.light-theme .table > tbody > tr:hover > td {
    background: rgba(0, 153, 34, 0.05) !important;
}

body.light-theme .price-cell {
    color: #009922;
}

/* FAQ Light */
body.light-theme .faq-question {
    color: #1a1a2e;
}

body.light-theme .faq-question:hover {
    background: rgba(0, 153, 34, 0.05);
}

body.light-theme .faq-question .q-icon {
    border-color: #009922;
    color: #009922;
}

body.light-theme .faq-answer {
    color: #555;
}

/* CTA Light */
body.light-theme .cta-section {
    background: rgba(0, 153, 34, 0.05);
}

body.light-theme .cta-content h2 {
    color: #1a1a2e;
}

body.light-theme .cta-content p {
    color: #555;
}

/* SEO Content Light */
body.light-theme .seo-content p,
body.light-theme .seo-article p {
    color: #444;
}

body.light-theme .seo-list li {
    color: #444;
    border-bottom-color: rgba(0, 153, 34, 0.1);
}

body.light-theme .seo-list li::before {
    color: #009922;
}

body.light-theme .seo-feature,
body.light-theme .seo-service-card,
body.light-theme .why-item {
    border-color: rgba(0, 153, 34, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

body.light-theme .seo-feature i,
body.light-theme .seo-service-card > i,
body.light-theme .why-icon i {
    color: #009922;
}

body.light-theme .seo-feature h4,
body.light-theme .seo-service-card h4,
body.light-theme .why-item strong {
    color: #1a1a2e;
}

body.light-theme .seo-feature p,
body.light-theme .seo-service-card li,
body.light-theme .why-item p {
    color: #555;
}

/* Footer Light */
body.light-theme footer {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .footer-content p {
    color: #555;
}

body.light-theme .footer-seo {
    color: #999 !important;
}

/* Sections Border Light */
body.light-theme .platforms-section,
body.light-theme .pricing-section,
body.light-theme .faq-section,
body.light-theme .seo-section,
body.light-theme .seo-content-section {
    border-top-color: rgba(0, 153, 34, 0.15);
}

/* Section Header Light */
body.light-theme .section-tag {
    color: #009922;
}

body.light-theme .section-header p {
    color: #666;
}

/* Sidebar Light */
body.light-theme .widget-header {
    border-bottom-color: rgba(0, 153, 34, 0.2);
    color: #1a1a2e;
}

body.light-theme .widget-header i {
    color: #009922;
}

body.light-theme .stat-item {
    border-bottom-color: rgba(0, 153, 34, 0.1);
}

body.light-theme .stat-icon {
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

body.light-theme .platform-item {
    border-color: rgba(0, 153, 34, 0.2);
    color: #1a1a2e;
}

body.light-theme .platform-item:hover {
    border-color: #009922;
    background: rgba(0, 153, 34, 0.1);
}

body.light-theme .step-item {
    border-bottom-color: rgba(0, 153, 34, 0.1);
}

body.light-theme .step-num {
    border-color: #009922;
    color: #009922;
}

body.light-theme .step-content strong {
    color: #1a1a2e;
}

body.light-theme .step-content p {
    color: #666;
}

body.light-theme .security-widget {
    background: rgba(0, 153, 34, 0.05) !important;
    border-color: #009922 !important;
}

body.light-theme .security-icon {
    color: #009922;
}

body.light-theme .security-text strong {
    color: #1a1a2e;
}

body.light-theme .security-text p {
    color: #555;
}

/* Alerts Light */
body.light-theme .alert-success {
    border-color: #009922 !important;
    color: #009922 !important;
    background: rgba(0, 153, 34, 0.1) !important;
}

body.light-theme .alert-danger {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

/* Badge Light */
body.light-theme .badge {
    background: #009922 !important;
}

/* Signup Link Light */
body.light-theme .signup-link {
    color: #666;
    border-top-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .signup-link a {
    color: #009922;
}

/* Forgot Password Light */
body.light-theme .forgot-password {
    color: #666 !important;
}

body.light-theme .forgot-password:hover {
    color: #009922 !important;
}

/* Pricing Note Light */
body.light-theme .pricing-note {
    border-color: rgba(0, 153, 34, 0.2);
    color: #666;
}

/* Scrollbar Light */
body.light-theme::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-left-color: rgba(0, 153, 34, 0.2);
}

body.light-theme::-webkit-scrollbar-thumb {
    background: rgba(0, 153, 34, 0.3);
}

body.light-theme::-webkit-scrollbar-thumb:hover {
    background: #009922;
}

/* ============================================
   TYPING EFFECT - STABLE VERSION
   ============================================ */
#typingText {
    display: inline;
}

.hero-title {
    font-size: 36px;
    line-height: 1.3;
    min-height: 50px;
    word-wrap: break-word;
}

/* Cursor */
.cursor-blink {
    display: inline-block;
    animation: cursorBlink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 24px;
        min-height: 36px;
    }
}

/* ============================================
   NEW ORDER PAGE - RESPONSIVE
   ============================================ */
.neworder-page {
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

.page-header-section {
    margin-bottom: 32px;
}

.page-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 14px;
    color: rgba(0, 255, 65, 0.6);
}

/* Order Card */
.order-card {
    margin-bottom: 24px;
}

/* Search Group */
.search-group {
    margin-bottom: 24px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 255, 65, 0.5);
    z-index: 1;
}

.search-input {
    padding-left: 44px !important;
}

/* Icon Label */
.icon-label {
    margin-right: 8px;
    opacity: 0.7;
}

/* Service Description */
.service-desc-box {
    padding: 16px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.02);
    font-size: 13px;
    line-height: 1.7;
}

/* Charge Group */
.charge-group {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0, 255, 65, 0.2);
}

.charge-input {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #00ff41 !important;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

/* Terms Group */
.terms-group {
    margin: 24px 0;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.terms-label::before {
    content: none !important;
}

.terms-checkbox {
    margin-top: 3px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 24px !important;
    font-size: 16px !important;
    margin-top: 16px;
}

/* Success Alert Styles */
.success-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.success-header i {
    font-size: 24px;
}

.success-header h4 {
    margin: 0;
    font-size: 16px;
}

.success-details {
    padding-top: 16px;
    border-top: 1px dashed rgba(0, 255, 65, 0.3);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
    flex-wrap: wrap;
    gap: 8px;
}

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

.detail-label {
    color: rgba(0, 255, 65, 0.6);
    flex-shrink: 0;
}

.detail-value {
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

.detail-value.highlight {
    color: #00ff41;
    font-size: 18px;
}

.text-break {
    word-break: break-all;
}

/* Sidebar Cards */
.sidebar-card {
    margin-bottom: 20px;
}

.sidebar-header {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-header i {
    color: #00ff41;
}

.sidebar-body {
    font-size: 13px;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item > i {
    color: #00ff41;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    font-size: 12px;
    color: rgba(0, 255, 65, 0.6);
}

/* Step Mini */
.step-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.15);
}

.step-mini:last-child {
    border-bottom: none;
}

.step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00ff41;
    color: #00ff41;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Support Card */
.support-card {
    background: rgba(0, 255, 65, 0.05) !important;
    border-color: #00ff41 !important;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.support-content > i {
    font-size: 28px;
    color: #00ff41;
}

.support-content strong {
    display: block;
    margin-bottom: 4px;
}

.support-content p {
    margin: 0;
    font-size: 12px;
    color: rgba(0, 255, 65, 0.7);
}

/* ============================================
   NEW ORDER - LIGHT THEME
   ============================================ */
body.light-theme .page-subtitle {
    color: #666;
}

body.light-theme .search-icon {
    color: #999;
}

body.light-theme .service-desc-box {
    border-color: rgba(0, 153, 34, 0.2);
    background: rgba(0, 153, 34, 0.02);
}

body.light-theme .charge-group {
    border-top-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .charge-input {
    color: #009922 !important;
    text-shadow: none;
}

body.light-theme .success-details {
    border-top-color: rgba(0, 153, 34, 0.3);
}

body.light-theme .detail-row {
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .detail-label {
    color: #666;
}

body.light-theme .detail-value.highlight {
    color: #009922;
}

body.light-theme .sidebar-header {
    border-bottom-color: rgba(0, 153, 34, 0.2);
    color: #1a1a2e;
}

body.light-theme .sidebar-header i {
    color: #009922;
}

body.light-theme .info-item {
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .info-item > i {
    color: #009922;
}

body.light-theme .info-item strong {
    color: #1a1a2e;
}

body.light-theme .info-item p {
    color: #666;
}

body.light-theme .step-mini {
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .step-num {
    border-color: #009922;
    color: #009922;
}

body.light-theme .support-card {
    background: rgba(0, 153, 34, 0.05) !important;
    border-color: #009922 !important;
}

body.light-theme .support-content > i {
    color: #009922;
}

body.light-theme .support-content strong {
    color: #1a1a2e;
}

body.light-theme .support-content p {
    color: #555;
}

/* ============================================
   RESPONSIVE - NEW ORDER PAGE
   ============================================ */
@media (max-width: 991px) {
    .neworder-page {
        padding: 24px 0;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    /* Sidebar มาล่าง */
    .col-lg-4 {
        margin-top: 24px;
    }
    
    /* Sidebar เป็น grid 2 คอลัมน์บน tablet */
    .col-lg-4 .sidebar-card {
        display: inline-block;
        width: calc(50% - 10px);
        vertical-align: top;
        margin-right: 20px;
    }
    
    .col-lg-4 .sidebar-card:nth-child(2n) {
        margin-right: 0;
    }
    
    .col-lg-4 .sidebar-card:last-child {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .neworder-page {
        padding: 16px 0;
    }
    
    .page-header-section {
        margin-bottom: 20px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
    
    /* Sidebar กลับเป็น 1 คอลัมน์ */
    .col-lg-4 .sidebar-card {
        width: 100%;
        margin-right: 0;
    }
    
    .charge-input {
        font-size: 20px !important;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .btn-submit {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .support-content {
        gap: 12px;
    }
    
    .support-content > i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 18px;
    }
    
    .terminal-title {
        font-size: 10px;
    }
    
    .success-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .success-header i {
        font-size: 20px;
    }
}

/* ============================================
   SIDEBAR LAYOUT (LOGGED IN)
   ============================================ */

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    border-right: 1px solid rgba(0, 255, 65, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-brand {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.sidebar-brand a {
    display: flex;
    align-items: center;
    color: #00ff41;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.sidebar-brand img {
    max-height: 36px;
    width: auto;
}

.brand-icon {
    margin-right: 6px;
    opacity: 0.7;
}

/* Sidebar Nav */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: rgba(0, 255, 65, 0.7);
    text-decoration: none !important;
    font-size: 14px;
    border-left: 3px solid transparent;
    border-bottom: none !important;
    transition: all 0.2s ease;
}

.sidebar-menu > li > a:hover,
.sidebar-menu > li > a:focus {
    text-decoration: none !important;
}

.sidebar-menu > li > a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.menu-bracket {
    color: #00ff41;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sidebar-menu > li > a:hover .menu-bracket,
.sidebar-menu > li.active > a .menu-bracket {
    opacity: 1;
}

.sidebar-menu > li > a:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
    border-left-color: rgba(0, 255, 65, 0.3);
}

.sidebar-menu > li.active > a {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    border-left-color: #00ff41;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.15);
}

.sidebar-theme-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    color: rgba(0, 255, 65, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-theme-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

/* Top Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 250px;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 900;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sidebar-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 255, 65, 0.3);
    color: #00ff41;
    font-size: 18px;
    cursor: pointer;
}

.page-title-bar {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 255, 65, 0.9);
    margin: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Balance */
.topbar-balance {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
}

.topbar-balance a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff41;
    text-decoration: none;
}

.topbar-balance i.fa-caret-down {
    font-size: 10px;
    opacity: 0.6;
}

/* User */
.topbar-user a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(0, 255, 65, 0.8);
    text-decoration: none;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.topbar-user a:hover {
    color: #00ff41;
}

.user-avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-size: 14px;
}

.user-name {
    font-size: 13px;
    font-weight: 500;
}

/* Dropdown */
.topbar-right .dropdown-menu {
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 0;
    margin-top: 8px;
    padding: 8px 0;
    min-width: 160px;
}

.topbar-right .dropdown-menu > li > a {
    color: rgba(0, 255, 65, 0.8);
    padding: 10px 16px;
    font-size: 13px;
}

.topbar-right .dropdown-menu > li > a:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
}

/* Main Content (Logged In) */
body.has-sidebar {
    padding: 0;
}

body.has-sidebar .main-content {
    margin-left: 250px;
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    padding: 24px;
    position: relative;
    z-index: 5;
}

/* ============================================
   GUEST NAVBAR
   ============================================ */
.guest-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(0, 255, 65, 0.15);
    z-index: 1000;
}

.guest-navbar .container {
    height: 100%;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.guest-navbar .navbar-brand {
    display: flex;
    align-items: center;
    color: #00ff41;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.guest-navbar .navbar-brand img {
    max-height: 36px;
}

/* Language */
.navbar-lang {
    margin-left: 20px;
}

.navbar-lang > a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(0, 255, 65, 0.7);
    font-size: 13px;
    text-decoration: none;
}

.navbar-lang .dropdown-menu {
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 0;
    margin-top: 8px;
}

.navbar-lang .dropdown-menu > li > a {
    color: rgba(0, 255, 65, 0.8);
    padding: 10px 16px;
}

.navbar-lang .dropdown-menu > li > a:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
}

/* Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-theme-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 255, 65, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-theme-btn:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(0, 255, 65, 0.8);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    text-decoration: none !important;
}

.nav-bracket {
    color: #00ff41;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 0 2px;
}

.nav-link:hover .nav-bracket,
.nav-link.active .nav-bracket {
    opacity: 1;
}

.nav-link:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

.nav-link.active {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 255, 65, 0.3);
    color: #00ff41;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(0, 255, 65, 0.15);
    padding: 12px 0;
}

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

.mobile-menu > a,
.mobile-menu > .mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: rgba(0, 255, 65, 0.8);
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.mobile-menu > a:hover,
.mobile-menu > a:focus,
.mobile-menu > .mobile-link:hover,
.mobile-menu > .mobile-link:focus {
    text-decoration: none !important;
}

.mobile-menu > a:hover,
.mobile-menu > a.active,
.mobile-menu > .mobile-link:hover,
.mobile-menu > .mobile-link.active {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

.mobile-menu .nav-bracket {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-menu > .mobile-link:hover .nav-bracket,
.mobile-menu > .mobile-link.active .nav-bracket {
    opacity: 1;
}

/* Guest Content */
.guest-content {
    padding-top: 60px;
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 5;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 255, 65, 0.15);
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.site-footer p {
    margin: 0;
    font-size: 13px;
    color: rgba(0, 255, 65, 0.6);
}

.site-footer .footer-seo {
    font-size: 11px;
    color: rgba(0, 255, 65, 0.3);
    margin-top: 8px;
}

/* Theme Icons */
.icon-sun, .icon-moon { transition: all 0.3s ease; }
body:not(.light-theme) .icon-moon { display: none; }
body.light-theme .icon-sun { display: none; }

/* ============================================
   RESPONSIVE - SIDEBAR
   ============================================ */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    body.sidebar-open .sidebar {
        transform: translateX(0);
    }
    
    body.sidebar-open .sidebar-overlay {
        display: block;
    }
    
    .topbar {
        left: 0;
    }
    
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body.has-sidebar .main-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .topbar {
        padding: 0 16px;
    }
    
    .page-title-bar {
        display: none;
    }
    
    .topbar-balance span {
        display: none;
    }
    
    .user-name {
        display: none;
    }
    
    body.has-sidebar .main-content {
        padding: 16px;
    }
}

/* ============================================
   RESPONSIVE - GUEST NAVBAR
   ============================================ */
@media (max-width: 767px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-lang {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .guest-content {
        padding-top: 60px;
    }
}

/* ============================================
   LIGHT THEME - SIDEBAR
   ============================================ */
body.light-theme .sidebar {
    background: rgba(255, 255, 255, 0.98);
    border-right-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .sidebar-brand a {
    color: #009922;
}

body.light-theme .sidebar-brand {
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .sidebar-menu > li > a {
    color: #444;
}

body.light-theme .sidebar-menu > li > a:hover {
    color: #009922;
    background: rgba(0, 153, 34, 0.05);
    border-left-color: rgba(0, 153, 34, 0.3);
}

body.light-theme .sidebar-menu > li.active > a {
    color: #009922;
    background: rgba(0, 153, 34, 0.1);
    border-left-color: #009922;
}

body.light-theme .menu-bracket {
    color: #009922;
}

body.light-theme .sidebar-footer {
    border-top-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .sidebar-theme-btn {
    background: rgba(0, 153, 34, 0.05);
    border-color: rgba(0, 153, 34, 0.2);
    color: #444;
}

body.light-theme .sidebar-theme-btn:hover {
    background: rgba(0, 153, 34, 0.1);
    color: #009922;
}

body.light-theme .topbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .sidebar-toggle {
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

body.light-theme .page-title-bar {
    color: #333;
}

body.light-theme .topbar-balance {
    background: rgba(0, 153, 34, 0.1);
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

body.light-theme .topbar-balance a {
    color: #009922;
}

body.light-theme .topbar-user a {
    color: #444;
}

body.light-theme .topbar-user a:hover {
    color: #009922;
}

body.light-theme .user-avatar {
    background: rgba(0, 153, 34, 0.1);
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

body.light-theme .topbar-right .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .topbar-right .dropdown-menu > li > a {
    color: #444;
}

body.light-theme .topbar-right .dropdown-menu > li > a:hover {
    background: rgba(0, 153, 34, 0.1);
    color: #009922;
}

/* ============================================
   LIGHT THEME - GUEST NAVBAR
   ============================================ */
body.light-theme .guest-navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .guest-navbar .navbar-brand {
    color: #009922;
}

body.light-theme .navbar-lang > a {
    color: #444;
}

body.light-theme .navbar-lang .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 153, 34, 0.2);
}

body.light-theme .navbar-lang .dropdown-menu > li > a {
    color: #444;
}

body.light-theme .navbar-lang .dropdown-menu > li > a:hover {
    background: rgba(0, 153, 34, 0.1);
    color: #009922;
}

body.light-theme .nav-theme-btn {
    color: #444;
}

body.light-theme .nav-theme-btn:hover {
    color: #009922;
    background: rgba(0, 153, 34, 0.1);
}

body.light-theme .nav-link {
    color: #444;
}

body.light-theme .nav-link:hover {
    color: #009922;
    background: rgba(0, 153, 34, 0.05);
}

body.light-theme .nav-link.active {
    color: #009922;
    background: rgba(0, 153, 34, 0.1);
}

body.light-theme .nav-bracket {
    color: #009922;
}

body.light-theme .mobile-menu-btn {
    border-color: rgba(0, 153, 34, 0.3);
    color: #009922;
}

body.light-theme .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .mobile-menu > a,
body.light-theme .mobile-menu > .mobile-link {
    color: #444;
    border-bottom-color: rgba(0, 153, 34, 0.1);
}

body.light-theme .mobile-menu > a:hover,
body.light-theme .mobile-menu > a.active,
body.light-theme .mobile-menu > .mobile-link:hover,
body.light-theme .mobile-menu > .mobile-link.active {
    color: #009922;
    background: rgba(0, 153, 34, 0.05);
}

body.light-theme .mobile-menu .nav-bracket {
    color: #009922;
}

body.light-theme .site-footer {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 153, 34, 0.15);
}

body.light-theme .site-footer p {
    color: #666;
}

body.light-theme .site-footer .footer-seo {
    color: #999;
}

/* ============================================
   GLOBAL: REMOVE UNDERLINE FROM NAV LINKS
   ============================================ */
.sidebar a,
.topbar a,
.guest-navbar a,
.mobile-menu a,
.dropdown-menu a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.sidebar a:hover,
.sidebar a:focus,
.topbar a:hover,
.topbar a:focus,
.guest-navbar a:hover,
.guest-navbar a:focus,
.mobile-menu a:hover,
.mobile-menu a:focus,
.dropdown-menu a:hover,
.dropdown-menu a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ============================================
   HTML.LIGHT-THEME SUPPORT
   ============================================ */
html.light-theme body {
    background: #f5f5f5;
}

html.light-theme .matrix-rain {
    opacity: 0.03;
}
