@import"https://fonts.cdnfonts.com/css/satoshi";
body,
h1[data-astro-cid-ee6qhyem],
p[data-astro-cid-ee6qhyem] {
    font-family: Satoshi, sans-serif !important
}

.page-container[data-astro-cid-ee6qhyem] {
    min-height: 100vh;
    background-color: var(--bg-tertiary);
    position: relative;
    overflow: hidden
}

.main-content[data-astro-cid-ee6qhyem] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
    font-family: Satoshi, sans-serif
}

.content-container[data-astro-cid-ee6qhyem] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: fadeIn 1s ease-out;
    box-shadow: 0 4px 20px #0000001a
}

.logo-section[data-astro-cid-ee6qhyem] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.logo[data-astro-cid-ee6qhyem] {
    width: 40px;
    height: 40px;
    border-radius: 10px
}

.logo-text[data-astro-cid-ee6qhyem] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.5px
}

h1[data-astro-cid-ee6qhyem] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.description[data-astro-cid-ee6qhyem] {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6
}

.stats[data-astro-cid-ee6qhyem] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px
}

.stat-item[data-astro-cid-ee6qhyem] {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1rem;
    min-width: 100px;
    animation: cardPop .6s cubic-bezier(.16, 1, .3, 1);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all .6s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    cursor: pointer
}

.stat-item[data-astro-cid-ee6qhyem]:after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .5), #2563eb80);
    opacity: 0;
    transition: opacity .6s cubic-bezier(.23, 1, .32, 1);
    transform: translateZ(-1px)
}

.stat-item[data-astro-cid-ee6qhyem]:hover {
    transform: translateZ(20px) rotateX(10deg) rotateY(-10deg);
    box-shadow: 5px 5px 20px #0003, -5px -5px 20px rgba(var(--primary-rgb), .1);
    border-color: var(--primary)
}

.stat-item[data-astro-cid-ee6qhyem]:hover:after {
    opacity: .1
}

.stat-value[data-astro-cid-ee6qhyem] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem;
    transition: all .3s ease;
    transform: translateZ(10px)
}

.stat-label[data-astro-cid-ee6qhyem] {
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 500;
    transform: translateZ(10px)
}

.cta-section[data-astro-cid-ee6qhyem] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.cta-button[data-astro-cid-ee6qhyem] {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.5rem;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease
}

.cta-button[data-astro-cid-ee6qhyem]:not(.secondary) {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: #fff;
    border: none
}

.cta-button[data-astro-cid-ee6qhyem].secondary {
    background: #3b82f61a;
    border: 1px solid rgba(59, 130, 246, .2);
    color: var(--primary)
}

.cta-button[data-astro-cid-ee6qhyem]:hover {
    transform: translateY(-2px)
}

.cta-button[data-astro-cid-ee6qhyem]:not(.secondary):hover {
    background: linear-gradient(135deg, #2563eb, var(--primary))
}

.cta-button[data-astro-cid-ee6qhyem].secondary:hover {
    background: #3b82f626
}

.social-links[data-astro-cid-ee6qhyem] {
    display: flex;
    justify-content: center;
    gap: 1rem
}

.social-link[data-astro-cid-ee6qhyem] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    transition: all .2s ease
}

.social-link[data-astro-cid-ee6qhyem]:hover {
    transform: translateY(-2px);
    color: var(--primary);
    border-color: var(--primary)
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes cardPop {
    0% {
        opacity: 0;
        transform: scale(.8) translateY(20px)
    }
    60% {
        transform: scale(1.05)
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes float {
    0% {
        transform: translateZ(20px) rotateX(10deg) rotateY(-10deg)
    }
    50% {
        transform: translateZ(30px) rotateX(12deg) rotateY(-12deg)
    }
    to {
        transform: translateZ(20px) rotateX(10deg) rotateY(-10deg)
    }
}

.stat-item[data-astro-cid-ee6qhyem]:hover .stat-value[data-astro-cid-ee6qhyem] {
    color: var(--primary);
    transform: translateZ(30px);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: translateZ(30px) scale(1)
    }
    50% {
        transform: translateZ(30px) scale(1.05)
    }
    to {
        transform: translateZ(30px) scale(1)
    }
}

@media (max-width: 640px) {
    .content-container[data-astro-cid-ee6qhyem] {
        padding: 2rem
    }
    h1[data-astro-cid-ee6qhyem] {
        font-size: 2rem
    }
    .description[data-astro-cid-ee6qhyem] {
        font-size: 1rem
    }
    .stats[data-astro-cid-ee6qhyem] {
        gap: 1rem
    }
    .stat-item[data-astro-cid-ee6qhyem] {
        min-width: 80px;
        padding: .75rem
    }
    .stat-value[data-astro-cid-ee6qhyem] {
        font-size: 1.5rem
    }
    .cta-section[data-astro-cid-ee6qhyem] {
        flex-direction: column
    }
    .cta-button[data-astro-cid-ee6qhyem] {
        width: 100%;
        justify-content: center
    }
}