


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


:root {
    
    --dark-bg: #1a1a2e;
    --dark-bg-lighter: #232342;
    --dark-border: #2d2d4a;
    
    
    --light-bg: #f8f9fc;
    --light-bg-alt: #ffffff;
    --light-border: #e2e8f0;
    
    
    --accent-primary: #0d9488;
    --accent-primary-light: #14b8a6;
    --accent-secondary: #f97316;
    --accent-secondary-light: #fb923c;
    
    
    --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
    --gradient-light: linear-gradient(180deg, var(--light-bg) 0%, #eef2f7 100%);
    
    
    --text-dark: #1e293b;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    --text-light-muted: #94a3b8;
    
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.3);
    
    
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-sm: 8px;
    
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-light);
    color: var(--text-body);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}


.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


.header {
    background: var(--gradient-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.header .container {
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    transition: var(--transition-normal);
}

.logo:hover .logo-icon svg {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.header-gradient-line {
    height: 3px;
    background: var(--gradient-accent);
    position: relative;
}

.header-gradient-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.6;
}


.nav-container {
    display: flex;
}

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

.nav li {
    margin: 0;
    padding: 0;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    position: relative;
    display: block;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

.nav a:hover::after {
    width: calc(100% - 2.4rem);
}


.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: var(--transition-normal);
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
}

.burger-line {
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-normal);
    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;
    background: var(--accent-primary);
}

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

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


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


.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(13, 148, 136, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.main-content .container {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}


.content {
    flex: 3;
    background: var(--light-bg-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}


.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}


.sidebar {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: fit-content;
    min-width: 280px;
    position: sticky;
    top: 100px;
}

.sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-accent) 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar h2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}


.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-body) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: var(--transition-normal) !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.85rem 1rem !important;
    margin: 0.25rem 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    border-radius: var(--border-radius-sm) !important;
    background: transparent !important;
    border-left: 3px solid transparent !important;
}

.recent-posts a::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent-primary);
    font-weight: 600;
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateX(-5px);
}

.recent-posts a:hover {
    color: var(--accent-primary) !important;
    background: rgba(13, 148, 136, 0.08) !important;
    border-left-color: var(--accent-primary) !important;
    padding-left: 1.25rem !important;
}

.recent-posts a:hover::before {
    opacity: 1;
    transform: translateX(0);
}


h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    position: relative;
}

h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}


p {
    margin-bottom: 1.25rem;
    color: var(--text-body);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.85rem 1.75rem;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}


.footer {
    background: var(--gradient-dark);
    padding: 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(13, 148, 136, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
    pointer-events: none;
}


.footer-gradient-line {
    height: 3px;
    background: var(--gradient-accent);
}

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

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

.footer-brand {
    max-width: 300px;
}

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

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-column h4 {
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav a:hover {
    color: var(--accent-primary-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-light-muted);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--dark-border);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
}

.footer-logo-old {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-border);
}

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

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

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


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

.error-code {
    font-size: 8rem;
    font-weight: bold;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

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

.error-page p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    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: rgba(13, 148, 136, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.error-suggestions h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

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

.error-suggestions li a {
    color: var(--text-body);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.error-suggestions li a:hover {
    background: var(--accent-primary);
    color: white;
}


.posts-list {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.post-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--light-bg-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.post-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-normal);
}

.post-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.post-image {
    flex-shrink: 0;
    width: 220px;
    height: 160px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

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

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

.post-content {
    flex: 1;
}

.post-item h3 {
    margin-bottom: 0.75rem;
}

.post-item h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-normal);
}

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

.post-item p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.post-item .btn {
    margin-top: 0.5rem;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--light-bg-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

table th {
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tr:hover {
    background: rgba(13, 148, 136, 0.04);
}

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


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

ul li, ol li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

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


@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-bg);
        transition: right var(--transition-normal);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav a {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
    
    .nav a::after {
        bottom: 8px;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .main-content .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .sidebar {
        min-width: auto;
        position: static;
    }
    
    h1 {
        font-size: 1.85rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-nav a:hover {
        transform: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .post-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-image {
        width: 100%;
        height: 200px;
    }
    
    
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    table th,
    table td {
        padding: 0.85rem 0.75rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-page h1 {
        font-size: 1.85rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-suggestions ul {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .sidebar {
        padding: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.35rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    table th,
    table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}


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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

.sidebar {
    animation: slideInRight 0.6s ease-out 0.2s both;
}

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

.post-item:nth-child(1) { animation-delay: 0.1s; }
.post-item:nth-child(2) { animation-delay: 0.2s; }
.post-item:nth-child(3) { animation-delay: 0.3s; }
.post-item:nth-child(4) { animation-delay: 0.4s; }
.post-item:nth-child(5) { animation-delay: 0.5s; }


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


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


blockquote {
    background: var(--light-bg-alt);
    margin: 2rem 0;
    padding: 1.75rem 2rem 1.75rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-accent);
    box-shadow: var(--shadow-glow);
}

blockquote::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.08;
    border-radius: 50%;
}

blockquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    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: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 600;
}

blockquote cite::before {
    content: '— ';
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    blockquote {
        padding: 1.25rem 1.5rem 1.25rem 2rem;
        margin: 1.5rem 0;
    }
    
    blockquote p {
        font-size: 1rem;
    }
}



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

::-moz-selection {
    background: var(--accent-primary);
    color: white;
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}
