body {
    margin: 0;
    padding: 0;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #000000;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.icon-links-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color 200ms ease, transform 200ms ease;
    text-decoration: none;
    padding: 5px;
}

.icon-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.icon-link svg {
    width: 24px;
    height: 24px;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.docs-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 200ms ease, background-color 200ms ease;
}

.docs-link:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
}

.container {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: border-color 300ms ease, background-color 300ms ease;
}

.carousel-container:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.wip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    background-color: rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.5);
    border-radius: 4px;
    color: #FFA500;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.carousel-title {
    color: #ffffff;
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.carousel-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: center;
}

.carousel-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: color 200ms ease, transform 200ms ease;
}

.carousel-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.subtitle {
    font-size: 1.5em;
    color: #ffffff;
    margin: 20px 0;
    font-weight: 300;
}

.contact {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 400;
    transition: border-color 120ms ease, background-color 120ms ease;
}

.contact:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
    .top-bar-content {
        justify-content: center;
    }
    
    .icon-links-left {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button {
        font-size: 1em;
        padding: 12px 24px;
    }
    
    .logo {
        max-width: 350px;
    }
    
    .carousel-container {
        padding: 25px 20px;
        margin: 30px 20px 0;
    }
    
    .carousel-title {
        font-size: 1.4em;
    }
    
    .carousel-description {
        font-size: 0.9em;
    }
}
