/* Scoped styles for City Animation Integration */
#city-animation-container {
    position: relative;
    width: 100%;
    height: 900px;
    /* Matches previous iframe height */
    overflow: hidden;
    background-color: #000;
    cursor: crosshair;
    font-family: 'Jost', sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    border-radius: 0 0 35px 35px;
}

#city-animation-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
}

#city-animation-container p {
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 1rem;
}

/* Header positioning */
#city-animation-container .header {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    /* Allow clicking through to canvas if needed */
}

@media (max-width: 991px) {
    #city-animation-container .header {
        top: 35%;
    }
}

#city-animation-container .header-content {
    padding: 50px;
    background-color: rgba(0, 0, 0, .3);
    border-radius: 10px;
}

#city-animation-container .disable-selection {
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
}

#city-animation-container h1 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    color: #fff;
    font-size: clamp(48px, 5vw, 64px);
    /* Responsive font size */
    line-height: 1.1;
}

#city-animation-container h1 span {
    color: #c29f7b;
    font-weight: bold;
}

#city-animation-container h1::after {
    content: '';
    font-size: 16px;
    position: absolute;
    top: 3px;
    padding-left: 5px;
    font-weight: 400;
}