

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

:root {
    --primary: #00ff41;
    --secondary: #ff0080;
    --accent: #00ccff;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-surface: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --danger: #ff3333;
    --warning: #ffaa00;
    --success: #00ff41;
}

body {
    font-family: \'JetBrains Mono\', monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: \'\';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo::before {
    content: \'⬢\';
    font-size: 1.8rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 255, 65, 0.1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-right: 1px solid rgba(0, 255, 65, 0.3);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        text-align: left;
    }
}

/* Overlay для закрытия меню */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* Main Content */
main {
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.page {
    display: none;
    min-height: 70vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page.show {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 6rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

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

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

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    padding: 0.5rem;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Security Levels */
.security-level {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.level-low {
    background: rgba(255, 51, 51, 0.2);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.level-medium {
    background: rgba(255, 170, 0, 0.2);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.level-high {
    background: rgba(0, 255, 65, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

/* Danger Zones */
.danger-zone {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 170, 0, 0.1));
    border: 2px solid var(--danger);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.danger-zone h3 {
    color: var(--danger);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Chart placeholder */
.chart-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.chart-placeholder {
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 255, 65, 0.1), rgba(255, 0, 128, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    border: 2px dashed rgba(0, 255, 65, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    margin: 4rem 0;
}

.timeline::before {
    content: \'\';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Article styles */
.article-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-title {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.article-content {
    padding: 1.5rem;
    line-height: 1.8;
}

.article-content h4 {
    color: var(--accent);
    margin: 1.5rem 0 1rem;
}

.article-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Price list */
.price-list {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

.price-list-header {
    background: rgba(255, 51, 51, 0.1);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--danger);
}

.price-list-header h4 {
    color: var(--danger);
    margin: 0;
}

.price-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-item-name {
    color: var(--text-secondary);
}

.price-item-cost {
    color: var(--danger);
    font-weight: 600;
}

/* === UTILITY CLASSES === */

/* Page titles */
.page-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.page-title--danger {
    color: var(--danger);
}

.page-title--success {
    color: var(--success);
}

.page-title--accent {
    color: var(--accent);
}

/* Responsive images */
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.img-hero {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
    margin: 2rem 0;
}

.img-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
}

/* Marketplace logos */
.marketplace-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Text alignment */
.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

/* Spacing */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Colors */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-danger { color: var(--danger); }
.text-accent { color: var(--accent); }

/* Copyable link container */
.copyable-link-container {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyable-link-url {
    flex-grow: 1;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    word-break: break-all;
}

.copyable-link-btn {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copyable-link-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* === ACCESS PAGE STYLES === */

/* Navigation Tabs */
.access-navigation {
    margin-bottom: 2rem;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-tab:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    color: var(--accent);
}

.nav-tab.active {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.2);
}

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

/* Marketplace Tabs */
.marketplace-tabs,
.exchanger-tabs {
    margin-top: 2rem;
}

.tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.market-tab,
.exchanger-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.market-tab:hover,
.exchanger-tab:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.market-icon,
.exchanger-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.market-icon.purple,
.exchanger-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.market-icon.blue,
.exchanger-icon.blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.market-icon.green,
.exchanger-icon.green {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
}

.market-icon.red {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.market-info h4,
.exchanger-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.market-info span,
.exchanger-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.market-tab.active,
.exchanger-tab.active {
    background: var(--bg-card);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Market Content */
.market-content,
.exchanger-content {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.market-header,
.exchanger-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-header h3,
.exchanger-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.market-subtitle,
.exchanger-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.market-header.purple h3,
.exchanger-header.purple h3 {
    color: #8b5cf6;
}

.market-header.blue h3,
.exchanger-header.blue h3 {
    color: #2563eb;
}

.market-header.green h3,
.exchanger-header.green h3 {
    color: #16a34a;
}

.market-header.red h3 {
    color: #dc2626;
}

.market-description,
.exchanger-description {
    margin-bottom: 2rem;
}

.market-description p,
.exchanger-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.market-features-grid,
.exchanger-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.market-feature-card,
.exchanger-feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.market-feature-card h4,
.exchanger-feature-card h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.feature-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.market-mirrors,
.exchanger-mirrors {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.market-mirrors h4,
.exchanger-mirrors h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mirrors-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.mirror-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
}

.mirror-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-mirror-btn {
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-mirror-btn:hover {
    background: var(--accent);
}

/* === RESPONSIVE BREAKPOINTS === */

/* Extra Small devices (phones < 480px) */
@media (max-width: 479px) {
    .header-content {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
        height: 70px;
    }

    .logo {
        font-size: 1.2rem;
    }

    main {
        padding: 1rem 0.75rem;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

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

    .card h3 {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
        padding: 1.5rem;
        text-align: left;
    }

    .timeline-dot {
        left: 1rem;
    }

    /* Utility classes responsive */
    .page-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .img-icon {
        width: 50px;
        height: 50px;
    }

    .marketplace-logo {
        width: 60px;
        height: 60px;
    }

    .copyable-link-container {
        flex-direction: column;
        align-items: stretch;
    }

    .copyable-link-btn {
        width: 100%;
    }

    /* Access page responsive */
    .nav-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .tab-icon {
        font-size: 1.2rem;
    }

    .market-content,
    .exchanger-content {
        padding: 1rem;
    }

    .market-header h3,
    .exchanger-header h3 {
        font-size: 1.3rem;
    }
}

/* Small devices (landscape phones, 480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .header-content {
        padding: 0 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        height: 70px;
    }

    main {
        padding: 1.5rem;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3.5rem;
        margin-right: 0;
        padding: 1.5rem;
        text-align: left;
    }

    .timeline-dot {
        left: 1.5rem;
    }
}

/* Medium devices (tablets, 768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .header-content {
        padding: 0 2rem;
    }

    main {
        padding: 2rem;
    }

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

/* Large devices (desktops, 1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
    .header-content {
        max-width: 100%;
        padding: 0 2rem;
    }

    main {
        max-width: 100%;
        padding: 2rem;
    }
}

/* Tablet and mobile shared styles */
@media (max-width: 768px) {
    /* Utility classes */
    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .img-responsive,
    .img-hero {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 255, 65, 0.15);
        margin: 1.5rem 0;
    }

    .img-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .marketplace-logo {
        width: 80px;
        height: 80px;
    }

    /* Access page */
    .nav-tabs,
    .tab-container {
        flex-direction: column;
    }

    .market-tab,
    .exchanger-tab {
        min-width: auto;
    }

    .market-features-grid,
    .exchanger-features-grid {
        grid-template-columns: 1fr;
    }

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

    .market-content,
    .exchanger-content {
        padding: 1.5rem;
    }

    .market-header h3,
    .exchanger-header h3 {
        font-size: 1.5rem;
    }
}

