body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #f4f7f6;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.user-page-section {
    padding: 40px 0;
    position: relative;
    color: #fff;
    background-color: transparent;
}

.user-page-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container {
    max-width: 600px;
}

.user-info {
    text-align: center;
}

.logo-container .rebot-box {
    margin-bottom: 20px;
}

.rebot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(68, 25, 146, 0.15);
    object-fit: cover;
    border: 3px solid #fff;
}

.preview-user-description__component {
    padding: 30px 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.preview-user-description__component p {
    font-weight: 500; /* Bolder main text */
}

.description-wrapper.center {
    text-align: center;
}

.accuracy-highlight {
    color: #00dcf4;
    font-size: 1.3em; /* Even larger */
    font-weight: 700; /* Bold */
    display: inline-block; /* Ensures proper rendering */
    margin-top: 5px; /* Adds a little space */
}

.blocks-wrapper {
    margin-top: 20px;
}

#stockSymbolInput.form-control {
    height: 60px;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px;
}

.preview-link-item__component.pop a {
    transition: transform 0.2s;
}

.preview-link-item__component.pop a:hover {
    transform: scale(1.05);
}

.preview-link-wrapper {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.ai-modal.is-active {
    display: flex;
}

.ai-modal .pro-box,
.ai-modal .result-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px 18px;
    max-width: 340px;
    width: 90%;
    margin: 20px;
}

.ai-modal .title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: bold;
}

.progress-box .item {
    margin-bottom: 16px;
}

.progress-box .i-title {
    font-size: 15px;
    margin-bottom: 5px;
}

.layui-progress {
    background: #eee;
    border-radius: 8px;
    height: 16px;
    overflow: hidden;
}

.layui-progress-bar {
    width: 0%;
    background: #00dcf4;
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease-in-out;
}

.ai-result {
    display: none;
}

.result-box .title .word {
    font-size: 18px;
    font-weight: bold;
}

.text-success {
    color: #15a223;
}

.result-con .con {
    font-size: 15px;
    margin-bottom: 18px;
}

#chat-btn {
    background: #15a223;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: breath 1.6s infinite;
    text-decoration: none;
    border: none;
}

@keyframes breath {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.consent-banner {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    z-index: 1000;
    display: none;
}

.consent-banner p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.consent-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

.consent-banner button#decline-btn {
    background-color: #f44336;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.main-footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(2, 64, 250, 0.7);
    padding: 15px 0;
    text-align: center;
    z-index: 100;
}

.main-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
} 