* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #2b2b2b;
    --panel-bg: #3a3a3a;
    --accent-blue: #4a9eff;
    --success-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #4a4a4a;
}

body {
    font-family: 'Darker Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    background-attachment: fixed;
    color: var(--text-white);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== VIDEO BANNER SECTION ===== */
.video-banner {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-banner .mobile-video {
    display: none;
}

.video-sound-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.video-sound-btn:hover {
    background: rgba(74, 158, 255, 0.6);
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

.video-sound-btn svg {
    width: 24px;
    height: 24px;
}

.video-sound-btn.sound-active .sound-off {
    display: none;
}

.video-sound-btn.sound-active .sound-on {
    display: block !important;
}

@media (max-width: 768px) {
    .video-banner {
        height: auto;
        min-height: unset;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
    }

    .video-banner .desktop-video {
        display: none;
    }

    .video-banner .mobile-video {
        display: block;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        min-width: unset;
        min-height: unset;
        object-fit: contain;
    }

    .video-sound-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .video-sound-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Navigation */
.navbar {
    background-color: var(--panel-bg);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.logo-divider {
    font-size: 1.4rem;
    color: var(--accent-blue);
    font-weight: 300;
    margin: 0 2px;
    opacity: 0.8;
}

.logo-text-wiki {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #a5c9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-white);
    opacity: 0.9;
    margin-top: 4px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active {
    transform: rotate(0deg);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu .menu-logo {
    display: none;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(42, 42, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease-out;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .nav-menu .menu-logo {
        position: absolute;
        top: 20px;
        left: 30px;
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        border: none;
        opacity: 1;
        transform: none;
        animation: none;
        z-index: 1001;
    }

    .nav-menu .menu-logo {
        display: flex;
    }

    .nav-menu a {
        font-size: 1rem;
        font-weight: 400;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .logo-text {
        display: none;
    }

    .brand-name {
        font-size: 0.9rem;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 3rem;
}

.hero-visual {
    display: flex;
    justify-content: flex-start;
}

.hero-egg-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.18), transparent 55%),
        rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-egg-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 60%);
    opacity: 0.8;
}

.hero-egg-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-egg-id {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
    white-space: nowrap;
    margin-bottom: 4px;
}

.hero-egg-frame {
    position: relative;
    padding: 10px 16px;
    border-radius: 18px;
    border: 3px solid var(--accent-blue);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(74, 158, 255, 0.45);
}

.hero-egg-circle {
    width: 160px;
    height: 200px;
    border-radius: 50% 50% 48% 48%;
    background: radial-gradient(circle at 30% 25%, #ffffff, #f5f5f5 40%, #e0e0e0 80%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    position: relative;
}

.hero-egg-counter {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-egg-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-egg-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
}

.hero-egg-footer {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.hero-egg-chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Ana başlığı sadeleştirip küçült */
.hero-title {
    font-size: 2.4rem;
    font-weight: 300;
    /* light */
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-white);
}

.highlight {
    font-size: 2.4rem;
    font-weight: 300;
    /* light */
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #3d8ae6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

/* Dikey bağlantı çizgisi */
.steps-line {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--accent-blue) 10%,
            var(--accent-blue) 90%,
            transparent 100%);
    opacity: 0.3;
}

/* Step Card */
.step-card {
    display: grid;
    grid-template-columns: 80px 60px 1fr 200px;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, var(--panel-bg) 0%, rgba(58, 58, 58, 0.5) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: stepSlideIn 0.6s ease forwards;
    transition: all 0.4s ease;
}

.step-card:nth-child(2) {
    animation-delay: 0.1s;
}

.step-card:nth-child(3) {
    animation-delay: 0.2s;
}

.step-card:nth-child(4) {
    animation-delay: 0.3s;
}

.step-card:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes stepSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.15);
    transform: translateX(10px);
}

/* Step Number */
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #3d8ae6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.step-number span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* Pulse animation for step number */
.step-card:hover .step-number {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
    }

    50% {
        box-shadow: 0 10px 50px rgba(74, 158, 255, 0.5), 0 0 0 15px rgba(74, 158, 255, 0.1);
    }
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    color: var(--text-white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Step Content */
.step-content {
    padding-right: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.step-content strong {
    color: var(--text-white);
}

/* Step Visual - Mini Animations */
.step-visual {
    width: 200px;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Visual 1: Camera */
.visual-camera {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.camera-body {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #555 0%, #333 100%);
    border-radius: 8px;
    position: relative;
}

.camera-lens {
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #4a9eff 0%, #1a1a1a 60%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    animation: cameraFocus 2s ease-in-out infinite;
}

@keyframes cameraFocus {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.8), 0 0 40px rgba(74, 158, 255, 0.3);
    }
}

.camera-signal {
    position: absolute;
    top: -8px;
    right: -8px;
    left: auto;
    transform: none;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.6);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Visual 2: Coop */
.visual-coop {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.coop-building {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coop-roof {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 25px solid var(--accent-blue);
}

.coop-body {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #5aa8ff 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5px;
}

.coop-door {
    width: 20px;
    height: 25px;
    background: #2d7acc;
    border-radius: 10px 10px 0 0;
}

.coop-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(74, 158, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(74, 158, 255, 0.3);
}

.counter-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

@keyframes countUp {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.counter-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Visual 3: AI Detection */
.visual-ai {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-screen {
    width: 140px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    margin-top: 10px;
}

.ai-egg {
    width: 20px;
    height: 26px;
    background: radial-gradient(circle at 30% 25%, #fff, #f5f5f5 40%, #e0e0e0 80%);
    border-radius: 50% 50% 48% 48%;
    position: relative;
}

.ai-egg.detected::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--text-white);
    border-radius: 50% 50% 48% 48%;
    animation: detectPulse 1.5s ease-in-out infinite;
}

.ai-egg.delay-1.detected::after {
    animation-delay: 0.3s;
}

.ai-egg.delay-2.detected::after {
    animation-delay: 0.6s;
}

@keyframes detectPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.ai-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.ai-counter {
    background: transparent;
    padding: 4px 12px;
    border-radius: 0;
    border: none;
}

.ai-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    animation: trendBounce 2s ease-in-out infinite;
}

/* Visual 4: Chart */
.visual-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    width: 20px;
    height: var(--height);
    background: linear-gradient(to top, var(--accent-blue) 0%, rgba(74, 158, 255, 0.5) 100%);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

.chart-bar.active {
    background: linear-gradient(to top, var(--text-white) 0%, rgba(255, 255, 255, 0.5) 100%);
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.chart-bar:nth-child(1) {
    animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.3s;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.4s;
}

.chart-bar:nth-child(5) {
    animation-delay: 0.5s;
}

.chart-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trend-up {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    animation: trendBounce 2s ease-in-out infinite;
}

@keyframes trendBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Steps CTA */
.steps-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(74, 158, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.cta-text strong {
    color: var(--text-white);
}

/* Mobile Responsive - How It Works */
@media (max-width: 1024px) {
    .step-card {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        grid-row: 1 / 3;
    }

    .step-number span {
        font-size: 1.4rem;
    }

    .step-icon {
        display: none;
    }

    .step-content {
        padding-right: 0;
        grid-column: 2;
    }

    .step-visual {
        grid-column: 2;
        width: 100%;
        max-width: 200px;
    }

    .steps-line {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .step-card {
        grid-template-columns: 50px 1fr;
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

    .step-number span {
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-visual {
        height: 100px;
    }

    .steps-line {
        left: 25px;
    }

    .steps-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        z-index: 2;
        background: var(--panel-bg);
    }

    .step-number {
        margin: 0 auto 1rem;
        grid-row: auto;
        position: relative;
        z-index: 2;
    }

    .step-content {
        grid-column: 1;
    }

    .step-visual {
        grid-column: 1;
        margin: 0 auto;
    }

    .steps-line {
        display: block;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
        width: 2px;
        z-index: 1;
    }
}

/* ===== DEMO VIDEO PLAYER ===== */
.demo-video-section {
    margin-top: 4rem;
    text-align: center;
}

.demo-video-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.demo-video-player {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.demo-video-player video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.9);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-blue);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.control-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    background: rgba(74, 158, 255, 0.5);
}

.control-btn svg {
    width: 18px;
    height: 18px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.time-display {
    font-size: 0.85rem;
    color: var(--text-gray);
    min-width: 90px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Video playing state */
.demo-video-player.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.demo-video-player.playing .play-icon {
    display: none;
}

.demo-video-player.playing .pause-icon {
    display: block !important;
}

/* Video muted state */
.demo-video-player.muted .volume-icon {
    display: none;
}

.demo-video-player.muted .mute-icon {
    display: block !important;
}

/* Responsive Demo Video */
@media (max-width: 768px) {
    .demo-video-section {
        margin-top: 3rem;
    }

    .demo-video-title {
        font-size: 1.2rem;
    }

    .demo-video-player {
        border-radius: 12px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn svg {
        width: 24px;
        height: 24px;
    }

    .video-controls {
        gap: 8px;
        padding: 10px 12px;
    }

    .control-btn {
        width: 32px;
        height: 32px;
    }

    .control-btn svg {
        width: 16px;
        height: 16px;
    }

    .time-display {
        font-size: 0.75rem;
        min-width: 70px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 300;
    /* light */
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: var(--text-white);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--panel-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--accent-blue);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 400;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
}

.screenshot-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.screenshot-overlay p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: var(--panel-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--panel-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.info-item:hover {
    border-color: var(--accent-blue);
}

.info-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.info-content p {
    color: var(--text-gray);
}

.info-content a {
    color: var(--text-gray);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--accent-blue);
}

/* Footer */
.footer {
    background-color: var(--panel-bg);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Lightbox for screenshots */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 48px;
    color: var(--text-white);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-blue);
    transform: rotate(90deg);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.lightbox-caption p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.screenshot-item {
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding: 60px 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        justify-content: center;
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-egg-card {
        max-width: 320px;
        width: 90%;
    }

    .hero-egg-circle {
        width: 120px;
        height: 150px;
    }

    .hero-egg-frame {
        padding: 8px 12px;
    }

    .hero-egg-id {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .highlight {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet responsive for hero */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-layout {
        gap: 2rem;
    }

    .hero-egg-card {
        max-width: 360px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .highlight {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

/* ===== BLOG STYLES ===== */
.blog-hero {
    margin-top: 80px;
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, #2b2b2b, #1a1a1a);
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.blog-section {
    padding: 40px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--panel-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-blue);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-white);
}

.blog-summary {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-card:hover .read-more {
    text-decoration: underline;
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination button {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover,
.pagination button.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.loading-spinner,
.no-posts,
.error {
    text-align: center;
    grid-column: 1 / -1;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.post-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.post-content p {
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.post-tags {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tag {
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
}

.post-tag:hover {
    background: rgba(74, 158, 255, 0.2);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .post-container {
        padding: 20px;
        margin-top: -40px;
        border-radius: 16px 16px 0 0;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-image {
        height: 250px;
    }
}

/* =========================================
   WIKI & BLOG REDESIGN STYLES
   ========================================= */

/* --- Layout & Typography --- */
.wiki-content-section {
    padding: 20px 0 80px;
    background: linear-gradient(to bottom, #1a1a1a, var(--dark-bg));
}

.wiki-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

@media (max-width: 968px) {
    .wiki-layout {
        grid-template-columns: 1fr;
    }
}

/* --- Blog Hero Redesigned --- */
.blog-hero {
    padding: 20px 0 30px;
    /* Reduced top padding, accounted for navbar */
    background: radial-gradient(circle at 50% 30%, rgba(74, 158, 255, 0.15), transparent 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wiki .highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- Main Content Column --- */
.section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 {
    font-size: 1.5rem;
    color: var(--text-white);
    white-space: nowrap;
}

.section-header .line {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Column Grid for Posts */
    gap: 25px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Professional Blog Card --- */
.blog-card {
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-white);
}

.blog-summary {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
}

/* --- Sidebar Styling --- */
.wiki-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #232323;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-blue);
    display: inline-block;
}

/* Search Box */
.search-box {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    color: white;
    outline: none;
}

.search-box button {
    background: transparent;
    border: none;
    padding: 0 15px;
    color: var(--text-gray);
    cursor: pointer;
}

.search-box button:hover {
    color: var(--accent-blue);
}

/* News Widget */
.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: transform 0.2s;
}

.news-item:hover {
    transform: translateX(5px);
}

.news-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content h4 {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.3;
}

.news-item-content .date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
}

.category-list a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

/* Newsletter */
.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    color: white;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #3d8ae6;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: #222;
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: #2b2b2b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-blue);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
    /* Approximate max height */
}

.faq-item.active {
    border-color: var(--accent-blue);
}

/* --- Footer Tweaks --- */
footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
    margin-top: 0;
    /* Handled by FAQ section or layout */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}