body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('../img/bg.jpg') center center fixed;
    font-family: 'Bitcount Grid Single', 'Jost', Arial, sans-serif;
    overflow-x: hidden;
}
* {
    font-family: 'Bitcount Grid Single', 'Jost', Arial, sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.10);
    z-index: 10;
    box-shadow: 0 4px 24px 0 rgba(255,255,255,0.7);
    border-bottom: 2px solid #fff;
}

.header-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-center {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111;
    letter-spacing: 2px;
    text-shadow: 3px 4px 8px rgb(255 248 248);
}

.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.big-counter {
    font-size: 7rem;
    font-weight: 500;
    color: #111;
    text-shadow: 14px 20px 13px rgb(3 3 3 / 78%);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.small-counter {
    font-size: 5.5rem;
    color: #111;
    text-shadow: 14px 20px 13px rgb(3 3 3 / 78%);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    z-index: 10;
    box-shadow: 0 -4px 24px 0 rgba(255,255,255,0.7);
    border-top: 2px solid #fff;
}

.footer-center {
    width: 100%;
    text-align: center;
}

.x-link {
    display: inline-block;
    padding: 14px 38px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    background: #fff;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.x-link:hover {
    background: #111;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* Magnifier effect for cursor */
.cursor-lens {
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 0 32px 8px rgba(0,0,0,0.25);
    border: 2px solid #fff3;
    display: none;
    background: transparent;
}

.cursor-lens img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    filter: blur(2px) contrast(1.2);
}

@media (max-width: 1024px) {
    .big-counter{ 
        text-align: center;
    }
    .small-counter{
        text-align: center;
    }
    .top-center{
        text-align: center;
    }
}
@media (max-width: 450px) {
    .big-counter {
        font-size: 5rem;
    }
    .small-counter {
        font-size: 3.5rem;
    }
}