/*
Theme Name: SenFo Theme
Theme URI: https://senfo.sizusei.com/
Author: SenFo Team
Author URI: https://sizusei.com/
Description: A modern, gaming-focused WordPress theme for SenFo - PC optimization tool. Features dark mode design, smooth animations, and full customizer support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: senfo-theme
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ============================================
   CSS Variables & Root Settings
============================================ */
:root {
    /* Brand Colors - Mizuiro / Sky Blue */
    --brand-50: #f0f9ff;
    --brand-100: #e0f2fe;
    --brand-200: #bae6fd;
    --brand-300: #7dd3fc;
    --brand-400: #38bdf8;
    --brand-500: #0ea5e9;
    --brand-600: #0284c7;
    --brand-700: #0369a1;
    --brand-800: #075985;
    --brand-900: #0c4a6e;
    --brand-950: #082f49;

    /* Accent */
    --accent: #22d3ee;

    /* Dark Theme Colors */
    --dark-bg: #020617;
    --dark-surface: #0f172a;
    --dark-card: #1e293b;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #64748b;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   Reset & Base Styles
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::selection {
    background-color: var(--brand-500);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-400);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-500);
}

/* ============================================
   Typography
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--brand-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--brand-300);
}

.font-mono {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.text-glow {
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

/* ============================================
   Layout & Container
============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.section {
    padding: 5rem 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ============================================
   Navigation
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(14, 165, 233, 0.1);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(14, 165, 233, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.site-logo .logo-glow {
    position: absolute;
    inset: 0;
    background: var(--brand-400);
    filter: blur(20px);
    opacity: 0.3;
    border-radius: 50%;
    transition: opacity var(--transition-normal);
}

.site-logo:hover .logo-glow {
    opacity: 0.5;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: white;
}

.site-title span {
    color: var(--brand-400);
}

/* Navigation Menu */
.main-navigation {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-400);
    transition: width var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--brand-300);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.language-switcher:hover {
    color: white;
}

.language-switcher .active {
    color: var(--brand-400);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--brand-500);
    color: white;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    background: var(--brand-400);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.6);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--brand-400);
    color: var(--brand-300);
}

.btn-white {
    background: white;
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--dark-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu .nav-menu a {
    font-size: 1.125rem;
}

/* ============================================
   Hero Section
============================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.hero-bg-glow-1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(14, 165, 233, 0.2);
}

.hero-bg-glow-2 {
    bottom: 0;
    right: -5%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(100px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 1024px) {
    .hero-text {
        order: 1;
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--brand-400);
}

.hero-badge span {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--brand-200);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--brand-300), var(--brand-400), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    max-width: 36rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-dark);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-500);
}

/* Hero Visual */
.hero-visual {
    order: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

@media (min-width: 1024px) {
    .hero-visual {
        order: 2;
    }
}

.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform: rotateX(5deg) rotateY(-10deg);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotateX(5deg) rotateY(-10deg) translateY(0); }
    50% { transform: rotateX(5deg) rotateY(-10deg) translateY(-20px); }
}

.dashboard-window {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.window-header {
    height: 32px;
    background: rgba(2, 6, 23, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.red { background: rgba(239, 68, 68, 0.5); }
.window-dot.yellow { background: rgba(234, 179, 8, 0.5); }
.window-dot.green { background: rgba(34, 197, 94, 0.5); }

.window-content {
    padding: 1.5rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.status-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

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

.status-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 9999px;
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

/* Score Circle */
.score-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.score-circle {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle .track {
    fill: none;
    stroke: var(--dark-surface);
    stroke-width: 8;
}

.score-circle .progress {
    fill: none;
    stroke: var(--brand-400);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 62;
    transition: stroke-dashoffset 1.5s ease;
}

.score-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.score-info {
    flex: 1;
}

.score-text {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.optimize-btn {
    width: 100%;
    padding: 0.5rem;
    background: var(--brand-500);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    transition: background var(--transition-fast);
}

.optimize-btn:hover {
    background: var(--brand-400);
}

/* Diagnostic Items */
.diagnostic-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diagnostic-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.diagnostic-icon {
    padding: 0.375rem;
    border-radius: 0.375rem;
}

.diagnostic-icon.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.diagnostic-icon.warning {
    background: rgba(234, 179, 8, 0.2);
    color: #facc15;
}

.diagnostic-icon.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.diagnostic-icon svg {
    width: 16px;
    height: 16px;
}

.diagnostic-info {
    flex: 1;
}

.diagnostic-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.diagnostic-desc {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.diagnostic-status {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.diagnostic-status.error { color: #f87171; }
.diagnostic-status.warning { color: #facc15; }
.diagnostic-status.success { color: #4ade80; }

/* Dashboard Glow */
.dashboard-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: rgba(14, 165, 233, 0.2);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   Features Section
============================================ */
.features-section {
    padding: 5rem 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.features-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: rgba(12, 74, 110, 0.05);
    transform: skewX(12deg);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header .highlight {
    color: var(--brand-400);
}

.section-header p {
    color: var(--text-dark);
    max-width: 40rem;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.5);
}

.feature-card-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.1;
    transform: rotate(12deg) scale(1.5);
    transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-card-bg-icon {
    opacity: 0.2;
}

.feature-card-bg-icon svg {
    width: 96px;
    height: 96px;
    color: var(--brand-500);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-400);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--brand-500);
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============================================
   Devices Section
============================================ */
.devices-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
}

.devices-title {
    text-align: center;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.7;
    filter: grayscale(1);
    transition: all var(--transition-slow);
}

.brands-list:hover {
    opacity: 1;
    filter: grayscale(0);
}

@media (min-width: 768px) {
    .brands-list {
        gap: 4rem;
    }
}

.brand-item {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
    transition: color var(--transition-normal);
}

.brand-item:hover {
    color: white;
}

@media (min-width: 768px) {
    .brand-item {
        font-size: 1.5rem;
    }
}

.devices-badge {
    text-align: center;
    margin-top: 2rem;
}

.devices-badge span {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background: rgba(12, 74, 110, 0.2);
    border: 1px solid rgba(12, 74, 110, 0.4);
    color: var(--brand-400);
    font-size: 0.75rem;
}

/* ============================================
   Tech Section
============================================ */
.tech-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .tech-content {
        grid-template-columns: 1fr 1fr;
    }
}

.tech-text h2 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tech-text .gradient-text {
    background: linear-gradient(to right, var(--brand-300), var(--brand-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-text > p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Tech Benefits List */
.tech-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-benefit-icon {
    padding: 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 0.75rem;
    color: var(--brand-400);
    margin-top: 0.25rem;
}

.tech-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.tech-benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.tech-benefit p {
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Performance Chart */
.tech-visual {
    position: relative;
}

.performance-card {
    position: relative;
    z-index: 10;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--brand-300), var(--brand-600));
}

.performance-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.performance-title svg {
    width: 20px;
    height: 20px;
    color: var(--brand-400);
}

.chart-item {
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.chart-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.chart-label.highlight {
    color: var(--brand-300);
    font-weight: 700;
}

.chart-label .status {
    font-weight: 700;
}

.chart-label .status.error { color: #f87171; }
.chart-label .status.success { color: var(--brand-300); }

.chart-bar {
    height: 48px;
    background: #121212;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.chart-bar.senfo {
    height: 56px;
    background: rgba(12, 74, 110, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.chart-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 1.5s ease;
}

.chart-fill.competitor {
    width: 65%;
    background: rgba(239, 68, 68, 0.2);
}

.chart-fill.senfo {
    width: 2%;
    background: rgba(56, 189, 248, 0.2);
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    transition: width 1.5s ease;
}

.chart-line.competitor {
    width: 65%;
    background: #ef4444;
}

.chart-line.senfo {
    width: 2%;
    background: var(--brand-400);
    box-shadow: 0 0 10px var(--brand-400);
}

.chart-bar span {
    position: relative;
    z-index: 10;
    color: white;
}

.chart-bar.senfo .chart-value {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.chart-bar.senfo .chart-value span:last-child {
    color: var(--brand-300);
    font-weight: 700;
    font-size: 1.125rem;
}

.performance-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.safe-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4ade80;
}

.safe-badge svg {
    width: 12px;
    height: 12px;
}

.tech-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: rgba(14, 165, 233, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

/* ============================================
   Footer
============================================ */
.site-footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Footer Brand */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: white;
}

.footer-logo span span {
    color: var(--brand-400);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Footer Links */
.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.footer-links a:hover {
    color: var(--brand-400);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-dark);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}

/* ============================================
   Grid Background
============================================ */
.grid-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    background-image:
        linear-gradient(var(--brand-500) 1px, transparent 1px),
        linear-gradient(90deg, var(--brand-500) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
}

/* ============================================
   Utilities
============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.relative { position: relative; }
.absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }

/* ============================================
   Posts & Pages
============================================ */
.post-hero {
    position: relative;
    min-height: 50vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.post-category-badge:hover {
    background: rgba(14, 165, 233, 0.2);
    color: var(--brand-200);
}

.post-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta svg {
    opacity: 0.7;
}

/* Featured Image */
.post-thumbnail {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.post-content h2 {
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--brand-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--brand-300);
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--dark-card);
    border-left: 4px solid var(--brand-500);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: var(--text-muted);
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-content pre {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.post-content code {
    padding: 0.125rem 0.375rem;
    background: var(--dark-card);
    border-radius: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875em;
    color: var(--brand-300);
}

.post-content pre code {
    padding: 0;
    background: none;
    color: inherit;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.post-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.post-content th,
.post-content td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.post-content th {
    background: var(--dark-card);
    font-weight: 600;
    color: white;
}

.post-content tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* Post Footer */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.post-tags a {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.post-tags a:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: white;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all var(--transition-normal);
}

.post-nav-link:hover {
    border-color: var(--brand-500);
    transform: translateY(-2px);
}

.post-nav-link.prev {
    text-align: left;
}

.post-nav-link.next {
    text-align: right;
}

.post-nav-link.empty {
    visibility: hidden;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.post-nav-link.next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Archive/Blog page */
.archive-header {
    text-align: center;
    padding: 8rem 0 4rem;
}

.archive-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.archive-description {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.post-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
}

.post-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-card-title a {
    color: white;
}

.post-card-title a:hover {
    color: var(--brand-300);
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-dark);
}

/* =====================================================
   SCREENSHOT PREVIEW SECTION
   ===================================================== */

.screenshot-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.screenshot-preview {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(14, 165, 233, 0.15);
}

.screenshot-preview::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--brand-400), var(--accent-400));
    border-radius: 1.1rem;
    z-index: -1;
    opacity: 0.5;
}

.screenshot-preview img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.screenshot-frame {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-frame-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshot-frame-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-frame-dot.red { background: #ef4444; }
.screenshot-frame-dot.yellow { background: #eab308; }
.screenshot-frame-dot.green { background: #22c55e; }

.screenshot-frame-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.screenshot-content {
    padding: 1.5rem;
}

.screenshot-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.screenshot-glow-1 {
    top: -100px;
    left: -100px;
    background: var(--brand-500);
}

.screenshot-glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--accent-500);
}

/* Dashboard Mockup (Fallback) */
.dashboard-mockup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: white;
}

.mockup-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-400), var(--accent-400));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-nav {
    display: flex;
    gap: 1rem;
}

.mockup-nav-item {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.mockup-nav-item.active {
    background: rgba(14, 165, 233, 0.2);
    color: var(--brand-300);
}

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

@media (max-width: 768px) {
    .mockup-grid {
        grid-template-columns: 1fr;
    }
}

.mockup-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.mockup-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mockup-card-title {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.mockup-card-icon {
    color: var(--brand-400);
}

.mockup-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.mockup-card-change {
    font-size: 0.75rem;
    color: #22c55e;
}

.mockup-card-change.negative {
    color: #ef4444;
}

.mockup-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.mockup-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-400), var(--accent-400));
    border-radius: 4px;
    transition: width 1s ease;
}

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

.faq-section {
    padding: 6rem 0;
    position: relative;
}

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

.faq-preview {
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.5);
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(5px);
}

.faq-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-400);
}

.faq-question {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}

.faq-arrow {
    color: var(--brand-400);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.faq-item:hover .faq-arrow {
    opacity: 1;
    transform: translateX(0);
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */

.final-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(14, 165, 233, 0.05) 50%,
        transparent 100%);
    pointer-events: none;
}

.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 1.75rem;
    }
}

.final-cta-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.final-cta-note svg {
    color: #22c55e;
}

/* =====================================================
   FLOATING CTA
   ===================================================== */

.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.floating-cta .btn-primary {
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    box-shadow:
        0 10px 25px -5px rgba(14, 165, 233, 0.4),
        0 8px 10px -6px rgba(0, 0, 0, 0.3);
    animation: floating-pulse 2s ease-in-out infinite;
}

@keyframes floating-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 10px 25px -5px rgba(14, 165, 233, 0.4),
            0 8px 10px -6px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 15px 35px -5px rgba(14, 165, 233, 0.5),
            0 10px 15px -6px rgba(0, 0, 0, 0.4);
    }
}

.floating-cta-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.floating-cta-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* =====================================================
   SECTION DIVIDERS
   ===================================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(14, 165, 233, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    margin: 0 auto;
    max-width: 800px;
}