body {
    height: 200vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    font-family: "Fredoka", Montserrat, sans-serif;
    color: #242b34;
}

.container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    position: absolute;
    transition: transform 0.1s linear;
}

#outer-ring {
    width: 120%;
    height: 120%;
    transform-origin: center;
}

#middle-ring {
    width: 40%;
    height: 40%;
    transform-origin: center;
}

#inner-ring {
    width: 90%;
    height: 90%;
    transform-origin: center;
}

.content {
    position: relative;
    z-index: 1;
    padding: 2rem;

    max-width: 1200px;
    margin: 0 auto;
}

header {
    padding: 1rem 0;
    margin-top: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
}

nav a {
    color: #242b34;
    text-decoration: none;
    font-weight: bold;
}

section {
    margin: 4rem 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #242b34;
}

.logo img {
    height: 30px;
    padding: 30px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #242b34;
    text-decoration: none;
    font-weight: 500;
}

.main-content {
    text-align: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 100vh auto 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

strong {
    background: linear-gradient(
        90deg,
        #ff8756,
        #d17bba
    ); /* Example gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-content.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--footer-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    #outer-ring {
        width: 140%;
        height: 140%;
    }

    #middle-ring {
        width: 40%;
        height: 40%;
    }

    #inner-ring {
        width: 90%;
        height: 90%;
    }

    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .main-content {
        padding: 1rem;
        margin: 80vh auto 0;
    }
}

/* Additional mobile improvements */
@media screen and (max-width: 480px) {
    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        padding: 1rem;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .main-content {
        margin: 70vh auto 4rem;
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 4px solid #242b34;
    border-bottom: 4px solid #242b34;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-15px) rotate(45deg);
    }
    60% {
        transform: translateY(-7px) rotate(45deg);
    }
}

.scroll-indicator.hidden {
    opacity: 0;
}

strong {
    background: linear-gradient(
        90deg,
        #ff8756,
        #d17bba
    ); /* Example gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
