/* ============================================
   KARTHIKESHWAR'S MAGAZINE BLOG
   Dramatic Storytelling Edition
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Nav height */
    --nav-height: 60px;
}

/* ---------- DARK THEME (Default) ---------- */
[data-theme="dark"] {
    --color-bg: #050505;
    --color-bg-elevated: #0f0f0f;
    --color-bg-subtle: #1a1a1a;
    --color-text: #f5f0e8;
    --color-text-muted: #a09a8c;
    --color-text-dim: #5a564c;
    
    /* Accent Colors */
    --color-accent: #e8b88a;
    --color-accent-secondary: #a04040;
    --color-ai: #00e5ff;
    --color-ocean: #00b8a9;
    --color-ocean-light: #5dfdcb;
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #e8b88a 0%, #a04040 100%);
    --gradient-ocean: linear-gradient(135deg, #00b8a9, #5dfdcb);
    --gradient-hero-bg: radial-gradient(ellipse at 30% 20%, rgba(232, 184, 138, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(160, 64, 64, 0.06) 0%, transparent 50%);
    
    /* Overlays */
    --overlay-grid: rgba(255,255,255,0.015);
    --overlay-glow: rgba(232, 184, 138, 0.12);
}

/* ---------- LIGHT THEME ---------- */
[data-theme="light"] {
    --color-bg: #faf8f5;
    --color-bg-elevated: #ffffff;
    --color-bg-subtle: #f0ede8;
    --color-text: #1a1a1a;
    --color-text-muted: #5a5650;
    --color-text-dim: #8a857a;
    
    /* Accent Colors */
    --color-accent: #c47d3a;
    --color-accent-secondary: #8b2e2e;
    --color-ai: #0088aa;
    --color-ocean: #0a7a7a;
    --color-ocean-light: #10a89a;
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #c47d3a 0%, #8b2e2e 100%);
    --gradient-ocean: linear-gradient(135deg, #0a7a7a, #10a89a);
    --gradient-hero-bg: radial-gradient(ellipse at 30% 20%, rgba(196, 125, 58, 0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(139, 46, 46, 0.08) 0%, transparent 50%);
    
    /* Overlays */
    --overlay-grid: rgba(0,0,0,0.02);
    --overlay-glow: rgba(196, 125, 58, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

[data-theme="light"] body::before {
    opacity: 0.02;
}

::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* ---------- NAVIGATION ---------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-nav.scrolled::before {
    opacity: 0.3;
}

[data-theme="light"] .site-nav {
    background: transparent;
}

.site-nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .site-nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-md);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-brand:hover {
    color: var(--color-accent);
}

.nav-brand-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.nav-brand:hover .nav-brand-icon {
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

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

.nav-link.active::after {
    transform: scaleX(1);
    background: var(--color-text-dim);
}

/* ---------- Theme Toggle Button ---------- */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-text-dim);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    position: relative;
}

.theme-toggle:hover {
    border-color: var(--color-text-muted);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
    stroke: currentColor;
}

[data-theme="dark"] .theme-icon-sun {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    stroke: var(--color-accent);
}

[data-theme="dark"] .theme-icon-moon {
    transform: translateY(40px) rotate(180deg);
    opacity: 0;
}

[data-theme="light"] .theme-icon-sun {
    transform: translateY(-40px) rotate(-180deg);
    opacity: 0;
}

[data-theme="light"] .theme-icon-moon {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    stroke: var(--color-text);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

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

a:hover {
    color: var(--color-accent);
}

.text-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-color: rgba(232, 184, 138, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition-fast);
}

.text-link:hover {
    text-decoration-color: var(--color-accent);
}

/* ============================================
   MAGAZINE HOME PAGE STYLES
   ============================================ */

.magazine-container {
    padding-top: var(--nav-height);
}

/* ---------- Masthead ---------- */
.magazine-masthead {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    overflow: hidden;
}

/* Ambient glow behind title */
.magazine-masthead::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--overlay-glow) 0%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

/* Top accent line */
.magazine-masthead::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.masthead-content {
    position: relative;
    z-index: 1;
}

.masthead-issue {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.masthead-issue::before,
.masthead-issue::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.5;
}

.masthead-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 80px rgba(232, 184, 138, 0.15);
}

.masthead-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    font-style: italic;
}

.masthead-scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-dim);
}

.masthead-scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.masthead-scroll-hint svg {
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 0.8; }
}

/* ---------- Cover Story ---------- */
.cover-story {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-bg);
    border-top: 1px solid var(--color-text-dim);
    position: relative;
}

/* Subtle gradient overlay */
.cover-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-subtle) 50%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.cover-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.cover-label-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.cover-label-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent);
}

.cover-article {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-text-dim);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

/* Decorative corner accents */
.cover-article::before,
.cover-article::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.cover-article::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.cover-article::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.cover-article:hover {
    border-color: var(--color-accent);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--color-accent);
    transform: translateY(-6px);
}

.cover-article:hover::before,
.cover-article:hover::after {
    opacity: 0.8;
    transform: scale(1.1);
}

.cover-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 200;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    pointer-events: none;
}

.cover-content {
    position: relative;
    z-index: 1;
}

.cover-category {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-accent);
    background: transparent;
    transition: background 0.3s ease;
}

.cover-article:hover .cover-category {
    background: rgba(232, 184, 138, 0.1);
}

.cover-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    transition: color 0.3s ease;
}

.cover-article:hover .cover-title {
    color: var(--color-accent);
}

.cover-excerpt {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 550px;
    margin-bottom: var(--space-xl);
}

.cover-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-text-dim);
    transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
}

.cover-cta svg {
    transition: transform 0.3s ease;
}

.cover-article:hover .cover-cta {
    color: var(--color-accent);
    gap: 1rem;
    border-color: var(--color-accent);
}

.cover-article:hover .cover-cta svg {
    transform: translateX(6px);
}

/* ---------- Table of Contents ---------- */
.toc-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-bg-subtle);
    position: relative;
}

/* Decorative vertical line */
.toc-section::before {
    content: '';
    position: absolute;
    top: var(--space-xl);
    bottom: var(--space-xl);
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-text-dim), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 1;
}

.toc-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text);
    white-space: nowrap;
}

.toc-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-text-dim), transparent);
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 1;
}

.toc-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    background: var(--color-bg);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

/* Left accent bar */
.toc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.toc-item:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-text-dim);
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.toc-item:hover::before {
    transform: scaleY(1);
}

.toc-item-large {
    padding: var(--space-xl) var(--space-lg);
}

.toc-item-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--color-text-dim);
    min-width: 60px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.toc-item:hover .toc-item-number {
    color: var(--color-accent);
    transform: scale(1.1);
}

.toc-item-content {
    flex: 1;
}

.toc-item-category {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.toc-item-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.toc-item:hover .toc-item-title {
    color: var(--color-accent);
}

.toc-item-large .toc-item-title {
    font-size: 1.85rem;
}

.toc-item-excerpt {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 500px;
}

.toc-item-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-text-dim);
    color: var(--color-text-dim);
    transition: all 0.3s ease;
}

.toc-item:hover .toc-item-arrow {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(232, 184, 138, 0.1);
    transform: translateX(5px);
}

/* Featured TOC Item (first/cover story) */
.toc-item-featured {
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-text-dim);
}

.toc-item-featured .toc-item-number {
    font-size: 4rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
}

.toc-item-featured .toc-item-title {
    font-size: 2rem;
}

.toc-item-featured .toc-item-excerpt {
    font-size: 1.1rem;
    max-width: 600px;
}

.toc-item-featured:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.toc-item-featured:hover .toc-item-number {
    opacity: 0.8;
}

/* ---------- Magazine Footer ---------- */
.magazine-footer {
    padding: var(--space-xl) var(--space-md);
    background: var(--color-bg);
    position: relative;
    border-top: 1px solid var(--color-text-dim);
}

.footer-accent {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-text);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-text-dim);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-logo:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}

/* ---------- Site Footer (Unified) ---------- */
.site-footer,
.blog-footer {
    padding: var(--space-lg) var(--space-md);
    background: var(--color-bg);
    border-top: 1px solid var(--color-text-dim);
    position: relative;
}

.site-footer::before,
.blog-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-accent);
    margin-top: -1px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
}

.back-to-top {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-text-dim);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 184, 138, 0.2);
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .footer-nav {
    border-top-color: rgba(0, 0, 0, 0.05);
}

.footer-nav a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: color var(--transition-fast), background 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
    background: rgba(232, 184, 138, 0.08);
}

/* Legacy support for index page */
.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: color var(--transition-fast), background 0.3s ease;
}

.footer-link:hover {
    color: var(--color-accent);
    background: rgba(232, 184, 138, 0.08);
}

.footer-credit {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
}

/* ============================================
   BLOG ARTICLE STYLES - DRAMATIC STORYTELLING
   ============================================ */

.blog-article {
    position: relative;
    padding-top: var(--nav-height);
}

/* ---------- HERO SECTION - CINEMATIC ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-bg);
    opacity: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, var(--overlay-grid) 49.5%, var(--overlay-grid) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, var(--overlay-grid) 49.5%, var(--overlay-grid) 50.5%, transparent 50.5%);
    background-size: 100px 100px;
    opacity: 0.3;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -5s; animation-duration: 20s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: -10s; animation-duration: 22s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: -15s; animation-duration: 28s; }
.particle:nth-child(5) { left: 30%; top: 30%; animation-delay: -8s; animation-duration: 24s; }
.particle:nth-child(6) { left: 70%; top: 70%; animation-delay: -12s; animation-duration: 26s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -50px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-20px, 30px) scale(0.8); opacity: 0.2; }
    75% { transform: translate(40px, 20px) scale(1.2); opacity: 0.5; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--space-md);
    padding-bottom: calc(var(--space-xl) + 80px);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.5;
}

.hero-eyebrow::before { right: calc(100% + 20px); }
.hero-eyebrow::after { left: calc(100% + 20px); }

.hero-title {
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.0;
}

.title-word {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transform-origin: center bottom;
}

.title-word:first-child {
    color: var(--color-text);
    text-shadow: 0 0 80px rgba(245, 240, 232, 0.1);
}

.title-word:last-child {
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2em;
    margin-bottom: 0.15em;
    filter: drop-shadow(0 0 60px rgba(232, 184, 138, 0.3));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-dim);
}

.scroll-arrow {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* ---------- CONTENT SECTIONS - IMMERSIVE ---------- */
.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
}

.section-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.section-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 200;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    opacity: 0.3;
    line-height: 1;
}

.section-emoji {
    font-size: 3rem;
    filter: grayscale(0.2) saturate(1.2);
    animation: emojiPulse 4s ease-in-out infinite;
}

@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ---------- SECTION 1: Human - DRAMATIC ---------- */
.section-human {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 50%, var(--color-bg) 100%);
}

.section-human::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--overlay-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.section-intro {
    margin-bottom: var(--space-lg);
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.intro-text.secondary {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.75;
    margin-right: 0.15em;
    margin-top: 0.05em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(232, 184, 138, 0.3));
}

.insight-cards {
    display: grid;
    gap: var(--space-md);
}

.insight-card {
    background: var(--color-bg-elevated);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    position: relative;
    transform-origin: left center;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateX(10px);
    box-shadow: -20px 0 60px rgba(232, 184, 138, 0.1);
}

.insight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--overlay-glow) 0%, transparent 40%);
    pointer-events: none;
}

.card-number {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.insight-card p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.insight-card em {
    color: var(--color-accent);
    font-weight: 500;
}

/* ---------- SECTION 2: Language - ELEGANT ---------- */
.section-language {
    background: var(--color-bg);
}

.section-language::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(160, 64, 64, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pull-quote-container {
    margin: var(--space-xl) 0;
}

.pull-quote {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 15rem;
    color: var(--color-accent-secondary);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-body {
    max-width: 700px;
    margin: 0 auto;
}

.body-text {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.body-text.emphasis {
    font-size: 1.6rem;
    text-align: center;
    margin-top: var(--space-xl);
    font-weight: 500;
}

.key-insight {
    background: linear-gradient(90deg, var(--color-accent-secondary), transparent);
    padding: 2px;
    margin: var(--space-lg) 0;
    border-radius: 4px;
}

.key-insight p {
    background: var(--color-bg);
    padding: var(--space-md) var(--space-lg);
    font-size: 1.2rem;
    font-style: italic;
    border-radius: 2px;
}

.highlight {
    background: linear-gradient(transparent 50%, rgba(160, 64, 64, 0.4) 50%);
    padding: 0 0.2em;
    transition: background 0.3s ease;
}

.highlight:hover {
    background: linear-gradient(transparent 30%, rgba(160, 64, 64, 0.5) 30%);
}

/* ---------- SECTION 3: AI - FUTURISTIC ---------- */
.section-ai {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-subtle) 30%, var(--color-bg-subtle) 70%, var(--color-bg) 100%);
}

.section-ai::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 229, 255, 0.015) 3px,
            rgba(0, 229, 255, 0.015) 4px
        );
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

.terminal-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.1);
}

[data-theme="light"] .terminal-block {
    background: var(--color-bg-elevated);
    border-color: rgba(0, 136, 170, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0, 229, 255, 0.05);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

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

.terminal-dot:first-child { background: #ff5f56; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #27ca40; }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-ai);
    letter-spacing: 0.1em;
}

.terminal-content {
    padding: var(--space-md);
}

.terminal-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

.terminal-text:last-child {
    margin-bottom: 0;
}

.terminal-prompt {
    color: var(--color-ai);
    margin-right: 0.5em;
    text-shadow: 0 0 10px var(--color-ai);
}

.llm-highlight {
    color: var(--color-ai);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    position: relative;
    font-weight: 600;
}

[data-theme="light"] .llm-highlight {
    text-shadow: none;
}

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

.code-inline {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: rgba(0, 229, 255, 0.15);
    padding: 0.15em 0.5em;
    border-radius: 4px;
    color: var(--color-ai);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.sacred-note {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--color-text-dim);
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.sacred-note p {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ---------- SECTION 4: Ocean - IMMERSIVE ---------- */
.section-ocean {
    background: linear-gradient(180deg, var(--color-bg) 0%, #041820 30%, #062a35 70%, #041418 100%);
    overflow: hidden;
    min-height: 120vh;
}

[data-theme="light"] .section-ocean {
    background: linear-gradient(180deg, var(--color-bg) 0%, #e8f4f4 30%, #d0e8e8 70%, var(--color-bg) 100%);
}

.ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 400%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%2300b8a9' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 25% 100%;
    animation: waveMove 12s linear infinite;
}

[data-theme="light"] .wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%230a7a7a' opacity='0.25'/%3E%3C/svg%3E");
    background-size: 25% 100%;
}

.wave-1 { 
    bottom: 0; 
    opacity: 0.8;
    animation-duration: 10s;
}

.wave-2 { 
    bottom: 30px; 
    opacity: 0.5;
    animation-duration: 15s;
    animation-delay: -3s;
}

.wave-3 { 
    bottom: 60px; 
    opacity: 0.3;
    animation-duration: 20s;
    animation-delay: -8s;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(25%); }
}

.boat-emoji {
    display: inline-block;
    animation: boatFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes boatFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.metaphor-display {
    text-align: center;
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
}

.metaphor-line {
    margin-bottom: var(--space-md);
}

.metaphor-subject {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--color-text-dim);
    display: block;
    margin-bottom: 0.3em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.metaphor-object {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    font-style: italic;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 0 40px rgba(0, 184, 169, 0.4));
}

.voyage-insight {
    text-align: center;
    margin: var(--space-xl) 0;
}

.voyage-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    color: var(--color-ocean-light);
    line-height: 1.5;
    text-shadow: 0 0 40px rgba(93, 253, 203, 0.3);
}

[data-theme="light"] .voyage-text {
    text-shadow: none;
}

.closing-thought {
    text-align: center;
    max-width: 650px;
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(93, 253, 203, 0.3);
}

.closing-thought p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* ---------- Scroll Progress ---------- */
.scroll-progress {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

[data-theme="light"] .scroll-progress {
    background: rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    transform-origin: left;
    transform: scaleX(0);
    box-shadow: 0 0 10px var(--color-accent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
        --nav-height: 50px;
    }
    
    body {
        font-size: 1rem;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0 var(--space-sm);
    }
    
    .nav-brand {
        font-size: 0.85rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .nav-brand-icon {
        width: 16px;
        height: 16px;
    }
    
    .nav-brand-text {
        display: none;
    }
    
    .nav-brand-short {
        display: inline;
    }
    
    .nav-links {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    /* Hide external links on mobile, keep Magazine link */
    .nav-links li.nav-external {
        display: none;
    }
    
    .nav-link {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
        padding: 0.4rem 0.6rem;
    }
    
    .theme-toggle {
        width: 34px;
        height: 34px;
    }
    
    .theme-icon {
        width: 16px;
        height: 16px;
    }
    
    .content-section {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .section-number {
        font-size: 2.5rem;
    }
    
    .drop-cap {
        font-size: 4rem;
    }
    
    .intro-text {
        font-size: 1.25rem;
    }
    
    .card-number {
        left: -20px;
        font-size: 2rem;
    }
    
    .insight-card {
        padding-left: var(--space-md);
    }
    
    .pull-quote p {
        font-size: 1.5rem;
    }
    
    .pull-quote::before {
        font-size: 8rem;
    }
    
    .terminal-text {
        font-size: 0.85rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-nav {
        gap: var(--space-sm);
    }
    
    .hero-eyebrow::before,
    .hero-eyebrow::after {
        display: none;
    }
    
    /* Magazine Home Responsive */
    .magazine-masthead::before {
        width: 300px;
        height: 200px;
    }
    
    .masthead-issue::before,
    .masthead-issue::after {
        width: 20px;
    }
    
    .masthead-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    .cover-story::before {
        display: none;
    }
    
    .cover-article {
        padding: var(--space-lg) var(--space-md);
    }
    
    .cover-article::before,
    .cover-article::after {
        width: 25px;
        height: 25px;
    }
    
    .cover-number {
        font-size: 5rem;
        right: var(--space-sm);
        top: var(--space-sm);
    }
    
    .cover-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .cover-excerpt {
        font-size: 1rem;
    }
    
    .toc-section::before {
        display: none;
    }
    
    .toc-item {
        grid-template-columns: auto 1fr;
        padding: var(--space-md);
        gap: var(--space-md);
    }
    
    .toc-item:hover {
        transform: translateX(4px);
    }
    
    .toc-item::before {
        width: 2px;
    }
    
    .toc-item-arrow {
        display: none;
    }
    
    .toc-item-number {
        font-size: 1.75rem;
        min-width: 40px;
        min-width: 40px;
    }
    
    .toc-item-title {
        font-size: 1.15rem;
    }
    
    .toc-item-large .toc-item-title {
        font-size: 1.3rem;
    }
    
    .footer-brand {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.6rem;
        padding: 0.35rem 0.5rem;
    }
    
    .theme-toggle {
        width: 30px;
        height: 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-emoji {
        font-size: 2.5rem;
    }
    
    .metaphor-object {
        font-size: 2.5rem;
    }
    
    /* Magazine Home 480px */
    .masthead-title {
        font-size: 2.5rem;
    }
    
    .cover-title {
        font-size: 1.5rem;
    }
    
    .cover-excerpt {
        font-size: 1rem;
    }
    
    .toc-item-excerpt {
        display: none;
    }
}

/* Brand text visibility */
.nav-brand-short {
    display: none;
}

@media (max-width: 768px) {
    .nav-brand-text {
        display: none;
    }
    
    .nav-brand-short {
        display: inline;
    }
}
