/*
Theme Name: mb13 Theme
Theme URI: https://your-site.com/
Author: Your Name
Author URI: https://your-site.com/
Description: Bybit Mining Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bybit-mining
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s ease;
}

.btn--primary {
    background-color: #e66a00;
    color: #fff;
}

.btn--primary:hover {
    background-color: #cc5e00;
}

.btn--secondary {
    background-color: #e66a00;
    color: #fff;
}

.btn--secondary:hover {
    background-color: #cc5e00;
}

.btn--light {
    background-color: #777;
    color: #fff;
}

.btn--light:hover {
    background-color: #555;
}

.btn--small {
    background-color: #e66a00;
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
}

.btn--dark {
    background-color: #222;
    color: #fff;
}

.btn--dark:hover {
    background-color: #000;
}

/* Header */
.header {
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__inner a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.logo img {
    height: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav__list a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.nav__list a:hover{
    text-decoration: underline;
}

.btn-login {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff8c00;
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu__link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background-color: #ff8c00;
    color: #fff;
    text-align: center;
    padding: 40px 0 80px;
    position: relative;
}

.hero__title {
    font-size: 26px;
    margin-bottom: 15px;
}

.hero__text {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__download-icons {
    margin-top: 20px;
    font-size: 22px;
}

.hero__download-icons i {
    margin: 0 10px;
}

.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    clip-path: ellipse(100% 60% at 50% 100%);
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features__title {
    text-align: center;
    font-size: 28px;
    color: #ff8c00;
    margin-bottom: 50px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 36px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Profits Section */
.profits {
    background-color: #f9f2f0;
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.profits__description {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.profits__cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex: 1;
}

.card i {
    color: #ff8c00;
    font-size: 22px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.profits__farm {
    display: flex;
    gap: 30px;
    align-items: center;
}

.farm__image img {
    max-width: 400px;
}

.farm__text h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 18px;
}

.farm__text p {
    font-size: 15px;
    margin-bottom: 10px;
}

.farm__text h4 {
    font-size: 16px;
    margin: 15px 0 5px;
}

/* Built Section */
.built {
    padding: 60px 0;
    text-align: center;
}

.built .section-title {
    margin-bottom: 40px;
}

.built__images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.built__images img {
    max-width: 100%;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Rewards Table Section */
.rewards-table {
    padding: 40px 0;
}

.rewards-table table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.rewards-table th {
    background-color: #ff8c00;
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}

.rewards-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 15px;
}

.rewards-table tr:last-child td {
    border-bottom: none;
}

.rewards-table tr:hover td {
    background-color: #f9f2f0;
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.faq__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq__intro p {
    font-size: 13px;
    margin-bottom: 17px;
    text-align: center;
}

.faq__more {
    font-size: 15px;
    color: #ff8c00;
    text-decoration: none;
}

.faq__guide {
    margin-top: 30px;
    font-size: 15px;
}

.faq__guide a {
    color: #ff8c00;
    text-decoration: none;
}

.badge {
    margin-top: 20px;
}

.badge img {
    width: 100px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    color: #ff8c00;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    color: #555;
}

.accordion-content.active {
    max-height: 200px;
    padding-bottom: 15px;
}

/* News Section */
.news {
    padding: 60px 0;
    background-color: #fff;
}

.news .section-title {
    margin-bottom: 40px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news__item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.news__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news__content {
    padding: 25px;
}

.news__category {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.news__title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news__title a:hover {
    color: #ff8c00;
}

.news__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer__columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer__col h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 8px;
}

.footer__col a {
    color: #aaa;
    text-decoration: none;
}

.footer__col a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
}

.footer__bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 13px;
}

.footer__links {
    margin-top: 10px;
}

.footer__links a {
    color: #777;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav, .btn-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .profits__cards {
        flex-direction: column;
    }

    .profits__farm {
        flex-direction: column;
    }

    .farm__image img {
        max-width: 100%;
    }

    .faq__wrapper {
        grid-template-columns: 1fr;
    }

    .footer__columns {
        flex-direction: column;
        gap: 30px;
    }

    .rewards-table table {
        font-size: 14px;
    }

    .rewards-table th,
    .rewards-table td {
        padding: 12px 15px;
    }

    .news__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Breadcrumb Navigation
   ============================================ */
.breadcrumb {
    background-color: #f9f9f9;
    padding: 20px 0;
}

.breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff8c00;
}

/* ============================================
   News List Page
   ============================================ */
.news-list {
    padding: 60px 0;
    background-color: #fff;
}

.page-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.news-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-list__item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.news-list__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-list__content {
    padding: 25px;
}

.news-list__category {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.news-list__title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-list__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-list__title a:hover {
    color: #ff8c00;
}

.news-list__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-list__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.news-list__readmore:hover {
    gap: 12px;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination__btn:hover:not(.disabled):not(.pagination__btn--active) {
    border-color: #ff8c00;
    color: #ff8c00;
}

.pagination__btn--active {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
}

.pagination__btn--prev,
.pagination__btn--next {
    padding: 0 12px;
}

.pagination__btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination__dots {
    color: #999;
    padding: 0 5px;
}

/* ============================================
   Content Page
   ============================================ */
.content {
    padding: 60px 0;
    background-color: #fff;
}

.content__wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Article */
.article {
    background-color: #fff;
}

.article__header {
    margin-bottom: 30px;
}

.article__category {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.article__title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article__meta {
    display: flex;
    gap: 25px;
    color: #999;
    font-size: 14px;
}

.article__date,
.article__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article__image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.article__image img {
    width: 100%;
    height: auto;
}

.article__content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.article__content p {
    margin-bottom: 20px;
}

.article__content h2 {
    font-size: 24px;
    color: #333;
    margin: 35px 0 20px;
}

.article__content h3 {
    font-size: 20px;
    color: #333;
    margin: 30px 0 15px;
}

/* Tags */
.article__tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.tags__label {
    font-weight: 600;
    color: #333;
}

.tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #ff8c00;
    color: #fff;
}

/* Article Navigation */
.article__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article__nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article__nav-link:hover {
    background-color: #ff8c00;
}

.article__nav-link:hover .article__nav-label,
.article__nav-link:hover .article__nav-title {
    color: #fff;
}

.article__nav-link--prev {
    text-align: left;
}

.article__nav-link--next {
    text-align: right;
    flex-direction: row-reverse;
}

.article__nav-text {
    flex: 1;
}

.article__nav-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article__nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.article__nav-link i {
    font-size: 16px;
    color: #ff8c00;
    transition: color 0.3s ease;
}

.article__nav-link:hover i {
    color: #fff;
}

/* Sidebar */
.sidebar__widget {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar__title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff8c00;
}

.sidebar__latest-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar__latest-item {
    display: block;
}

.sidebar__latest-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sidebar__latest-link:hover {
    opacity: 0.8;
}

.sidebar__latest-image {
    flex-shrink: 0;
}

.sidebar__latest-image img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
}

.sidebar__latest-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar__latest-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sidebar__latest-link:hover .sidebar__latest-title {
    color: #ff8c00;
}

.sidebar__latest-date {
    font-size: 12px;
    color: #999;
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.related-articles__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-articles__item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-articles__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.related-articles__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-articles__content {
    padding: 20px;
}

.related-articles__category {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    margin-bottom: 12px;
}

.related-articles__title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-articles__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-articles__title a:hover {
    color: #ff8c00;
}

.related-articles__excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   Responsive Styles for List & Content Pages
   ============================================ */
@media (max-width: 992px) {
    .news-list__grid,
    .related-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content__wrapper {
        grid-template-columns: 1fr;
    }

    .content__sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 26px;
    }

    .news-list__grid,
    .related-articles__grid {
        grid-template-columns: 1fr;
    }

    .article__title {
        font-size: 24px;
    }

    .article__nav {
        grid-template-columns: 1fr;
    }

    .article__nav-link--next {
        flex-direction: row;
        text-align: left;
    }

    .pagination {
        flex-wrap: wrap;
    }
}