/* Algoritma Haber News Theme - Tokens */
:root {
    /* Color Palette */
    --bg-body: #050a14;
    --bg-surface: #0f1629;
    --bg-surface-hover: #1e2642;
    --border-color: #1f293a;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    --accent-color: #6366f1; /* Indigo 500 */
    --accent-hover: #4f46e5; /* Indigo 600 */
    --accent-light: #818cf8; /* Indigo 400 */
    
    --error-color: #ef4444;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
/* Algoritma Haber News Theme - Core */

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 { 
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 { 
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.015em;
}

h3 { 
    font-size: 1.75rem;
    font-weight: 700;
}

h4 { 
    font-size: 1.5rem;
    font-weight: 700;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

strong, b {
    font-weight: 600;
    color: var(--text-primary);
}

em, i {
    font-style: italic;
}

code {
    background-color: var(--bg-surface);
    color: var(--accent-light);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    overflow-x: auto;
    margin-bottom: var(--spacing-md);
}

pre code {
    background: none;
    padding: 0;
    color: var(--text-secondary);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-2xl) 0;
}

.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;
}

/* Spacing Utilities */
.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.py-4 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-secondary {
    color: var(--text-secondary);
}
/* News Theme - Components */

/* Buttons */
.btn, .btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    gap: 0.6rem;
}

.btn:disabled, .btn-primary:disabled, .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    border: none;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #4338ca 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    color: white !important;
}

.btn-primary:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover:not(:disabled) {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
}

.btn-secondary {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--text-primary) !important;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover:not(:disabled) {
    background-color: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.btn-secondary:active:not(:disabled) {
    transform: translateY(1px);
}

.btn-block {
    width: 100%;
}

/* Cards */
.blog-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    position: relative;
    height: 100%;
    cursor: pointer;
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card__link:hover {
    color: inherit;
    text-decoration: none;
}

.blog-card__link:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
    border-radius: inherit;
}

.link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 32px -8px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-cover {
    margin: 0 calc(var(--spacing-md) * -1) var(--spacing-md);
    width: calc(100% + var(--spacing-md) * 2);
    aspect-ratio: 16 / 9;
    background-color: var(--bg-surface-hover);
    overflow: hidden;
}

.blog-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-cover img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: start;
    font-weight: 500;
}

.blog-date {
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
    text-align: right;
    justify-self: end;
    padding-top: 0.2rem;
}

.blog-tag {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-light);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    max-height: 4.8em;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.read-more::after {
    content: '→';
}

.blog-card:hover .read-more {
    gap: 0.75rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-2xl);
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.page-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-light);
    background-color: var(--bg-surface-hover);
}

.page-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-control,
input[type='text'],
input[type='email'],
input[type='password'],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 0 1px var(--accent-color);
    background-color: var(--bg-body);
}

.form-control:disabled {
    background-color: var(--bg-surface);
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Alerts */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
    border-left: 4px solid;
}

.alert strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: var(--success-color);
    color: #86efac;
}

.alert-error, .alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--error-color);
    color: #fca5a5;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: var(--warning-color);
    color: #fcd34d;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.page-info {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.empty-state.compact {
    padding: var(--spacing-lg);
}

.empty-illustration {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Account Cards */
.account-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.account-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.account-card:hover::before {
    opacity: 1;
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.account-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-admin {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

/* Action List */
.action-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-weight: 500;
}

.action-item:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--accent-color);
    transform: translateX(4px);
}
.action-item.logout-action:hover {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
}

.action-item.logout-action:hover .action-text {
    color: var(--error-color);
}
.action-item .action-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.action-item .action-text {
    flex: 1;
    font-weight: 600;
}

.action-item .action-arrow {
    color: var(--accent-color);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.action-item:hover .action-arrow {
    transform: translateX(4px);
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    color: #fcd34d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: var(--spacing-xl);
}

.security-notice svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Edit Profile Specific - Using account-card instead */
/* .edit-profile-card is replaced by .account-card for consistency */

.edit-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.form-section-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: -0.5rem 0 0 0;
    line-height: 1.4;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: var(--bg-surface);
}

.form-control:disabled {
    background: var(--bg-surface);
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.7;
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

/* Account Grid */
.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Back Link */
.back-link-container {
    text-align: center;
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.back-link:hover {
    color: var(--accent-color);
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--accent-color);
    transform: translateX(-4px);
}

/* Admin Card Special */
.account-card-admin {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.admin-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .blog-meta {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .blog-date {
        justify-self: start;
        text-align: left;
        padding-top: 0;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .info-item .info-value {
        text-align: left;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .back-link {
        width: 100%;
        justify-content: center;
    }

    .security-notice {
        flex-direction: column;
        text-align: center;
    }

    .form-section {
        padding: 1.25rem;
    }
}

/* Small container override for account pages */
.small-container {
    max-width: 900px;
}

.small-container.max-800 {
    max-width: 800px;
}

.small-container.max-700 {
    max-width: 700px;
}

/* Section Header & Title */
.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.text-center {
    text-align: center;
}

.section-header.align-left {
    text-align: left;
}

.section-title {
    margin: 0;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-header.align-left .section-title {
    background: linear-gradient(120deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Account Page Background */
.account-page,
.edit-profile-page,
.auth-page {
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 100%);
    min-height: 80vh;
}

/* Auth Page Styles */
.auth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.auth-card:hover::before {
    opacity: 1;
}

.auth-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-color);
    flex-shrink: 0;
}

.auth-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.form-footer {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Auth Page Responsive */
@media (max-width: 768px) {
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Algoritma Haber News Theme - Features */

/* Header & Nav */
.top-info-bar {
    background: #0f172a;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-info-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-info-bar__group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.top-info-bar__group--metrics {
    justify-content: flex-end;
}

.top-info-bar__metric--usd {
    color: #22c55e;
}

.top-info-bar__metric--eur {
    color: #ef4444;
}

.top-info-bar__metric--btc {
    color: #f59e0b;
}

.navbar {
    background-color: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 55, 72, 0.6);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(45, 55, 72, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.65rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: rgba(59, 130, 246, 0.08);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.user-greeting {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.user-greeting:hover {
    color: var(--text-primary);
    background-color: rgba(59, 130, 246, 0.05);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    color: white;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s ease;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: calc(var(--spacing-2xl) * 1.5) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(at 50% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hero-subtitle {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Header */
.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-header.align-left {
    text-align: left;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.blog-list {
    padding: var(--spacing-2xl) 0;
}

/* Blog Page Filters */
.blog-filters {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-body);
    position: sticky;
    top: var(--header-height);
    z-index: 100;
}

.filter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.filter-list {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.filter-list::-webkit-scrollbar {
    display: none !important;
}

.filter-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.filter-nav-btn:hover {
    background: var(--bg-surface-hover);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.filter-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.filter-link {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-link:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-link.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Page Hero */
.page-hero {
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(at 50% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.page-hero .section-title {
    margin-bottom: var(--spacing-xs);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero .section-intro {
    max-width: 700px;
    margin: 0 auto;
}

/* Post Hero & Content */
.post-hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(99, 102, 241, 0.05) 50%, var(--bg-surface) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.post-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.post-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.post-breadcrumb a:hover {
    color: var(--accent-light);
}

.post-hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--accent-light);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 1;
}

.post-hero .section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.post-hero-meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.post-hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-hero-meta svg {
    color: var(--accent-color);
    opacity: 0.8;
}

.post-detail {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-body);
}

.post-layout {
    max-width: 860px;
    margin: 0 auto;
}

.post-main {
    width: 100%;
}

.post-cover {
    margin: 0 0 var(--spacing-xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
}

.post-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.post-cover figcaption {
    padding: 1rem 1.5rem;
    background-color: var(--bg-surface);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.post-content p {
    margin-bottom: 1.75rem;
}

.post-content h2 {
    font-size: 2rem;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(120deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.post-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
}

.post-content ul, .post-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-content img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.post-footer {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.share-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.share-label {
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.share-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.share-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.share-link--copy {
    margin-left: auto;
}

/* Related Posts */
.related-posts {
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--border-color);
    margin-top: var(--spacing-2xl);
    background: var(--bg-surface);
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* Footer */
.site-footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .brand-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }
}

/* 404 Page */
.error-page {
    padding: 6rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.1), transparent 50%),
                var(--color-bg);
}

/* Floating background elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    animation: float-up 6s ease-in-out infinite;
}

.element-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-light), #c084fc);
    bottom: -50px;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ec4899, var(--accent-color));
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.error-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 100%;
}

.error-code-wrapper {
    position: relative;
    margin-bottom: 1rem;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 0 60px rgba(99, 102, 241, 0.3);
}

.error-code-shadow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: -1;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.error-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-suggestion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.suggestion-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.error-actions .btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.error-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.error-actions .btn-primary:active {
    transform: translateY(0);
}

.error-actions .btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-text);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.error-actions .btn-secondary:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1em;
    font-weight: bold;
}

.error-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.error-links h3 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.quick-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(236, 72, 153, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-links a:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.08));
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

.link-icon {
    font-size: 1.75rem;
    display: block;
    transition: transform 0.3s ease;
}

.quick-links a:hover .link-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1), transparent 45%),
                radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.05), transparent 50%),
                var(--bg-body);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: preloader-pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spinner-rotate 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-top-color: var(--accent-color);
    border-right-color: rgba(99, 102, 241, 0.2);
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-top-color: var(--accent-light);
    border-left-color: rgba(129, 140, 248, 0.2);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-top-color: var(--accent-hover);
    border-right-color: rgba(79, 70, 229, 0.2);
    animation-duration: 0.9s;
}

.preloader-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: preloader-fade 1.5s ease-in-out infinite;
}

@keyframes spinner-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes preloader-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Refactored from index.php --- */

/* Manşet Grid */
.news-hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 500px;
    }
}

/* Ana Manşet Kartı */
.headline-main {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

.headline-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.headline-main:hover img {
    transform: scale(1.03);
}

.headline-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 2rem;
    color: #fff;
    pointer-events: none; /* Tıklamaların arkadaki linke geçmesi için */
}

.headline-tag {
    background: var(--accent-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.headline-title {
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.headline-meta {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Yan Manşetler */
.news-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.headline-sub {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 200px;
    display: block;
}

.headline-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.headline-sub:hover img {
    transform: scale(1.03);
}

.headline-sub .headline-content {
    padding: 1.5rem;
}

.headline-sub .headline-title {
    font-size: 1.25rem;
}

/* Kategori Blokları */
.category-block {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin: 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Küçük Kart */
.cat-card-img {
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    position: relative;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.cat-card a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.cat-card a:hover {
    color: var(--accent-color);
}

.cat-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

/* Social Share Buttons */
.share-buttons {
    display: inline-flex;
    gap: 0.5rem;
    position: relative;
    z-index: 5;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(100, 116, 139, 0.1);
    color: #64748b;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(100, 116, 139, 0.2);
    cursor: pointer;
}

.share-btn svg {
    width: 14px;
    height: 14px;
}

.share-btn:hover {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

/* Manşet Kartı Paylaşım Butonları (Overlay) */
.headline-share {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.headline-main:hover .headline-share,
.headline-sub:hover .headline-share {
    opacity: 1;
    pointer-events: auto;
}

.headline-share .share-btn {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.headline-share .share-btn:hover {
    background-color: rgba(59, 130, 246, 0.9);
    color: #fff;
    border-color: rgba(59, 130, 246, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Toast Notifications */
.notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.notification {
    pointer-events: auto;
    min-width: 300px;
    max-width: 450px;
    background: #ffffff;
    color: #111827;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: notification-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.notification--success { border-left-color: #10b981; }
.notification--error { border-left-color: #ef4444; }
.notification--info { border-left-color: #3b82f6; }
.notification--warning { border-left-color: #f59e0b; }

.notification.is-leaving {
    opacity: 0;
    transform: translateX(100%);
}

.notification__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification__content {
    flex-grow: 1;
}

.notification__title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.notification__message {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

.notification__close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.notification__close:hover {
    color: #111827;
}

@keyframes notification-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* About Page */
.about-page .about-hero,
.contact-page .contact-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.about-page .about-hero-content h1,
.contact-page .contact-hero-content h1 {
    margin-bottom: 1rem;
}

.about-page .about-section,
.about-page .about-story,
.about-page .about-cta,
.contact-page .contact-section {
    padding: 4rem 0;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-page .about-card {
    background-color: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-page .about-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-page .about-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-page .about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-page .about-story {
    background-color: rgba(255, 255, 255, 0.02);
}

.about-page .story-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-page .story-content h2,
.about-page .cta-content {
    text-align: center;
}

.about-page .story-content h2,
.about-page .cta-content h2 {
    margin-bottom: 2rem;
}

.about-page .story-content p,
.about-page .cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-page .story-content p:last-child,
.about-page .cta-content p:last-child {
    margin-bottom: 0;
}

.about-page .about-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-top: 1px solid var(--border-color);
}

.about-page .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Contact Page */
.contact-page .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-page .contact-info h2,
.contact-page .contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-page .contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-page .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-page .contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-page .method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-page .method-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-page .method-content p,
.contact-page .method-content a {
    color: var(--text-secondary);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-page .method-content a:hover {
    color: var(--accent-color);
}

.contact-page .social-links {
    display: flex;
    gap: 1rem;
}

.contact-page .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0.95rem;
}

.contact-page .social-link:hover {
    color: var(--accent-light);
    transform: none;
}

.contact-page .social-link:hover svg {
    transform: none;
}

.contact-page .contact-form-wrapper {
    background-color: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    height: fit-content;
}

.contact-page .form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-page .form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.contact-page .form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-page .form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.contact-page .form-control {
    padding: 0.75rem 1rem;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-page textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-page .btn-submit {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem;
}

@media (max-width: 968px) {
    .contact-page .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-page .about-hero,
    .contact-page .contact-hero {
        padding: 3rem 0;
    }

    .about-page .about-section,
    .about-page .about-story,
    .about-page .about-cta,
    .contact-page .contact-section {
        padding: 3rem 0;
    }

    .about-page .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-page .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-page .contact-methods {
        gap: 1rem;
    }

    .contact-page .contact-method {
        padding: 1rem;
    }

    .contact-page .method-icon {
        font-size: 1.5rem;
    }

    .contact-page .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Algoritma Haber News Theme - Responsive */

@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        position: static;
    }
    
    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }
    
    .nav-content {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: var(--spacing-lg) var(--spacing-md);
        border: none;
        border-bottom: 1px solid rgba(96, 165, 250, 0.1);
        flex-direction: column;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-content.is-active,
    .nav-content.is-open {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-link {
        padding: 1.125rem 1.25rem;
        border-radius: var(--radius-md);
        width: 100%;
        text-align: left;
        background: rgba(15, 23, 42, 0.4);
        border: 1px solid rgba(96, 165, 250, 0.1);
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        display: block;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(59, 130, 246, 0.15);
        border-color: rgba(96, 165, 250, 0.3);
        color: var(--text-primary);
        transform: translateX(4px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
        border-top: 1px solid rgba(96, 165, 250, 0.1);
        gap: var(--spacing-md);
    }
    
    .nav-actions .cta-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
        text-align: center;
        display: block;
    }
    
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .post-hero h1 {
        font-size: 1.75rem;
    }

    .post-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .post-content {
        font-size: 1.05rem;
    }

    .share-box {
        justify-content: center;
    }

    .share-link--copy {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .error-page {
        padding: 3rem 0;
        min-height: auto;
    }

    .error-code-wrapper {
        height: 100px;
    }
    
    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.75rem;
    }

    .error-description {
        font-size: 1rem;
    }

    .error-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quick-links a {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 1.5rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .error-code {
        font-size: 3rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-description {
        font-size: 0.95rem;
    }

    .error-actions {
        margin: 2rem 0;
    }

    .error-actions .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .quick-links a {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .link-icon {
        font-size: 1.5rem;
    }
}
