/* Hero Section */
#hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 100px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    opacity: 0.7;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background-color: var(--color-primary);
    animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(80px);
    }
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.code-block {
    background-color: rgb(23, 28, 42);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: #b7c5d3;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.code-block pre {
    overflow-x: auto;
}

.highlight {
    color: #7dd3fc;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(40px);
}

.element:nth-child(1) {
    width: 300px;
    height: 300px;
    background-color: rgba(2, 82, 242, 0.4);
    top: -10%;
    left: 60%;
}

.element:nth-child(2) {
    width: 200px;
    height: 200px;
    background-color: rgba(255, 107, 0, 0.4);
    bottom: 10%;
    right: 10%;
}

.element:nth-child(3) {
    width: 150px;
    height: 150px;
    background-color: rgba(56, 178, 172, 0.4);
    bottom: 30%;
    left: 0;
}