
body {
    font-family: 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #00d97b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ff96;
}

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

.header-top {
    background-color: #0d0d0d;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00d97b;
}

.logo span {
    color: #fff;
    font-weight: normal;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #e0e0e0;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a:hover {
    color: #00d97b;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #00d97b;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.footer {
    background-color: #0d0d0d;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    margin-top: 60px;
}

.footer p {
    margin: 5px 0;
    color: #999;
    font-size: 14px;
}

.footer .social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #e0e0e0;
    font-size: 20px;
}

.footer .social-links a:hover {
    color: #00d97b;
}

.section-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background-color: #00d97b;
    border-radius: 2px;
}

.card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 123, 0.1);
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.card-title a {
    color: #fff;
}

.card-title a:hover {
    color: #00d97b;
}

.card-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.card-meta span {
    margin-right: 15px;
}

.card-description {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #00d97b;
    font-weight: bold;
}

.hero-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(to right, #1a1a1a, #2a2a2a);
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 2;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5),
                0 6px 6px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.hero-text h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    background-color: #00d97b;
    color: #0d0d0d;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #00ff96;
    color: #0d0d0d;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sidebar {
    grid-column: span 1;
}

.main-content {
    grid-column: span 2;
}

.news-list-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.news-article-item {
    display: flex;
    margin-bottom: 30px;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 123, 0.1);
}

.news-article-item .thumb {
    width: 250px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-article-item .content {
    padding: 20px;
}

.news-article-item .content h3 {
    margin-top: 0;
    font-size: 22px;
}

.news-article-item .content h3 a {
    color: #fff;
}

.news-article-item .content h3 a:hover {
    color: #00d97b;
}

.lives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 5px solid #00d97b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.live-time {
    font-size: 18px;
    font-weight: bold;
    color: #00d97b;
    flex-shrink: 0;
    width: 90px;
    text-align: right;
}

.live-content {
    flex-grow: 1;
}

.live-content h3 {
    margin-top: 0;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.live-content h3 a {
    color: #fff;
}

.live-content h3 a:hover {
    color: #00d97b;
}

.live-content p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.live-source {
    font-size: 13px;
    color: #888;
}

.article-container {
    padding: 40px 0;
}

.article-header h1 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 20px;
}

.article-meta span {
    margin-right: 20px;
}

.article-body {
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.8;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body h2, .article-body h3 {
    color: #00d97b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pagination {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pagination ul {
    list-style: none;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    margin: 0 5px;
}

.pagination ul li a,
.pagination ul li span {
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    transition: background-color 0.3s ease;
}

.pagination ul li a:hover {
    background-color: #00d97b;
    color: #0d0d0d;
}

.pagination ul li.active span {
    background-color: #00d97b;
    color: #0d0d0d;
    font-weight: bold;
}

.sidebar .sidebar-block {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar .sidebar-block h4 {
    color: #00d97b;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
}

.sidebar .sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .sidebar-block ul li {
    margin-bottom: 10px;
}

.sidebar .sidebar-block ul li a {
    color: #e0e0e0;
    display: block;
    padding: 5px 0;
}

.sidebar .sidebar-block ul li a:hover {
    color: #00d97b;
}

img {
    max-width: 100%;
    height: auto;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
    background-color: #0d0d0d;
    color: #e0e0e0;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #00d97b;
    color: #0d0d0d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #00ff96;
}

.market-data-widget {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.market-data-widget h4 {
    color: #00d97b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.market-data-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 15px;
}

.market-data-item:last-child {
    border-bottom: none;
}

.market-data-item .name {
    color: #fff;
    font-weight: bold;
}

.market-data-item .value {
    color: #00d97b;
}

.market-data-item .value.negative {
    color: #e74c3c;
}

.hero-meta {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    color: #00d97b;
}

.news-list-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-list-card h4 {
    color: #00d97b;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
}

.news-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.news-list-card ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #2a2a2a;
}

.news-list-card ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-list-card .item-title a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}

.news-list-card .item-title a:hover {
    color: #00ff96;
}

.news-list-card .item-meta {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.news-list-card .item-meta span {
    margin-right: 10px;
}

.news-list-card .item-description {
    font-size: 14px;
    color: #b0b0b0;
    margin-top: 10px;
    line-height: 1.5;
}

.news-list-card .view-more-link {
    display: block;
    text-align: right;
    margin-top: 25px;
    padding-right: 5px;
}


.analyst-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analyst-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 123, 0.1);
}

.analyst-card .analyst-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid #00d97b;
}

.analyst-card h5 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
}

.analyst-card h5 a {
    color: #fff;
}

.analyst-card h5 a:hover {
    color: #00d97b;
}

.analyst-card .title {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
}

.analyst-card .viewpoint {
    font-size: 15px;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.analyst-card .read-more {
    margin-top: auto;
}

.market-insights {
    margin-bottom: 60px;
}

.latest-news {
    margin-top: 60px;
}

.news-article-item .content {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        max-width: 100%;
    }
    .grid-2-cols, .news-list-grid {
        grid-template-columns: 1fr;
    }
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .main-content, .sidebar {
        grid-column: span 1;
    }
    .news-article-item {
        flex-direction: column;
    }
    .news-article-item .thumb {
        width: 100%;
        height: 220px;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-nav ul li {
        margin: 0 10px 10px 10px;
    }

    .market-insights {
        margin-bottom: 40px;
    }
    .latest-news {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .logo {
        font-size: 24px;
    }
    .main-nav ul li {
        margin-left: 15px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
    .card-title {
        font-size: 18px;
    }
    .live-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .live-time {
        width: auto;
        margin-bottom: 10px;
    }
    .article-header h1 {
        font-size: 28px;
    }
}