/* * GET SEO TECH - Core OS Stylesheet
 * Mục tiêu: Reset hiển thị, thiết lập 100% width cho mọi section
 */

:root {
    --bg-color: #050505; /* Đen huyền bí - System OS */
    --text-color: #ffffff;
    --accent-color: #00ffcc; /* Màu neon/tech */
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Chống vỡ khung màn hình ngang */
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Ép buộc mọi cấu trúc container hiện tại thành Full Width 100% */
.getseotech-full-width-wrapper {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
}

.getseotech-article-full {
    width: 100%;
    display: block;
}
/* =========================================
   GET SEO TECH - Core OS Stylesheet (Tailwind Override)
   ========================================= */

body {
    background-color: #050507;
    color: #ffffff;
    overflow-x: hidden;
}

/* Glowing effects */
.glow-primary { box-shadow: 0 0 40px -10px rgba(0, 82, 255, 0.5); }
.glow-secondary { box-shadow: 0 0 40px -10px rgba(157, 0, 255, 0.5); }
.glow-accent { box-shadow: 0 0 40px -10px rgba(0, 210, 106, 0.5); }

.hero-base-glow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 90%; height: 20px; background: #0052FF;
    filter: blur(50px); opacity: 0.8; border-radius: 50%; z-index: 0;
    animation: pulse 3s infinite alternate;
}

/* Cyber/AI Rotating Borders */
@keyframes spin-border { 100% { transform: rotate(360deg); } }

.cyber-panel {
    position: relative; border-radius: 2rem; overflow: hidden; padding: 2px;
    background: #1a1a24;
}
.cyber-panel::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    z-index: 0; animation: spin-border 4s linear infinite;
}
.cyber-border-blue::before { background: conic-gradient(from 0deg, transparent 70%, #0052FF 100%); }
.cyber-border-purple::before { background: conic-gradient(from 0deg, transparent 70%, #9D00FF 100%); }
.cyber-border-green::before { background: conic-gradient(from 0deg, transparent 70%, #00D26A 100%); }

.cyber-panel-inner {
    background: #0D0D14; border-radius: 1.9rem; position: relative; z-index: 10;
    height: 100%; width: 100%;
}

/* Scanlines Overlay */
.scanlines {
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
    background-size: 100% 4px; position: absolute; inset: 0; pointer-events: none; z-index: 40; opacity: 0.15;
}

/* Accordion Custom */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

.gradient-text-primary {
    background: linear-gradient(to right, #00A3FF, #0052FF, #00D26A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}
@keyframes textShine { to { background-position: 200% center; } }
/* Đảm bảo hình ảnh không vượt qua khung full width */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* =========================================
   1. HEADER & NAVIGATION
   ========================================= */
#getseotech-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 255, 204, 0.15);
}

.header-inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-menu li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* =========================================
   2. HERO SECTION - SYSTEM OS THEME
   ========================================= */
.section-hero {
    padding: 180px 20px 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top center, #111111 0%, var(--bg-color) 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.system-status {
    display: inline-block;
    color: var(--accent-color);
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(0, 255, 204, 0.05);
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* =========================================
   3. CTA BUTTONS & TRUST BADGES
   ========================================= */
.hero-cta-group {
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.btn-primary:hover {
    background-color: #00ccaa;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.trust-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.trust-stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.stat-text {
    font-size: 13px;
    color: #888;
}
/* =========================================
   4. ADVANCED UI: BENTO BOX & TERMINAL
   ========================================= */


/* Lưới vi mạch và Hạt nhiễu (Noise) cho Bento Box */
.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphism Cards cho Case Studies */
.glass-card {
    background: rgba(13, 13, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Cửa sổ Hệ điều hành (OS Window) */
.os-window-header {
    background: #12121A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}
.os-dots {
    display: flex;
    gap: 8px;
}
.os-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.os-dot.red { background-color: #FF5F56; }
.os-dot.yellow { background-color: #FFBD2E; }
.os-dot.green { background-color: #27C93F; }

/* Dashboard 3D lơ lửng */
.perspective-1000 {
    perspective: 1000px;
}
.dashboard-float {
    transform: rotateX(5deg) scale(0.98);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard-float:hover {
    transform: rotateX(0deg) scale(1);
}
/* =========================================
   TICKER ANIMATION (Chạy ngang vô tận)
   ========================================= */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.ticker-content {
    display: flex;
    flex-shrink: 0;
    animation: ticker 15s linear infinite; /* Tốc độ chạy: 15 giây/vòng */
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =========================================================================
   WOOCOMMERCE LOGIN & REGISTRATION OVERRIDES (Premium Dark UI)
   ========================================================================= */
.woocommerce-account .woocommerce {
    max-width: 1000px !important;
    margin: 60px auto !important;
    padding: 0 20px !important;
}

.woocommerce-account .u-columns.col2-set {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    justify-content: center !important;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    flex: 1 !important;
    min-width: 320px !important;
    max-width: 450px !important;
    background: rgba(17, 24, 39, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.woocommerce-account h2 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    background: linear-gradient(to right, #00A3FF, #0052FF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Make labels clear and white */
.woocommerce form.login label, 
.woocommerce form.register label,
.woocommerce form.login .woocommerce-form-row label,
.woocommerce form.register .woocommerce-form-row label,
.woocommerce form.login label.woocommerce-form__label-for-checkbox {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.woocommerce form.login .woocommerce-form__label-for-checkbox span {
    color: #ffffff !important;
    font-weight: 500 !important;
    margin-left: 6px !important;
}

/* Make input fields shorter & beautiful */
.woocommerce form.login input.woocommerce-Input,
.woocommerce form.register input.woocommerce-Input {
    max-width: 380px !important;
    width: 100% !important;
    background-color: #0d0d14 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.woocommerce form.login input.woocommerce-Input:focus,
.woocommerce form.register input.woocommerce-Input:focus {
    border-color: #0052FF !important;
    box-shadow: 0 0 10px rgba(0, 82, 255, 0.3) !important;
}

/* Buttons style */
.woocommerce form.login button.woocommerce-form-login__submit,
.woocommerce form.register button.woocommerce-form-register__submit {
    background: linear-gradient(135deg, #0052FF 0%, #003ecc 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
}

.woocommerce form.login button.woocommerce-form-login__submit:hover,
.woocommerce form.register button.woocommerce-form-register__submit:hover {
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Lost password link */
.woocommerce form.login .lost_password,
.woocommerce form.register .lost_password {
    margin-top: 15px !important;
}

.woocommerce form.login .lost_password a,
.woocommerce form.register .lost_password a {
    color: #3b82f6 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.woocommerce form.login .lost_password a:hover,
.woocommerce form.register .lost_password a:hover {
    color: #60a5fa !important;
    text-decoration: underline !important;
}