


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


:root {
    
    --bg-primary: #0D0D12;
    --bg-secondary: rgba(25, 25, 35, 0.85);
    --bg-card: rgba(30, 30, 45, 0.6);
    --bg-glass: rgba(20, 20, 30, 0.7);
    
    
    --accent-cyan: #00F5D4;
    --accent-purple: #9B5DE5;
    --accent-pink: #F15BB5;
    --accent-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    
    
    --text-primary: #E8E8E8;
    --text-secondary: #8B8B9E;
    --text-muted: #5A5A6E;
    
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 245, 212, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 245, 212, 0.4);
    --glow-purple: 0 0 20px rgba(155, 93, 229, 0.4);
    
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}


body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(155, 93, 229, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}


.header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}


.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.6;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}


.nav-left,
.nav-right {
    display: flex;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.desktop-only {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
    }
}


.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    filter: brightness(1.2);
    text-shadow: var(--glow-cyan);
}


.nav-container {
    display: none;
}

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

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-md);
}

.nav a:hover {
    color: var(--bg-primary);
}

.nav a:hover::before {
    opacity: 1;
    z-index: -1;
}


.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.burger-line:nth-child(1) {
    top: 14px;
}

.burger-line:nth-child(2) {
    top: 21px;
}

.burger-line:nth-child(3) {
    top: 28px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}


.main-content {
    flex: 1;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.main-content .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}


.content {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    order: 2;
}


.content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(0, 245, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}


.sidebar {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
    order: 1;
    transition: all 0.3s ease;
}

.sidebar:hover {
    border-color: var(--border-glow);
}

.sidebar h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.sidebar h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

h1 span,
h1 strong {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}


p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}


a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

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


.recent-posts {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.recent-posts li {
    margin-bottom: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
}

.recent-posts a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    display: block !important;
    padding: 0.8rem 1rem !important;
    margin: 0.3rem 0 !important;
    border-radius: var(--radius-sm) !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.recent-posts a::before {
    content: '→' !important;
    position: absolute !important;
    left: -20px !important;
    opacity: 0 !important;
    color: var(--accent-cyan) !important;
    transition: all 0.3s ease !important;
}

.recent-posts a:hover {
    color: var(--text-primary) !important;
    background: rgba(0, 245, 212, 0.05) !important;
    border-color: var(--border-glow) !important;
    padding-left: 1.8rem !important;
    transform: none !important;
}

.recent-posts a:hover::before {
    left: 0.8rem !important;
    opacity: 1 !important;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--accent-gradient);
    color: var(--bg-primary);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
    color: var(--bg-primary);
}

.btn:hover::before {
    opacity: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    color: #0D0D12;
    border-color: transparent;
    background: var(--accent-gradient);
    box-shadow: var(--glow-cyan);
}


.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 2rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}


.footer-wave {
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    color: rgba(25, 25, 35, 0.85);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-nav-wrapper {
    margin: 1rem 0;
}

.footer-nav {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-cyan);
    border-color: var(--border-glow);
    background: rgba(0, 245, 212, 0.05);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}


.posts-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.post-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.post-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-cyan);
    border-color: transparent;
}

.post-item:hover::before {
    opacity: 1;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.post-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--bg-card) 100%);
    pointer-events: none;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-item:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.post-item h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item h3 a:hover {
    color: var(--accent-cyan);
}

.post-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-item .btn {
    align-self: flex-start;
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
}


.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-content {
    margin-bottom: 2rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content img,
.content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

table th,
table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

table th {
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tr:hover {
    background: rgba(0, 245, 212, 0.03);
}

table tr:last-child td {
    border-bottom: none;
}


ul, ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

ul li, ol li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    position: relative;
}

ul li::marker {
    color: var(--accent-cyan);
}

ol li::marker {
    color: var(--accent-cyan);
    font-weight: 600;
}

ul li strong, ol li strong {
    color: var(--text-primary);
}


.error-page {
    text-align: center;
    padding: 4rem 0;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 0 60px rgba(0, 245, 212, 0.3);
}

.error-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    margin: 2.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-suggestions {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-suggestions h3 {
    color: var(--accent-cyan);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-suggestions li a {
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.error-suggestions li a:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 245, 212, 0.1);
}


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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 245, 212, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.content {
    animation: fadeInUp 0.6s ease-out;
}

.sidebar {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.post-item {
    animation: fadeInUp 0.5s ease-out both;
}

.post-item:nth-child(1) { animation-delay: 0.1s; }
.post-item:nth-child(2) { animation-delay: 0.15s; }
.post-item:nth-child(3) { animation-delay: 0.2s; }
.post-item:nth-child(4) { animation-delay: 0.25s; }
.post-item:nth-child(5) { animation-delay: 0.3s; }
.post-item:nth-child(6) { animation-delay: 0.35s; }


a:focus,
.btn:focus,
button:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
}


@media (max-width: 1024px) {
    .main-content .container {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
    
    .posts-list {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    
    .burger-menu {
        display: flex;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container.active {
        transform: translateX(0);
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav a {
        font-size: 1.3rem;
        padding: 1rem 2rem;
    }
    
    
    .main-content {
        padding: 2rem 0;
    }
    
    .main-content .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .content {
        order: 1;
        padding: 1.5rem;
    }
    
    
    .posts-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .post-image {
        height: 180px;
    }
    
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    
    .footer-wave {
        height: 40px;
        top: -39px;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-nav {
        gap: 0.3rem;
    }
    
    .footer-nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-page h1 {
        font-size: 1.8rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table th,
    table td {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .content {
        padding: 1.2rem;
        border-radius: var(--radius-md);
    }
    
    .sidebar {
        padding: 1.2rem;
        border-radius: var(--radius-md);
    }
    
    .post-content {
        padding: 1.2rem;
    }
    
    .post-item h3 {
        font-size: 1.05rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .error-page h1 {
        font-size: 1.5rem;
    }
    
    .error-page p {
        font-size: 1rem;
    }
}


.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}


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


blockquote {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    margin: 2rem 0;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--glow-cyan);
    overflow: hidden;
}

blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    box-shadow: 0 0 15px var(--accent-cyan);
}

blockquote::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 6rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    line-height: 1;
}

blockquote p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

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

blockquote cite {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--accent-cyan);
    margin-top: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

blockquote cite::before {
    content: '→ ';
}

