.home-hero-animation-code-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.home-hero-animation-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.home-hero-animation-dot-red { background-color: #E04340; }
.home-hero-animation-dot-yellow { background-color: #fbbf24; }
.home-hero-animation-dot-green { background-color: #34d399; }

.home-hero-animation-code-editor {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #4A5565;
    font-weight: 200;
    white-space: pre;
}

.home-hero-animation-line {
    display: flex;
    min-height: 22px;
}

.home-hero-animation-line-number {
    color: #9ca3af;
    margin-right: 16px;
    user-select: none;
    min-width: 20px;
    text-align: right;
    font-weight: 300;
}

.home-hero-animation-line-content {
    flex: 1;
}

.home-hero-animation-keyword { color: #E04340; font-weight: 300; }
.home-hero-animation-function { color: #1F2937; font-weight: 300; }
.home-hero-animation-string { color: #059669; font-weight: 200; }
.home-hero-animation-comment { color: #9ca3af; font-style: italic; font-weight: 200; }
.home-hero-animation-property { color: #0891b2; font-weight: 300; }
.home-hero-animation-value { color: #4A5565; font-weight: 200; }

.home-hero-animation-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background-color: #E04340;
    animation: home-hero-animation-blink 1s infinite;
    margin-left: 1px;
    vertical-align: text-bottom;
}

@keyframes home-hero-animation-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@media (max-width: 768px) {
    .home-hero-animation-hero-container {
        flex-direction: column;
    }

    .home-hero-animation-code-container {
        width: 100%;
        max-width: 100%;
    }

    .home-hero-animation-hero-left h1 {
        font-size: 2rem;
    }
}