/**
 * Changelog & Roadmap Pages Styles
 */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" fill-opacity="0.1"/></svg>');
    background-size: 20px 20px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Changelog Content */
.changelog-content,
.roadmap-content {
    padding: 5rem 0;
    background: #f8fafc;
}

.changelog-content .container,
.roadmap-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
}

.changelog-timeline,
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Changelog Item */
.changelog-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    position: relative;
}

.changelog-item::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 2rem;
    bottom: -3rem;
    width: 2px;
    background: linear-gradient(180deg, #e2e8f0 0%, transparent 100%);
}

.changelog-item:last-child::before {
    display: none;
}

.changelog-date {
    text-align: right;
    padding-top: 0.5rem;
}

.changelog-version {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.25rem;
}

.changelog-time {
    color: #64748b;
    font-size: 0.95rem;
}

.changelog-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s;
}

.changelog-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.changelog-header {
    padding: 2rem 2rem 1rem;
}

.changelog-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.changelog-body {
    padding: 0 2rem 2rem;
}

.changelog-section {
    margin-bottom: 1.5rem;
}

.changelog-section:last-child {
    margin-bottom: 0;
}

.changelog-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.changelog-section-title i {
    font-size: 1.1rem;
}

.changelog-section-title .fa-plus-circle {
    color: #10b981;
}

.changelog-section-title .fa-wrench {
    color: #6366f1;
}

.changelog-section-title .fa-bug {
    color: #ef4444;
}

.changelog-section-title .fa-shield-alt {
    color: #f59e0b;
}

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

.changelog-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.7;
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #94a3b8;
    font-weight: bold;
}

.changelog-summary {
    color: #64748b;
    line-height: 1.8;
}

.changelog-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.changelog-link:hover {
    text-decoration: underline;
}

/* Changelog Sidebar */
.changelog-sidebar,
.roadmap-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.changelog-subscribe,
.roadmap-cta {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 2px solid #c7d2fe;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.changelog-subscribe-icon,
.roadmap-cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.changelog-subscribe h3,
.roadmap-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.changelog-subscribe p,
.roadmap-cta p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.changelog-subscribe-button,
.roadmap-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.changelog-subscribe-button:hover,
.roadmap-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.changelog-info,
.roadmap-legend,
.roadmap-info {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
}

.changelog-info h4,
.roadmap-legend h4,
.roadmap-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.changelog-info p,
.roadmap-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.changelog-info p:last-child,
.roadmap-info p:last-child {
    margin-bottom: 0;
}

.changelog-info ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.changelog-info ul li {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.changelog-info ul li strong {
    color: #1e293b;
}

/* Roadmap Filters */
.roadmap-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.roadmap-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.roadmap-filter:hover {
    border-color: #c7d2fe;
    color: #6366f1;
}

.roadmap-filter.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
}

/* Roadmap Quarter */
.roadmap-quarter {
    margin-bottom: 3rem;
}

.roadmap-quarter:last-child {
    margin-bottom: 0;
}

.roadmap-quarter-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.roadmap-quarter-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.roadmap-quarter-label {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 2px solid #c7d2fe;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6366f1;
}

/* Roadmap Item */
.roadmap-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.roadmap-item:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.roadmap-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
}

.roadmap-item-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.75rem 0 0;
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.roadmap-status.small {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.roadmap-status.in-progress {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.roadmap-status.planned {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.roadmap-status.under-review {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    color: #6b21a8;
}

.roadmap-item-votes {
    flex-shrink: 0;
}

.roadmap-vote-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc, #e0e7ff);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: #6366f1;
}

.roadmap-vote-button:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.roadmap-item-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.roadmap-item-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.roadmap-category,
.roadmap-progress,
.roadmap-eta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.roadmap-category i,
.roadmap-progress i,
.roadmap-eta i {
    color: #6366f1;
}

/* Roadmap Legend */
.roadmap-legend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadmap-legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .changelog-content .container,
    .roadmap-content .container {
        grid-template-columns: 1fr;
    }

    .changelog-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .changelog-item::before {
        display: none;
    }

    .changelog-date {
        text-align: left;
        padding-top: 0;
    }

    .changelog-version {
        font-size: 1.25rem;
    }

    .roadmap-filters {
        gap: 0.75rem;
    }

    .roadmap-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .roadmap-item-header {
        flex-direction: column;
        gap: 1rem;
    }

    .roadmap-vote-button {
        flex-direction: row;
        padding: 0.6rem 1rem;
    }

    .roadmap-item-title h3 {
        font-size: 1.25rem;
    }

    .roadmap-quarter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
        margin-bottom: 2rem;
    }

    .legal-toc-sticky {
        position: static;
    }

    .legal-toc-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .legal-toc-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        gap: 0.5rem;
    }

    .legal-toc-link i {
        font-size: 1rem;
    }

    .legal-toc-link span {
        font-size: 0.85rem;
    }

    .legal-section-header h2 {
        font-size: 2rem;
    }

    .legal-content-block {
        padding: 1.5rem;
    }

    .legal-content-block h3 {
        font-size: 1.25rem;
    }

    .legal-content-block h4 {
        font-size: 1rem;
    }

    .legal-footer-contacts {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .legal-toc-nav {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .legal-section-header h2 {
        font-size: 1.75rem;
    }

    .legal-content-block {
        padding: 1.25rem;
    }

    .legal-content-block h3 {
        font-size: 1.15rem;
    }
}

/* Legal/Terms Page Styles */
.legal-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
    position: relative;
}

.legal-toc-sticky {
    position: sticky;
    top: 100px;
}

.legal-toc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-toc-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.legal-toc-link i {
    font-size: 1.1rem;
    color: #6366f1;
}

.legal-toc-link:hover {
    background: #f1f5f9;
    color: #6366f1;
}

.legal-toc-link.active {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-color: #c7d2fe;
    color: #6366f1;
}

/* Main Content */
.legal-main {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.legal-section:last-of-type {
    margin-bottom: 2rem;
}

.legal-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #e2e8f0;
}

.legal-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.legal-section-intro {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.legal-content-block {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.legal-content-block:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.legal-content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem;
}

.legal-content-block h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #475569;
    margin: 1.5rem 0 0.75rem;
}

.legal-content-block p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content-block p:last-child {
    margin-bottom: 0;
}

.legal-content-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-content-block ul li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.legal-content-block ul li::before {
    content: '\2022';
    position: absolute;
    left: 0.5rem;
    color: #6366f1;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-content-block strong {
    color: #1e293b;
    font-weight: 600;
}

/* Legal Footer */
.legal-footer {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 2px solid #c7d2fe;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.legal-footer-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-footer-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.legal-footer-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.legal-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}

.legal-footer-contact:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.legal-footer-contact i {
    font-size: 1.5rem;
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.legal-footer-contact strong {
    display: block;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.legal-footer-contact a {
    color: #6366f1;
    text-decoration: none;
    word-break: break-all;
    font-size: 0.95rem;
}

.legal-footer-contact a:hover {
    text-decoration: underline;
}

/* Status Page Styles */
.status-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.status-overall {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.status-overall-icon i {
    font-size: 4rem;
}

.status-overall-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.status-overall-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.status-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.status-services {
    margin-bottom: 3rem;
}

.status-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.status-item:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.status-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.status-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-item-info i {
    font-size: 1.5rem;
    color: #6366f1;
}

.status-item-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.status-item-desc {
    color: #64748b;
    margin: 0;
    padding-left: 2.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge-operational {
    background: #d1fae5;
    color: #065f46;
}

.status-badge-operational i {
    color: #10b981;
}

.uptime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.uptime-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.uptime-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.uptime-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.uptime-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
}

.status-uptime,
.status-updates,
.status-notes {
    margin-bottom: 3rem;
}

.status-update-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.status-update-date {
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 1rem;
    width: 80px;
}

.status-update-day {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
}

.status-update-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
}

.status-update-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.status-update-content p {
    color: #64748b;
    margin: 0 0 1rem;
}

.status-update-time {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

.status-subscribe {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 2px solid #c7d2fe;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.status-subscribe-content i {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.status-subscribe-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.status-subscribe-content p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.status-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
}

.status-subscribe-btn:hover {
    color: white !important;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    text-decoration: none !important;
}

.status-subscribe-btn:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.status-note {
    display: flex;
    gap: 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.status-note i {
    font-size: 1.5rem;
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.status-note h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.status-note p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.status-note a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.status-note a:hover {
    text-decoration: underline;
}

/* Accessibility Page Styles */
.accessibility-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.accessibility-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accessibility-intro {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border: 2px solid #c7d2fe;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.accessibility-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 1rem;
}

.accessibility-intro p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.accessibility-block {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.accessibility-block:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.accessibility-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem;
}

.accessibility-block h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #475569;
    margin: 2rem 0 0.75rem;
}

.accessibility-block h4:first-of-type {
    margin-top: 1rem;
}

.accessibility-block p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.accessibility-block ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.accessibility-block ul li {
    padding-left: 1.75rem;
    position: relative;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.accessibility-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.accessibility-block a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.accessibility-block a:hover {
    text-decoration: underline;
}

.accessibility-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.accessibility-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}

.accessibility-contact-item:hover {
    border-color: #6366f1;
    background: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.accessibility-contact-item i {
    font-size: 1.5rem;
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.accessibility-contact-item strong {
    display: block;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.accessibility-contact-item a {
    color: #6366f1;
    font-weight: 600;
}

.accessibility-footer {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.accessibility-footer p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive for Status and Accessibility */
@media (max-width: 968px) {
    .status-overall {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .status-overall-icon i {
        font-size: 3rem;
    }

    .status-overall-text h2 {
        font-size: 1.75rem;
    }

    .status-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .status-item-desc {
        padding-left: 0;
    }

    .uptime-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .status-update-item {
        flex-direction: column;
    }

    .accessibility-contact {
        grid-template-columns: 1fr;
    }

    .accessibility-block {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .uptime-grid {
        grid-template-columns: 1fr;
    }

    .status-overall-text h2 {
        font-size: 1.5rem;
    }

    .uptime-percentage {
        font-size: 2.5rem;
    }
}
