@font-face {
    font-family: 'Ethnocentric';
    src: url('/fonts/Ethnocentric-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start !important;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #333 100%);
    color: #f0f0f0;
    padding-top: 100px !important;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
}

.banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    box-sizing: border-box;
}

.brand {
    font-family: 'Ethnocentric', sans-serif;
    font-size: clamp(16px, 6vw, 70px);
    line-height: 1.2;
    max-width: 100%;
    white-space: nowrap;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-top: 0 !important;
        margin-left: auto;
        margin-right: auto;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 2rem;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    /* animation: fadeIn 1s ease-in; */
}

.socials a {
    color: #00aced;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 172, 237, 0.1);
}

.socials a:hover {
    color: #fff;
    background: rgba(0, 172, 237, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 172, 237, 0.4);
}

.quick-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.quick-legal-links a {
    color: #b7c8ff;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.quick-legal-links a:hover {
    color: #ffffff;
}

/* Creator Code Banner */
.creator-code-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    margin-top: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    max-width: 500px;
    /* animation: fadeIn 1s ease-in; */
    /* transition: all 0.3s ease; */
}

.creator-code-banner:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.creator-code-banner > ion-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.creator-code-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.creator-code-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.creator-code {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.copy-code-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-code-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.copy-code-btn ion-icon {
    font-size: 1.3rem;
    color: #fff;
}

/* Creator Code Section (About Page) */
.creator-code-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.creator-code-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.creator-code-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.creator-code-section > p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.creator-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.creator-code-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 15px;
    padding: 1.5rem 2rem;
}

.creator-code-title {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-code-value {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.copy-code-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.copy-code-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.copy-code-btn-large ion-icon {
    font-size: 1.3rem;
}

.video-wrap {
    width: 100%;
    max-width: 1100px;
    padding: 0 1rem;
    margin-bottom: 2rem;
    /* animation: fadeInUp 0.8s ease-out; */
}

.video-wrap h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrap video:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.download-section {
    width: 100%;
    max-width: 1100px;
    padding: 2rem 1rem;
    text-align: center;
    /* animation: fadeInUp 1s ease-out; */
}

.download-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.download-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.download-btn ion-icon {
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-card ion-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Media Queries */
@media (max-width: 640px) {
    .page-wrapper {
        padding-top: 100px;
    }

    .socials {
        gap: 15px;
        font-size: 1.8rem;
    }
    
    .socials a {
        width: 45px;
        height: 45px;
    }

    .quick-legal-links {
        gap: 0.7rem;
        padding: 0 0.5rem;
    }

    .quick-legal-links a {
        font-size: 0.86rem;
    }
    
    .creator-code-banner {
        padding: 0.7rem 1.2rem;
        max-width: 100%;
    }
    
    .creator-code-banner > ion-icon {
        font-size: 1.5rem;
    }
    
    .creator-code-label {
        font-size: 0.75rem;
    }
    
    .creator-code {
        font-size: 1rem;
    }
    
    .copy-code-btn {
        width: 35px;
        height: 35px;
    }
    
    .creator-code-section {
        padding: 1.5rem;
    }
    
    .creator-code-box {
        padding: 1rem 1.5rem;
    }
    
    .creator-code-value {
        font-size: 1.4rem;
    }
    
    .tabs {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .dropdown-btn {
        padding-right: 1.3rem !important;
    }
    
    .tab-text {
        gap: 0.05rem;
    }
    
    .tab-title {
        font-size: 0.9rem;
    }
    
    .tab-subtitle {
        font-size: 0.7rem;
    }
    
    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
        min-width: 220px;
        max-width: 90vw;
        right: auto;
    }
    
    .dropdown.open .dropdown-menu {
        transform: translateX(-50%);
    }

    .page-title {
        font-size: 2rem;
    }

    .version-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .email-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .contact-example {
        padding: 1.5rem;
    }
    
    .example-box {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.beta-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #667eea;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.secondary-btn ion-icon {
    font-size: 1.3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 0.5rem 1rem;
}

.tab-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    padding-right: 1.5rem !important;
}

.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    background: rgba(30, 30, 30, 0.98);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.dropdown.open .dropdown-menu {
    display: flex;
    /* animation: fadeInDown 0.3s ease-out; */
    transform: translateX(0%);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ccc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-item ion-icon {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    flex: 1;
}

.dropdown-item-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.dropdown-item-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.item-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

.new-item-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.soon-item-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.tab-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.tab-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    /* animation: pulse 2s ease-in-out infinite; */
}

.soon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    /* animation: pulse 2s ease-in-out infinite; */
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tab-btn ion-icon {
    font-size: 1.3rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tab-btn-link {
    text-decoration: none;
}

.tab-content {
    display: none;
    width: 100%;
    /* animation: fadeInUp 0.5s ease-out; */
    flex-direction: column;
    align-items: center;
}

.tab-content.active {
    display: flex;
}

/* Versions page specific styles */
.versions-container {
    width: 100%;
    max-width: 900px;
    padding: 2rem 1rem;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-box::placeholder {
    color: #888;
}

.search-box:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.search-icon {
    position: relative;
}

.search-icon ion-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #888;
    pointer-events: none;
}

.no-results {
    text-align: center;
    color: #999;
    padding: 3rem;
    font-size: 1.1rem;
}

.version-card.hidden {
    display: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

.back-link ion-icon {
    font-size: 1.2rem;
}

.version-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    /* animation: fadeInUp 0.6s ease-out; */
}

.version-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.version-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.badge-latest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.badge-stable {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.badge-beta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.badge-beta-latest {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: relative;
}

.badge-beta-latest::after {
    content: 'BETA';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: bold;
}

.version-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.version-notes {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.version-notes ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.version-notes li {
    margin-bottom: 0.3rem;
}

/* SHA256 checksum display */
.version-sha256 {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.sha256-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sha256-label ion-icon {
    font-size: 1.2rem;
}

.sha256-hash {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #aaa;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
    word-break: break-all;
    transition: all 0.2s ease;
    user-select: all;
}

.sha256-hash:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Contact page styles */
.contact-info {
    max-width: 900px;
    margin: 2rem auto;
    width: 100%;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.email-display ion-icon {
    font-size: 2.5rem;
    color: #667eea;
}

.email-link {
    font-size: 1.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #764ba2;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.contact-example {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-example h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-example h3 ion-icon {
    font-size: 1.5rem;
    color: #667eea;
}

.contact-example p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
}

.example-box p {
    margin: 0.5rem 0;
    color: #ddd;
    font-size: 0.95rem;
}

.example-box strong {
    color: #667eea;
}

.contact-topics {
    margin-top: 2rem;
}

.contact-topics > h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-topics > h3 ion-icon {
    font-size: 1.8rem;
    color: #667eea;
}

/* About page styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-bio {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.about-bio h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-bio h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.about-bio p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Skills section */
.skills-section {
    margin-bottom: 3rem;
}

.skills-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.skills-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.skill-category h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Stats section */
.stats-section {
    margin-bottom: 3rem;
}

.stats-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.stats-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.stat-card ion-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #aaa;
    font-size: 1rem;
}

/* Testimonials section */
.testimonials-section {
    margin-bottom: 3rem;
}

.testimonials-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.testimonials-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #999;
    font-size: 0.9rem;
    text-align: right;
}

/* Roadmap section */
.roadmap-section {
    margin-bottom: 3rem;
}

.roadmap-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.roadmap-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
}

.roadmap-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.roadmap-icon {
    position: absolute;
    left: -2.4rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #1e1e1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #667eea;
}

.roadmap-icon ion-icon {
    font-size: 1.5rem;
}

.roadmap-item.completed .roadmap-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.roadmap-item.completed .roadmap-icon ion-icon {
    color: #fff;
}

.roadmap-item.in-progress .roadmap-icon {
    border-color: #ffd700;
    /* animation: pulse 2s ease-in-out infinite; */
}

.roadmap-item.in-progress .roadmap-icon ion-icon {
    color: #ffd700;
}

.roadmap-item.upcoming .roadmap-icon {
    border-color: rgba(255, 255, 255, 0.3);
}

.roadmap-item.upcoming .roadmap-icon ion-icon {
    color: rgba(255, 255, 255, 0.5);
}

.roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.roadmap-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.roadmap-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.roadmap-item.in-progress .roadmap-status {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.roadmap-item.upcoming .roadmap-status {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.newsletter-section h2 ion-icon {
    font-size: 2rem;
    color: #667eea;
}

.newsletter-section > p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.newsletter-btn ion-icon {
    font-size: 1.2rem;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}

/* Blog styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
    cursor: pointer;
}

.blog-post:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.blog-post h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #999;
    font-size: 0.85rem;
}

.blog-meta ion-icon {
    font-size: 1rem;
}

/* FAQ styles */
.faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category h2 ion-icon {
    font-size: 1.8rem;
    color: #667eea;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question ion-icon {
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question ion-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
    
    .roadmap-timeline {
        padding-left: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Status Page Styles */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.status-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.status-info {
    flex: 1;
    text-align: left;
}

.status-info h3 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.status-url {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

.status-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.operational {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.status-dot.up {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.status-dot.degraded {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.status-dot.down {
    background: #f87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

.status-dot.checking {
    background: #60a5fa;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ccc;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: #999;
    font-size: 0.9rem;
}

.detail-value {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.status-history {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.uptime-bar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.uptime-days {
    display: flex;
    gap: 2px;
    justify-content: center;
    flex-wrap: wrap;
}

.uptime-day {
    width: 12px;
    height: 40px;
    border-radius: 3px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.uptime-day.up {
    background: #4ade80;
}

.uptime-day.down {
    background: #f87171;
}

.uptime-day.degraded {
    background: #fbbf24;
}

.uptime-day:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.uptime-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.uptime-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.uptime-percentage {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.uptime-label {
    color: #999;
    font-size: 0.9rem;
}

.status-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#overall-status-badge.operational {
    background: #4ade80;
    color: #000;
}

#overall-status-badge.up {
    background: #4ade80;
    color: #000;
}

#overall-status-badge.degraded {
    background: #fbbf24;
    color: #000;
}

#overall-status-badge.down {
    background: #f87171;
    color: #fff;
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .uptime-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .uptime-day {
        width: 10px;
        height: 35px;
    }
}

/* Ko-fi Widget Styling - Remove black box */
#kofi-widget-overlay-iframe {
    background: transparent !important;
    border: none !important;
}

iframe[src*="ko-fi.com"] {
    background: transparent !important;
    border: none !important;
}

/* Ko-fi floating button container */
.floatingchat-container-wrap {
    background: transparent !important;
}

.floatingchat-container-wrap-mobi {
    background: transparent !important;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2.2rem 1rem;
    border-top: 1px solid rgba(102, 126, 234, 0.25);
    text-align: center;
    color: #999;
    width: 100%;
}

.footer-policy-panel {
    margin-top: 1.25rem;
    padding: 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border: 1px solid rgba(102, 126, 234, 0.28);
}

.footer-policy-panel h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
}

.footer-policy-panel h2 ion-icon {
    color: #7ba6ff;
    font-size: 1.2rem;
}

.footer-policy-intro {
    margin: 0;
    color: #c8cee0;
    font-size: 0.9rem;
}

.footer-policy-links {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.footer-policy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(123, 166, 255, 0.3);
    background: rgba(10, 18, 30, 0.38);
    color: #d8e4ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-policy-link ion-icon {
    font-size: 1rem;
    color: #9dbaff;
}

.footer-policy-link:hover {
    transform: translateY(-2px);
    border-color: rgba(123, 166, 255, 0.55);
    background: rgba(16, 30, 53, 0.58);
    box-shadow: 0 8px 20px rgba(10, 20, 38, 0.35);
}

.footer-policy-link:focus-visible {
    outline: 2px solid #8caeff;
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .footer-policy-links {
        grid-template-columns: 1fr;
    }
}

.error-404 {
    width: min(900px, 100%);
    margin-top: 1.5rem;
    padding: 2.8rem 2rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error-404-code {
    display: inline-block;
    font-size: clamp(4rem, 11vw, 7rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.error-404-message {
    margin: 1rem auto 1.8rem;
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.65;
    color: #ccc;
}

.error-404-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.error-404-link:focus-visible {
    outline: 2px solid #8caeff;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .error-404 {
        padding: 2.1rem 1rem;
    }

    .error-404-link {
        min-width: 180px;
    }
}