body {
    font-family: sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
    overflow-y: auto;
    font-size: 0.8rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background-color: #212332;
    border-bottom: 1px solid #eee;
}

.left-header {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    font-family: 'Anton', sans-serif;
}

.signup-container {
    display: flex;
    align-items: center;
    height: 24px;
    position: relative;
}

.signup-form {
    display: flex;
    align-items: center;
}

.phone-input {
    background-color: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    border: 1px solid #ccc;
    margin-right: 8px;
    text-align: center;
    width: 96px;
    font-size: 11.2px;
}

#signup-btn {
    background-color: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    font-weight: bold;
    color: #212322;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.spinner {
    display: none;
    border: 3.2px solid #f3f3f3;
    border-top: 3.2px solid #007bff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.credit-text {
    display: none;
    font-family: sans-serif;
    font-size: 12.8px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
}

.error-message {
    color: red;
    font-size: 9.6px;
    display: none;
    margin-top: 4px;
}

.wwr-container {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wwr-container .counter {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    font-size: 9.8px;
    font-weight: 600;
    color: #F43F5E;
    line-height: 14px;
}

.wwr-container .counter svg {
    margin-right: 4px;
    vertical-align: middle;
    width: 11.2px;
    height: 11.2px;
}

.wwr-container .content {
    max-width: 900px;
    width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
    text-align: left;
    margin-top: 60px;
}

.wwr-container .headline {
    font-weight: 900;
    font-size: 33.6px;
    line-height: 39.2px;
    letter-spacing: -0.7px;
    color: #1F2937;
    margin: 0;
    max-width: 900px;
}

.wwr-container .headline .highlight {
    color: #F43F5E;
}

.wwr-container .subheading {
    font-weight: 500;
    font-size: 12.6px;
    line-height: 19.6px;
    color: #475467;
    margin-top: 10px;
    max-width: 800px;
    margin-bottom: 0;
}

.wwr-container .cta {
    background-color: #F43F5E;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    line-height: 19.6px;
    padding: 11.2px 22.4px;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(244, 63, 94, 0.25);
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s, transform 0.2s;
}

.wwr-container .cta:hover {
    background-color: #E11D48;
    transform: scale(1.03);
}

.container {
    background-color: #ffffff;
    width: 100%;
    max-width: none;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    border-radius: 5px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 25px;
}

.banner {
    background-color: #212322;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.75em;
    padding: 4px 8px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.banner::before {
    content: "★★★★ ";
    color: #ffffff;
}

.bottom-banner {
    background-color: #212322;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.75em;
    padding: 4px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.bottom-banner::before {
    content: " ";
    color: #ffffff;
}

.stock-info {
    display: flex;
    align-items: center;
    padding: 30px 15px 10px;
    margin-top: 20px; /* Increased space for banner */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text {
    flex-grow: 1;
}

.name {
    color: #000000;
    font-size: 0.8em;
    font-weight: 700;
}

.ticker {
    color: #4d4d4d;
    font-size: 0.7em;
    font-weight: 400;
}

.price-info {
    text-align: right;
    margin-left: 10px;
}

.price {
    color: #000000;
    font-size: 0.8em;
    font-weight: 600;
}

.change {
    color: #00cc00;
    font-size: 0.875em;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #00cc00;
    margin: 0 2px;
}

.button-container {
    padding: 10px 15px 15px;
    display: flex;
    justify-content: flex-end;
}

.button {
    background-color: #228b22;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.6em;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
}

.stock {
    padding: 10px 15px;
}

.stock:not(:last-child) {
    border-bottom: 1px solid #eeeeee;
}

.left {
    float: left;
}

.right {
    float: right;
    text-align: right;
}

.clear {
    clear: both;
}

.symbol {
    color: #000000;
    font-weight: bold;
    font-size: 12.8px;
}

.name {
    color: #666666;
    font-size: 11.2px;
}

.price {
    color: #000000;
    font-weight: bold;
    font-size: 12.8px;
}

.change-green {
    color: #008000;
    font-size: 11.2px;
}

.change-red {
    color: #ff0000;
    font-size: 11.2px;
}

.added-content {
    line-height: 1.2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hot-banner {
    background-color: #212322;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    overflow: hidden;
}

.item:last-child {
    margin-bottom: 0;
}

@media (max-width: 450px) {
    .item {
        flex-direction: column;
        align-items: flex-start;
    }
    .item img {
        width: 100% !important;
    }
    .item p {
        padding: 8px 0 0 0 !important;
        white-space: normal !important;
        font-size: 12px;
    }
}

.new-banner {
    background-color: #212322; /* Changed from #351C1D */
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #ffffff; /* White text */
    width: 100%;
    box-sizing: border-box;
}

.banner-title {
    color: #adff2f; /* Light green for title */
    font-size: 21px; /* Reduced from 36px */
    margin-bottom: 20px;
    font-weight: bold;
}

.banner-item {
    font-size: 12px; /* Reduced from 24px */
    margin-bottom: 10px;
}

.banner-item:last-child {
    margin-bottom: 0;
}
