@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Thin.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Thin.ttf') format('ttf');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-ExtraLight.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-ExtraLight.ttf') format('ttf');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Light.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Light.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Regular.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Medium.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-SemiBold.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Bold.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-ExtraBold.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: vazir;
    src: url('../fonts/vazir/Vazir-Black.woff2') format('woff2'),
        url('../fonts/vazir/Vazir-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #021423;
    --primary-dark: #1565c0;
    --secondary: #26A69A;
    --secondary-dark: #00897B;
    --dark: #2C3E50;
    --light: #FFFFFF;
    --gray: #E0E0E0;
    --gray-dark: #616161;
    --bg-gradient: linear-gradient(135deg, #1271c4 0%, #010a11 100%);
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --info: #29B6F6;
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F7FA;
    --text-color: #2C3E50;
    --card-bg: #FFFFFF;
    --border-color: #E0E0E0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: vazir;
}

html,
body {
    direction: rtl;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    padding-bottom: 0 !important;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

h2 {
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--primary);
    padding: 1rem 0;
    color: var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--light);
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links li a:hover {
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.theme-toggle:hover {
    transform: rotate(30deg);
}

.theme-select {
    display: flex;
    gap: 0.5rem;
}

.theme-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--light);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.theme-option:hover,
.theme-option.active {
    opacity: 1;
    transform: scale(1.1);
}

.primary-theme {
    background: var(--primary);
}

.login-btn {
    color: var(--light);
    font-weight: 500;
}

.signup-btn {
    background: var(--light);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signup-btn i {
    font-size: 0.9rem;
}

.hero {
    background: var(--bg-gradient);
    color: var(--light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta-button {
    background: #FFF;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    font-size: 0.9rem;
}

.stats-counter {
    background: rgb(210 223 255 / 7%);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: 2rem;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.stat-label {
    color: var(--light);
    opacity: 0.9;
    font-size: 0.9rem;
}

.ai-technology {
    padding: 5rem 0;
    text-align: center;
}

.ai-technology h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray-dark);
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.features-image {
    max-width: 300px;
    animation: float 3s ease-in-out infinite;
}

.features-image img {
    max-width: 100%;
    border-radius: 10px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.features-list .feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.features-list .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features-list .feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.features-list .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.features-list .feature-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.feature-section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--card-bg);
}

.feature-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-image {
    flex: 1;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
}

.feature-content {
    flex: 1;
    padding: 0 20px;
}

.feature-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--text-color);
}

.feature-content p {
    margin-bottom: 2rem;
    color: var(--gray-dark);
    text-align: justify;
}

.feature-list {
    margin-bottom: 2rem;
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.customer-satisfaction {
    padding: 5rem 0;
    background: var(--card-bg);
}

.customer-satisfaction .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cs-image {
    flex: 1;
    animation: float 3s ease-in-out infinite;
}

.cs-image img {
    max-width: 100%;
    border-radius: 10px;
}

.cs-content {
    flex: 1;
}

.cs-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cs-content p {
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.learn-more:hover {
    gap: 0.7rem;
}

.learn-more i {
    font-size: 0.9rem;
}

.channels {
    padding: 5rem 0;
    text-align: center;
}

.channel-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.channel-card {
    flex: 1;
    max-width: 350px;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    background: var(--card-bg);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.channel-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.channel-icon i {
    font-size: 1.8rem;
}

.channel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.channel-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.robo-news {
    padding: 5rem 0;
    background: var(--card-bg);
    text-align: center;
}

.news-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: right;
}

.news-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    background: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.news-item p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.client-info h4 {
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.client-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.faq-section {
    padding: 5rem 0;
    background: var(--card-bg);
}

.faq-container {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-color);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    padding-right: 30px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--primary);
    font-size: 0.9rem;
}

.faq-question.active {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: none;
}

.faq-answer p {
    padding: 1rem 0;
    color: var(--gray-dark);
}

footer {
    background: #1A202C;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-top {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column p {
    color: #A0AEC0;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #A0AEC0;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.footer-certifications a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.footer-certifications a:hover {
    transform: translateY(-5px);
}

.footer-certifications img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #A0AEC0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 992px) {

    .hero .container,
    .feature-section .container,
    .news-container,
    .customer-satisfaction .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .feature-content,
    .cs-content {
        max-width: 100%;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .features-list .feature-item {
        padding: 1.5rem 0.5rem;
    }

    .news-content {
        order: 1;
        text-align: center;
    }

    .cs-content {
        order: -1;
    }

    .channel-cards {
        flex-direction: column;
        align-items: center;
    }

    .channel-card {
        max-width: 100%;
    }

    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 1rem 0;
    }

    .ticker-label,
    .ticker-action {
        display: none !important;
    }

    .ai-technology,
    .feature-section,
    .customer-satisfaction,
    .channels,
    .robo-news,
    .faq-section {
        padding: 0rem 0 4rem 0;
    }

    .ai-technology h2 {
        margin-bottom: 0;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--light);
        cursor: pointer;
        z-index: 101;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        display: none;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: right;
    }

    .nav-links li a {
        display: block;
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        color: var(--text-color);
        border-right: 3px solid transparent;
        transition: all 0.3s;
    }

    .nav-links li a:hover,
    .nav-links li a:focus {
        border-right-color: var(--primary);
        background-color: rgba(0, 0, 0, 0.05);
        padding-right: 1.5rem;
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .features-list {
        padding-right: 0;
    }

    .feature-list li {
        justify-content: flex-start;
        text-align: right;
        flex-direction: row-reverse;
    }

    .feature-list li i {
        margin-right: 0;
        margin-left: 1rem;
    }

    h1 {
        line-height: 1.8;
        font-size: 1.8rem;
    }

    h2 {
        line-height: 1.7;
        font-size: 1.5rem !important;
    }

    h3 {
        line-height: 1.6;
        font-size: 1.2rem;
    }

    p,
    li {
        line-height: 1.9;
    }

    .feature-title {
        line-height: 1.7;
    }

    .footer-column {
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }

    body {
        padding-bottom: 60px;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

.mobile-menu-toggle {
    display: none;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--primary);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 0.75rem;
    padding: 8px 0;
    transition: all 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-bottom-nav .center-btn {
    width: 60px;
    height: 60px;
    margin-top: -25px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    font-size: 0.75rem;
}

.mobile-bottom-nav .center-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .center-btn:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: var(--bg-color);
}

.accordion-button {
    background: var(--bg-color);
    color: var(--text-color);
    font-weight: 600;
    padding: 1.5rem;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-button::after {
    margin-right: auto;
    margin-left: unset;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1rem 1.5rem;
    color: var(--gray-dark);
}

.feature-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.subscribe-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-left: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h6 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark);
}

.price-ticker {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.ticker-container {
    display: flex;
    align-items: center;
    height: 60px;
}

.ticker-label {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 15px;
    height: 100%;
    min-width: 120px;
    font-weight: bold;
    color: white;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.ticker-label i {
    margin-left: 8px;
    font-size: 1.2rem;
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.ticker {
    display: flex;
    height: 100%;
}

.ticker.animated:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    height: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.asset-name {
    font-weight: bold;
    margin-left: 10px;
}

.asset-price {
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.change {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

.change i {
    margin-left: 5px;
}

.change.up {
    background-color: rgba(0, 255, 0, 0.2);
    color: #00ff7b;
}

.change.down {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ff5757;
}

.ticker-action {
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

@media (max-width: 768px) {
    .ticker-label {
        min-width: 90px;
        padding: 0 8px;
        font-size: 0.85rem;
    }

    .ticker-label i {
        margin-left: 4px;
        font-size: 1rem;
    }

    .ticker-item {
        padding: 0 15px;
    }

    .asset-name {
        font-size: 0.85rem;
    }

    .asset-price {
        font-size: 0.85rem;
    }

    .change {
        font-size: 0.75rem;
        padding: 2px 5px;
    }

    .ticker-action .btn {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

@keyframes priceFlash {
    0% {
        color: rgba(255, 255, 255, 0.9);
    }

    50% {
        color: #ffdd00;
    }

    100% {
        color: rgba(255, 255, 255, 0.9);
    }
}

.price-change {
    animation: priceFlash 1s ease;
}

.ticker-item {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .ticker-container {
        height: 50px;
    }

    .ticker-label {
        min-width: auto;
        padding: 0 6px;
        font-size: 0.75rem;
    }

    .ticker-label span {
        display: none;
    }

    .ticker-item {
        padding: 0 10px;
        height: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .asset-name {
        margin-left: 0;
        margin-bottom: 2px;
    }

    .asset-price {
        margin-left: 0;
        font-size: 0.75rem;
    }

    .change {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 0.65rem;
        padding: 1px 3px;
    }

    .ticker-action {
        padding: 0 10px;
    }
}