/*
Theme Name: MB10 Theme
Theme URI: https://www.mtminings.com
Author: MB11 Team
Description: A modern WordPress theme for blockchain and AI education websites. Features responsive design, SEO optimization, and mobile-friendly navigation.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: mb10
Tags: blog, education, responsive-layout, custom-menu, featured-images, threaded-comments, translation-ready
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F5A623;
    --primary-green: #4CAF50;
    --dark-bg: #1A1A2E;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --hero-gradient-start: #FFF8E7;
    --hero-gradient-end: #E8F4FD;
    --section-light-blue: #E8F4FD;
    --section-gray: #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

ul {
    list-style: none;
}

.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-register {
    background: var(--primary-green);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #45a049;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-text h1 span {
    display: block;
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 500;
}

.btn-explore {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-explore:hover {
    background: #e09520;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    background: #4caf50;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.integration-section {
    padding: 60px 0;
    background: var(--white);
}

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

.integration-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 100%;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #666;
}

.integration-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-top: 10px;
}

.mining-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--section-light-blue) 0%, var(--white) 100%);
}

.mining-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.mining-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mining-card img {
    width: 100%;
    height: auto;
    display: block;
    background: #4caf50;
}

.mining-card-content {
    padding: 20px;
}

.mining-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mining-card-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.mining-cards-small {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ai-section {
    padding: 60px 0;
    background: var(--white);
}

.rebate-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.rebate-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.rebate-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.rebate-table thead {
    background: linear-gradient(135deg, var(--primary-orange), #F7B84E);
}

.rebate-table th {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.5px;
}

.rebate-table td {
    padding: 16px 24px;
    font-size: 15px;
    color: var(--text-dark);
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.rebate-table tbody tr:last-child td {
    border-bottom: none;
}

.rebate-table tbody tr:hover {
    background-color: #FFF8E7;
}

.ai-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.ai-text {
    flex: 1;
}

.ai-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.ai-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-read-more {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #45a049;
    opacity: 1;
    transform: translateY(-2px);
}

.ai-image {
    flex: 1;
    text-align: center;
}

.ai-image img {
    max-width: 100%;
    background: #4caf50;
}

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

.stat-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.app-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--section-gray) 0%, var(--white) 100%);
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.app-features {
    margin-bottom: 30px;
}

.app-features li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.app-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
}

.app-features li strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.app-features li p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-app:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.btn-apple {
    background: #000000;
}

.btn-google {
    background: var(--primary-green);
}

.btn-huawei {
    background: #C7112B;
}

.btn-app img {
    width: 20px;
    height: 20px;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    max-height: 500px;
}

.faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #FFF8E7;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.news-section {
    padding: 60px 0;
    background: var(--white);
}

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

.news-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    max-width: 100%;
    max-height: 100%;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-news {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-news:hover {
    background: #45a049;
    opacity: 1;
}

.footer {
    background: var(--dark-bg);
    padding: 50px 0 20px;
    color: var(--white);
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.footer-qr {
    margin-bottom: 20px;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    background: var(--white);
    padding: 5px;
    border-radius: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    opacity: 1;
}

.footer-social a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

.page-banner {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 30px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.breadcrumb-separator {
    color: #ccc;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.list-section {
    padding: 40px 0 60px;
    background: var(--white);
}

.list-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.list-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.list-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.list-item-link {
    display: flex;
    gap: 25px;
    padding: 20px;
}

.list-item-link:hover {
    opacity: 1;
}

.list-item-thumb {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.list-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.list-item:hover .list-item-thumb img {
    transform: scale(1.05);
}

.list-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.list-item-category {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.list-item-date {
    color: var(--text-light);
    font-size: 13px;
}

.list-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.list-item:hover .list-item-title {
    color: var(--primary-orange);
}

.list-item-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    opacity: 1;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    opacity: 1;
}

.pagination-dots {
    color: var(--text-light);
    padding: 0 5px;
}

.list-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-orange);
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-news-item:hover {
    background: var(--white);
    opacity: 1;
}

.sidebar-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-news-content {
    flex: 1;
}

.sidebar-news-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-item:hover .sidebar-news-content h4 {
    color: var(--primary-orange);
}

.sidebar-news-date {
    font-size: 12px;
    color: var(--text-light);
}

.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.sidebar-categories li a:hover {
    background: var(--primary-orange);
    color: var(--white);
    opacity: 1;
}

.category-count {
    font-size: 12px;
    color: var(--text-light);
}

.sidebar-categories li a:hover .category-count {
    color: var(--white);
}

.content-section {
    padding: 40px 0 60px;
    background: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.content-main {
    background: var(--white);
}

.content-header {
    margin-bottom: 25px;
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.content-category {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.content-date,
.content-author {
    color: var(--text-light);
    font-size: 13px;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.content-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.content-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-body p {
    margin-bottom: 20px;
}

.content-body h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.content-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-body ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.content-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.content-body ul li strong {
    color: var(--text-dark);
}

.content-body blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-orange);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.content-body blockquote p {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.content-body blockquote cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.content-body a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.content-body a:hover {
    opacity: 1;
    color: #e09520;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-table thead {
    background: var(--primary-orange);
    color: var(--white);
}

.content-table th,
.content-table td {
    padding: 12px 20px;
    text-align: left;
}

.content-table tbody tr {
    border-bottom: 1px solid #eee;
}

.content-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.content-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.content-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.content-tag:hover {
    background: var(--primary-orange);
    color: var(--white);
    opacity: 1;
}

.content-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.content-nav-prev,
.content-nav-next {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.content-nav-prev:hover,
.content-nav-next:hover {
    background: var(--primary-orange);
    opacity: 1;
}

.content-nav-prev:hover .nav-label,
.content-nav-next:hover .nav-label,
.content-nav-prev:hover .nav-title {
    color: var(--white);
}

.nav-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-tags a:hover {
    background: var(--primary-orange);
    color: var(--white);
    opacity: 1;
}

.sidebar-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.sidebar-tag:hover {
    background: var(--primary-orange);
    color: var(--white);
    opacity: 1;
}

.latest-news-section {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.latest-news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.latest-news-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.latest-news-link {
    display: block;
}

.latest-news-link:hover {
    opacity: 1;
}

.latest-news-thumb {
    height: 200px;
    overflow: hidden;
}

.latest-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-news-card:hover .latest-news-thumb img {
    transform: scale(1.05);
}

.latest-news-content {
    padding: 20px;
}

.latest-news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.latest-news-category {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.latest-news-date {
    color: var(--text-light);
    font-size: 13px;
}

.latest-news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.latest-news-card:hover .latest-news-title {
    color: var(--primary-orange);
}

.latest-news-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mining-grid {
        grid-template-columns: 1fr;
    }

    .ai-content {
        flex-direction: column;
        text-align: center;
    }

    .ai-stats {
        grid-template-columns: 1fr;
    }

    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-features li {
        text-align: left;
    }

    .app-buttons {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-layout,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .list-sidebar,
    .content-sidebar {
        order: -1;
    }

    .list-item-link {
        flex-direction: column;
    }

    .list-item-thumb {
        width: 100%;
        height: 200px;
    }

    .latest-news-grid {
        grid-template-columns: 1fr;
    }

    .content-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .ai-text h2 {
        font-size: 28px;
    }

    .app-text h2 {
        font-size: 24px;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 24px;
    }

    .content-title {
        font-size: 22px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-prev,
    .pagination-next {
        padding: 8px 15px;
        font-size: 13px;
    }

    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h1 span {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .ai-stats {
        grid-template-columns: 1fr;
    }

    .rebate-table-wrapper {
        overflow-x: auto;
    }

    .rebate-table {
        min-width: 500px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .content-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }

    .btn-app {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .btn-explore {
        width: 100%;
        text-align: center;
    }

    .nav-buttons {
        display: none;
    }

    .integration-section,
    .mining-section,
    .ai-section,
    .faq-section,
    .news-section,
    .rebate-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    .list-item-link {
        padding: 15px;
    }

    .content-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* WordPress Core Styles */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: var(--light-bg);
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
    border-radius: 8px;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 0 4px 5px;
    color: var(--text-light);
}

.gallery {
    margin-bottom: 1.5em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin: 0;
}

.gallery-columns-2 .gallery-item {
    max-width: calc(50% - 5px);
}

.gallery-columns-3 .gallery-item {
    max-width: calc(33.33% - 7px);
}

.gallery-columns-4 .gallery-item {
    max-width: calc(25% - 8px);
}

.gallery-columns-5 .gallery-item {
    max-width: calc(20% - 8px);
}

.gallery-columns-6 .gallery-item {
    max-width: calc(16.66% - 9px);
}

.gallery-columns-7 .gallery-item {
    max-width: calc(14.28% - 9px);
}

.gallery-columns-8 .gallery-item {
    max-width: calc(12.5% - 9px);
}

.gallery-columns-9 .gallery-item {
    max-width: calc(11.11% - 9px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gallery-caption {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

/* WordPress Pagination Styles */
.wp-block-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    opacity: 1;
}

.page-numbers.dots {
    border: none;
    background: none;
}

/* WordPress Admin Bar Compatibility */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* WordPress Embed Styles */
.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* WordPress Search Form */
.search-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.search-form label {
    flex: 1;
    margin: 0;
}

.search-form .search-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.search-form .search-submit {
    padding: 10px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form .search-submit:hover {
    background: #e09520;
}

/* WordPress Comment Styles */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.comment-list .comment {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 15px;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.comment-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.comment-reply-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
}

.comment-reply-link:hover {
    color: #e09520;
    opacity: 1;
}

.comment-respond {
    margin-top: 30px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.comment-form input[type="submit"] {
    padding: 12px 30px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: #e09520;
    opacity: 1;
}

/* WordPress Widget Styles */
.widget {
    margin-bottom: 30px;
}

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

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

/* WordPress Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress Block Styles */
.wp-block-image {
    margin: 20px 0;
}

.wp-block-image img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.wp-block-columns {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.wp-block-column {
    flex: 1;
}

@media (max-width: 768px) {
    .wp-block-columns {
        flex-direction: column;
    }
}

.wp-block-button .wp-block-button__link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    background: #e09520;
    opacity: 1;
}

.wp-block-separator {
    border: none;
    border-top: 2px solid #eee;
    margin: 30px 0;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-orange);
    padding: 20px 25px;
    margin: 25px 0;
    background: var(--light-bg);
    border-radius: 0 8px 8px 0;
}

.wp-block-quote p {
    font-style: italic;
    margin-bottom: 10px;
}

.wp-block-quote cite {
    font-size: 14px;
    color: var(--text-light);
}

.wp-block-code code {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    overflow-x: auto;
}

.wp-block-preformatted {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

/* WordPress Navigation Menu Styles */
.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    z-index: 100;
}

.nav-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    white-space: nowrap;
}

.nav-menu .sub-menu li a:hover::after {
    width: 0;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

/* WordPress Breadcrumb Yoast Compatibility */
.breadcrumb.yoast-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb.yoast-breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumb.yoast-breadcrumb a:hover {
    color: var(--primary-orange);
    opacity: 1;
}

.breadcrumb.yoast-breadcrumb .breadcrumb_last {
    color: var(--text-dark);
    font-weight: 500;
}
