/*
Theme Name: mb16 Theme
Theme URI: https://mtminings.com
Author: BlockChainMine Team
Author URI: https://mtminings.com
Description: A modern WordPress theme for blockchain mining websites. Features responsive design, SEO optimization, and mobile-friendly navigation.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mb16
Tags: blockchain, mining, cryptocurrency, responsive, seo, mobile
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #1a1d2e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: #1a1d2e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #8b5cf6;
    font-size: 1.4rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current-menu-parent a,
.nav-menu .current-post-ancestor a,
.nav-menu .current-post-parent a {
    color: #ffffff;
}

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

.nav-buttons a {
    padding: 8px 16px;
}

.btn-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #8b5cf6;
}

.btn-signup {
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.btn-signup:hover {
    background-color: #7c3aed;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(180deg, #1a1d2e 0%, #151828 100%);
}

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

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1rem;
    color: #a0a0b0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b5cf6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    width: fit-content;
}

.btn-primary:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #2a2d3e;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.store-btn:hover {
    background-color: #3a3d4e;
}

.store-icon {
    font-size: 1.5rem;
}

.store-btn small {
    font-size: 0.6rem;
    color: #a0a0b0;
    display: block;
}

.store-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 400px;
}

.phone-screen {
    width: 200px;
    height: 380px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1e2030 100%);
    border-radius: 30px;
    border: 3px solid #3a3d4e;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.screen-content {
    padding: 40px 20px 20px;
    text-align: center;
}

.btc-icon-large {
    font-size: 4rem;
    color: #f7931a;
    margin-bottom: 20px;
}

.mining-stats {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span:first-child {
    color: #a0a0b0;
}

.stat-row span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.btc-coin {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f7931a 0%, #e8850f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.3);
}

.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner {
    color: #606070;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Sections Common */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text p {
    color: #a0a0b0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-desc {
    font-size: 0.9rem;
    color: #707080;
}

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

.feature-list li {
    color: #a0a0b0;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.section-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Cloud Mining Section */
.cloud-mining {
    background-color: #151828;
}

.mining-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.illustration-box {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.box-btc {
    font-size: 4rem;
    color: #ffffff;
}

.illustration-person {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #4a4d5e 0%, #3a3d4e 100%);
    border-radius: 40px 40px 0 0;
    position: absolute;
    left: 30px;
    bottom: 0;
}

/* Track Progress Section */
.progress-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.progress-images img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.track-progress {
    background-color: #1a1d2e;
}

.phone-progress {
    position: relative;
    width: 280px;
    height: 400px;
}

.phone-screen-progress {
    width: 220px;
    height: 400px;
    background: linear-gradient(135deg, #2a2d3e 0%, #1e2030 100%);
    border-radius: 30px;
    border: 3px solid #3a3d4e;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.progress-chart {
    height: 200px;
    position: relative;
    margin-bottom: 30px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 150px;
    padding: 0 10px;
}

.bar {
    width: 20px;
    background: linear-gradient(180deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s ease;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-btc {
    text-align: center;
    font-size: 3rem;
    color: #f7931a;
}

/* News Section */
.news {
    background-color: #1a1d2e;
}

.news h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.news-card {
    background-color: #1e2030;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.news-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-content p {
    color: #a0a0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Trusted Section */
.trusted {
    background-color: #151828;
}

.trusted-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trusted-header p {
    color: #8b5cf6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trusted-desc {
    color: #a0a0b0;
    max-width: 600px;
    margin: 0 auto;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trusted-card {
    background-color: #1e2030;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trusted-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.trusted-card p {
    color: #a0a0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background-color: #1a1d2e;
    text-align: center;
    padding: 60px 20px;
}

.quote {
    max-width: 600px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 4rem;
    color: #8b5cf6;
    display: block;
    margin-bottom: -20px;
}

.quote p {
    color: #a0a0b0;
    font-size: 1.2rem;
    font-style: italic;
}

/* FAQ Section */
.faq {
    background-color: #151828;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: #1e2030;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8b5cf6;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0b0;
    line-height: 1.7;
}

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

/* Download Section */
.download {
    background-color: #1a1d2e;
    text-align: center;
}

.download-content h2 {
    margin-bottom: 1rem;
}

.download-content p {
    color: #a0a0b0;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Page Header & Breadcrumb */
.page-header {
    background-color: #151828;
    padding: 120px 20px 60px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    color: #707080;
    font-size: 0.9rem;
}

.breadcrumb li::before {
    content: '/';
    margin-right: 8px;
    color: #505060;
}

.breadcrumb li:first-child::before {
    content: '';
    margin-right: 0;
}

.breadcrumb a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #a78bfa;
}

.breadcrumb [aria-current="page"] {
    color: #a0a0b0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0;
}

/* News List Page */
.news-list {
    background-color: #1a1d2e;
    padding: 60px 20px;
}

.news-list .news-card time {
    display: block;
    color: #707080;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #a0a0b0;
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    background-color: #1e2030;
    color: #a0a0b0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination a:hover {
    background-color: #8b5cf6;
    color: #ffffff;
}

.pagination .active span {
    background-color: #8b5cf6;
    color: #ffffff;
}

.pagination .disabled span {
    background-color: #151828;
    color: #505060;
    cursor: not-allowed;
}

/* WordPress Pagination */
.pagination .page-numbers {
    display: inline-block;
    /* padding: 10px 16px; */
    background-color: #1e2030;
    color: #a0a0b0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    margin: 0 4px;
}

.pagination .page-numbers:hover {
    background-color: #8b5cf6;
    color: #ffffff;
}

.pagination .page-numbers.current {
    background-color: #8b5cf6;
    color: #ffffff;
}

/* WordPress Tags */
.article-tags a.tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px 5px 0;
}

.article-tags a.tag:hover {
    background-color: #8b5cf6;
    color: #ffffff;
}

/* Article Content Page */
.article-content {
    background-color: #1a1d2e;
    padding: 60px 20px;
}

.article-main {
    display: flex;
    gap: 40px;
}

.single-article {
    flex: 1;
    min-width: 0;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header .news-category {
    display: inline-block;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-meta {
    color: #707080;
    font-size: 0.9rem;
}

.article-meta .separator {
    margin: 0 8px;
}

.article-featured-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.article-body {
    color: #a0a0b0;
    line-height: 1.8;
    font-size: 1rem;
}

.article-body h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

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

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.8rem;
}

.article-body li strong {
    color: #ffffff;
}

.article-body blockquote {
    border-left: 4px solid #8b5cf6;
    padding: 1.5rem;
    margin: 2rem 0;
    background-color: rgba(139, 92, 246, 0.1);
    border-radius: 0 12px 12px 0;
}

.article-body blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: #c0c0d0;
}

/* Article Tags */
.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-label {
    color: #707080;
    font-weight: 600;
    margin-right: 5px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #8b5cf6;
    color: #ffffff;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.article-navigation a {
    display: block;
    padding: 1.5rem;
    background-color: #1e2030;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-navigation a:hover {
    background-color: #2a2d3e;
    transform: translateY(-2px);
}

.nav-label {
    display: block;
    color: #8b5cf6;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.article-navigation h4 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Article Sidebar */
.article-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: #1e2030;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.sidebar-widget li {
    margin-bottom: 1rem;
}

.sidebar-widget li:last-child {
    margin-bottom: 0;
}

.sidebar-widget li a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sidebar-widget li a:hover {
    opacity: 0.8;
}

.sidebar-widget li img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-widget li h4 {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.sidebar-widget li time {
    color: #707080;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background-color: #12141f;
    padding: 60px 20px 30px;
}

.footer-logo {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    color: #707080;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #8b5cf6;
}

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

.footer-bottom p {
    color: #505060;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .article-main {
        flex-direction: column;
    }

    .article-sidebar {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1d2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .nav-menu .menu-item-type-custom,
    .nav-menu .menu-item-type-post_type,
    .nav-menu .menu-item-type-taxonomy {
        margin: 0.8rem 0;
    }

    .nav-buttons {
        flex-direction: column;
        margin-top: 1rem;
    }

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        align-items: center;
    }

    .btn-primary {
        width: 100%;
        max-width: 250px;
    }

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

    .section-content,
    .section-content.reverse {
        flex-direction: column;
    }

    section h2 {
        font-size: 1.6rem;
    }

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

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

    .partners {
        gap: 1.5rem;
    }

    .partner {
        font-size: 0.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

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

    .sidebar-widget li a {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sidebar-widget li img {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .phone-mockup,
    .phone-progress {
        width: 220px;
    }

    .phone-screen,
    .phone-screen-progress {
        width: 180px;
    }
}