body {
    font-family: 'Roboto', sans-serif;
    padding: 0 20px 40px 20px;
    max-width: 450px;
    margin: 0 auto;
}

.top-gray-bar {
    background-color: #e5e5e5;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    gap: 10px;
    overflow: hidden;
    position: relative;
}

.social-proof-img img {
    height: 30px;
    display: block;
}

.text-slider {
    position: relative;
    height: 20px;
    flex: 1;
    overflow: hidden;
}

.slide-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.slide-text.active {
    opacity: 1;
    font-size: 18px;
    transform: translateY(0);
}

.slide-text.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.hero-mobile {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: #000;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.sticky-logo-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 1001;
    width: 100%;
    text-align: center;
    pointer-events: none;
    margin-top: -650px !important;
    margin-bottom: 620px !important;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.hero-subtitle img {
    height: 26px;
    width: auto;
    display: block;
}

.hero-title {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-top: 30px;
}

.hero-title:first-child{
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-title:last-child{
    margin-top: 0;
    font-size: 24px;
}

.stock-ticker-bar {
    background: linear-gradient(to right, rgb(78, 129, 187), rgb(78, 129, 187));
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    overflow: hidden;
    color: #fff;
    margin-top: -20px;
}

.stock-left {
    background-color: #000;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 5px;
    position: relative;
    z-index: 10;
    filter: drop-shadow(4px 0 2px rgba(0,0,0,0.1));
}

.stock-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 15px;
    border-color: transparent transparent transparent #000;
}

.stock-text {
    margin-right: 5px;
}

.stock-text strong {
    color: #fff;
    font-weight: 800;
}

.hourglass-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: flip-hourglass 1.5s infinite ease-in-out alternate;
}

.hourglass-icon svg {
    fill: #fff;
    width: 100%;
    height: 100%;
}

@keyframes flip-hourglass {
    0% { transform: rotate(0deg); }
    45% { transform: rotate(180deg); }
    100% { transform: rotate(180deg); }
}

.stock-right {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-wrapper {
    white-space: nowrap;
    position: absolute;
    animation: marquee 10s linear infinite;
    width: 100%;
}

.marquee-content {
    margin: 0;
    padding-left: 20px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    line-height: 32px;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-150%); }
}

@media (max-width: 400px) {
    body {
        padding: 0;
        width: 100%;
    }

    .slide-text.active {
        font-size: 10px;
    }

    .hero-title {
        margin-top: 40px;
    }

    .sticky-logo-wrapper {
        margin-top: -620px !important;
        margin-bottom: 592px !important;
        top: 20px;
    }
}

@media (max-width: 370px) {
    .sticky-logo-wrapper {
        margin-top: -690px !important;
        margin-bottom: 660px !important;
        top: 20px;
    }
}

@media (max-width: 350px) {
    .sticky-logo-wrapper {
        margin-top: -140px !important;
        margin-bottom: 50px;
        top: 60px;
    }
}