/**
 * Theme Name: BITEXIA Crypto Exchange
 * Author: BITEXIA Team
 * Version: 3.1.0
 */

:root {
    --primary: #0B6CFF;
    --primary-dark: #0052CC;
    --secondary: #00D4AA;
    --success: #00C896;
    --danger: #FF3B5C;
    --warning: #FFB800;
    --gradient-primary: linear-gradient(135deg, #0B6CFF 0%, #00D4AA 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E1A 0%, #111827 100%);
    --gradient-light: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    --font-primary: 'IBM Plex Sans', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
}

[data-theme="dark"] {
    --bg-primary: #0A0E1A;
    --bg-surface: #111827;
    --bg-card: #1A2035;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
}

[data-theme="light"] {
    --bg-primary: #FAFBFC;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: relative;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
}

.header-wrapper {
    position: relative;
}

[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.95);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Main Navigation */
.main-nav {
    position: relative;
}

.main-nav .nav-list,
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

/* Single Post Styles */
.single-post-section {
    padding: 0.25rem 0 3rem;
    background: var(--bg-primary);
}

.post-header {
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0;
}

.post-meta {
    margin-bottom: 1rem;
}

.post-date {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-right: 0.5rem;
    /* Reduced margin */
}

.post-category {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--secondary);
}

.post-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.post-author {
    color: var(--text-secondary);
    font-size: 1rem;
}

.post-featured-image {
    margin-bottom: 2rem;
    /* 3rem → 2rem */
    border-radius: 16px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem;
    /* 3rem → 1.5rem */
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.page-links {
    margin-top: 1.5rem;
    /* 2rem → 1.5rem */
    text-align: center;
}

.page-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    /* 0.5rem 1rem → 0.375rem 0.75rem */
    background: var(--primary);
    color: white;
    border-radius: 8px;
    margin: 0 0.25rem;
    text-decoration: none;
}

.post-tags {
    margin-top: 1.5rem;
    /* 2rem → 1.5rem */
    padding: 1rem;
    /* 1.5rem → 1rem */
    background: rgba(11, 108, 255, 0.03);
    border-radius: 16px;
}

.post-tags h4 {
    margin-bottom: 0.75rem;
    /* 1rem → 0.75rem */
    color: var(--text-primary);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
}

.post-navigation {
    margin-top: 2rem;
    /* 3rem → 2rem */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* 2rem → 1.5rem */
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-link {
    display: block;
    padding: 1rem;
    /* 1.5rem → 1rem */
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
}

.nav-link:hover {
    border-color: var(--primary);
}

.nav-direction {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.nav-link h4 {
    margin-top: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.comments-section {
    margin-top: 2rem;
    /* 4rem → 2rem */
    padding: 1.5rem;
    /* 2rem → 1.5rem */
    background: var(--bg-surface);
    border-radius: 16px;
}

/* Page Styles */
.page-header-section {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 108, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.page-badge {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.page-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    /* 2rem → 1.5rem */
}

.page-content-section {
    padding: 0.25rem 0 3rem;
    background: var(--bg-surface);
}

.page-featured-image {
    margin-bottom: 2rem;
    /* 3rem → 2rem */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-main-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.7rem;
    /* 3rem → 1.5rem */
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.page-comments {
    margin-top: 2rem;
    /* 4rem → 2rem */
    padding: 1.5rem;
    /* 2rem → 1.5rem */
    background: var(--bg-primary);
    border-radius: 16px;
}

.page-cta-section {
    padding: 3rem 0;
    /* 4rem 0 → 3rem 0 */
    background: var(--gradient-primary);
    text-align: center;
}

.page-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-cta-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .single-post-section,
    .page-header-section,
    .page-content-section,
    .page-cta-section {
        padding: 0.25rem 0 2rem;
    }

    .post-content,
    .page-main-content {
        padding: 0.4rem;
        /* 1.5rem → 1rem */
    }

    .post-title,
    .page-title {
        font-size: 2rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* 1.5rem → 1rem */
    }

    .post-header,
    .post-featured-image {
        margin-bottom: 1.5rem;
        /* 2rem → 1.5rem */
    }
}

@media (max-width: 480px) {

    .post-content,
    .page-main-content {
        padding: 0.35rem;
        /* 1rem → 0.75rem */
    }

    .single-post-section,
    .page-header-section,
    .page-content-section {
        padding: 0.25rem 0 1.5rem;
    }
}

/* Hover Animation - Underline from left to right */
.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.75rem;
}

.has-dropdown:hover .dropdown-arrow {
}

/* Sub Menu Styles */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0.5rem 0;
}

[data-theme="light"] .sub-menu {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.has-dropdown:hover .sub-menu {
    display: flex;
}

.sub-menu li {
    width: 100%;
}

.sub-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: 0;
}

.sub-menu a::before {
    display: none;
}

.sub-menu a:hover {
    background: rgba(11, 108, 255, 0.08);
    color: var(--primary);
    padding-left: 2rem;
}

[data-theme="light"] .sub-menu a:hover {
    background: rgba(11, 108, 255, 0.05);
}

/* Nested Sub Menu (Third Level) */
.sub-menu .has-dropdown {
    position: relative;
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

/* Mobile Navigation */



.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    border-color: var(--primary);
}

.mobile-toggle {
    display: none;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

a.btn {
    text-decoration: none;
}

a.btn:hover {
    text-decoration: none;
}

a.btn:focus {
    text-decoration: none;
}

a.btn:visited {
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
}

.btn-logout {
    background: rgba(255, 59, 92, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 59, 92, 0.3);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-logout:hover {
    background: var(--danger);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.hero-section {
    padding: 2rem 0 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(11, 108, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(11, 108, 255, 0.1);
    border: 1px solid rgba(11, 108, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-welcome {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

[data-theme="light"] .hero-stats {
    background: rgba(0, 0, 0, 0.02);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.features-section {
    padding: 3rem 0;
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.feature-link:hover {
}

.markets-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.crypto-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.crypto-card:hover {
    border-color: var(--primary);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crypto-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .crypto-logo {
    background: rgba(0, 0, 0, 0.05);
}

.crypto-details h4 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.crypto-details span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.crypto-data {
    text-align: right;
}

.crypto-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.crypto-price.price-flash {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(11, 108, 255, 0.4);
    animation: priceUpdate 0.8s ease-out;
}

@keyframes priceUpdate {
    0% {
        color: var(--text-primary);
        text-shadow: none;
    }
    50% {
        color: var(--primary);
        text-shadow: 0 0 12px rgba(11, 108, 255, 0.6);
    }
    100% {
        color: var(--text-primary);
        text-shadow: none;
    }
}


.crypto-change {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.crypto-change.positive {
    background: rgba(0, 200, 150, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 200, 150, 0.3);
}

.crypto-change.negative {
    background: rgba(255, 59, 92, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 59, 92, 0.3);
}

.crypto-volume {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Crypto grid specific loading state */
#crypto-grid .loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

/* General loading spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

/* Spinner animation */
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.referral-section {
    padding: 3rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
}

[data-theme="dark"] .referral-section {
    background: linear-gradient(135deg, #1A2035 0%, #0A0E1A 100%);
    color: white;
}

[data-theme="light"] .referral-section {
    background: var(--gradient-light);
    color: var(--text-primary);
}

.referral-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.referral-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

[data-theme="light"] .referral-title {
    color: var(--text-primary);
}

.referral-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .referral-text {
    color: var(--text-secondary);
    opacity: 1;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.ref-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .ref-stat {
    background: rgba(11, 108, 255, 0.05);
    border: 1px solid rgba(11, 108, 255, 0.15);
}

.ref-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

[data-theme="light"] .ref-value {
    color: var(--primary);
}

.ref-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .ref-label {
    color: var(--text-secondary);
}

[data-theme="light"] .referral-section .btn-white {
    background: var(--primary);
    color: white;
}

[data-theme="light"] .referral-section .btn-white:hover {
    background: var(--primary-dark);
}

/* STAKING CAMPAIGNS SECTION */
.staking-campaigns-section {
    padding: 3rem 0;
    background: var(--bg-surface);
    position: relative;
}

.staking-campaigns-header {
    text-align: center;
    margin-bottom: 3rem;
}

.staking-campaigns-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.staking-campaigns-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.staking-campaigns-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.staking-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.staking-campaign-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.staking-campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.staking-campaign-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.staking-campaign-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.staking-campaign-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(11, 108, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

[data-theme="light"] .staking-campaign-icon {
    background: rgba(11, 108, 255, 0.08);
}

.staking-campaign-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.staking-campaign-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.staking-campaign-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.staking-campaign-periods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.staking-period-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(11, 108, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(11, 108, 255, 0.1);
}

[data-theme="light"] .staking-period-item {
    background: rgba(11, 108, 255, 0.05);
    border-color: rgba(11, 108, 255, 0.15);
}

.staking-period-duration {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.staking-period-apy {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.staking-campaign-features {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.staking-feature {
    text-align: center;
    flex: 1;
}

.staking-feature-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.staking-feature-value {
    font-weight: 600;
    color: var(--text-primary);
}

.staking-campaign-action {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.staking-campaign-action:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
    color: white;
}

.staking-no-campaigns {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(11, 108, 255, 0.03);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

[data-theme="light"] .staking-no-campaigns {
    background: rgba(11, 108, 255, 0.02);
}

.staking-no-campaigns-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.staking-no-campaigns h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.staking-no-campaigns p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .staking-campaigns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .staking-campaign-periods {
        grid-template-columns: repeat(2, 1fr);
    }

    .staking-campaigns-title {
        font-size: 2rem;
    }

    .staking-campaign-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* SHOP PRODUCTS SECTION */
.shop-products-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.shop-products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-products-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.shop-products-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.shop-products-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.shop-product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.shop-product-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-surface);
}

.shop-product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-product-badge {
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.shop-product-badge.sale {
    background: var(--danger);
}

.shop-product-badge.new {
    background: var(--success);
}

.shop-product-content {
    padding: 1.25rem;
}

.shop-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.shop-product-stock {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.shop-product-stock.low {
    color: var(--warning);
}

.shop-product-stock.out {
    color: var(--danger);
}

/* PAYMENT OPTIONS BANNER */
.payment-options-banner {
    padding: 2rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .payment-options-banner {
    background: linear-gradient(135deg, #1A2035 0%, #111827 100%);
}

[data-theme="light"] .payment-options-banner {
    background: var(--gradient-light);
}

.payment-options-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.payment-options-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

[data-theme="light"] .payment-options-title {
    color: var(--text-primary);
}

.payment-options-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

[data-theme="light"] .payment-options-subtitle {
    color: var(--text-secondary);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-method-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .payment-method-card {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-method-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .payment-method-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-method-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

[data-theme="light"] .payment-method-title {
    color: var(--text-primary);
}

.payment-method-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .payment-method-description {
    color: var(--text-secondary);
}

.payment-options-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

[data-theme="light"] .payment-options-cta {
    background: var(--primary);
    color: white;
}

.payment-options-cta:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shop-view-all {
    text-align: center;
    margin-top: 2rem;
}

.shop-view-all-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.shop-view-all-btn:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
}

@media (max-width: 1024px) {
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shop-products-title {
        font-size: 2rem;
    }

    .payment-options-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ICO PRESALES SECTION */
.ico-presales-section {
    padding: 3rem 0;
    background: var(--bg-surface);
}

.ico-presales-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ico-presales-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.ico-presales-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ico-presales-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.ico-presales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.ico-presale-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.ico-presale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.ico-presale-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.ico-presale-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
}

[data-theme="light"] .ico-presale-header {
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
}

.ico-presale-token-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ico-presale-token-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ico-presale-token-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ico-presale-token-details h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ico-presale-token-symbol {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.ico-presale-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 200, 150, 0.1);
    color: var(--success);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.ico-presale-content {
    padding: 1.5rem 2rem;
}

.ico-presale-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ico-presale-stat {
    padding: 1rem;
    background: rgba(11, 108, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

[data-theme="light"] .ico-presale-stat {
    background: rgba(11, 108, 255, 0.05);
}

.ico-presale-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ico-presale-stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.ico-presale-progress {
    margin-bottom: 1.5rem;
}

.ico-presale-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ico-presale-progress-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ico-presale-progress-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.ico-presale-progress-bar {
    height: 10px;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.ico-presale-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
}

.ico-presale-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}


.ico-presale-countdown {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ico-countdown-item {
    text-align: center;
}

.ico-countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.ico-countdown-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.ico-presale-limits {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-surface);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .ico-presale-limits {
    background: rgba(0, 0, 0, 0.02);
}

.ico-presale-limit {
    text-align: center;
    flex: 1;
}

.ico-presale-limit-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.ico-presale-limit-value {
    font-weight: 600;
    color: var(--text-primary);
}

.ico-presale-action {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.ico-presale-action:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
    color: white;
}

.ico-no-presales {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 212, 170, 0.03);
    border-radius: 20px;
    border: 2px dashed var(--border-color);
}

[data-theme="light"] .ico-no-presales {
    background: rgba(0, 212, 170, 0.02);
}

.ico-no-presales-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.ico-no-presales h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ico-no-presales p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .ico-presales-grid {
        grid-template-columns: 1fr;
    }

    .ico-presales-title {
        font-size: 2rem;
    }

    .ico-presale-stats {
        grid-template-columns: 1fr;
    }

    .ico-presale-countdown {
        padding: 0.75rem;
    }

    .ico-countdown-value {
        font-size: 1.25rem;
    }
}

/* BUY CRYPTO SECTION */
.buy-crypto-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
    position: relative;
    overflow: hidden;
}

.buy-crypto-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 108, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.buy-crypto-header {
    text-align: center;
    margin-bottom: 3rem;
}

.buy-crypto-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(11, 108, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}


.buy-crypto-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.buy-crypto-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.buy-crypto-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.buy-crypto-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.buy-crypto-feature-icon {
    font-size: 1.25rem;
}

.buy-crypto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.buy-crypto-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.buy-crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    display: none;
}

.buy-crypto-card:hover::before {
}

.buy-crypto-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.buy-crypto-coin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.buy-crypto-coin-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 108, 255, 0.05);
    border-radius: 50%;
}

[data-theme="light"] .buy-crypto-coin-icon {
    background: rgba(11, 108, 255, 0.08);
}

.buy-crypto-coin-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.buy-crypto-coin-info {
    flex: 1;
}

.buy-crypto-coin-symbol {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.buy-crypto-coin-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.buy-crypto-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

.buy-crypto-type-badge.custom {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.buy-crypto-price-info {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.buy-crypto-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.buy-crypto-price-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buy-crypto-limits {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-surface);
    border-radius: 8px;
    margin-bottom: 1rem;
}

[data-theme="light"] .buy-crypto-limits {
    background: rgba(0, 0, 0, 0.02);
}

.buy-crypto-limit {
    text-align: center;
    flex: 1;
}

.buy-crypto-limit-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.buy-crypto-limit-value {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.buy-crypto-commission {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.buy-crypto-commission-value {
    color: var(--warning);
    font-weight: 600;
}

.buy-crypto-action {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.buy-crypto-action:hover {
    box-shadow: 0 10px 20px rgba(11, 108, 255, 0.3);
    color: white;
}

.buy-crypto-payment-methods {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.buy-crypto-payment-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.buy-crypto-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.buy-crypto-payment-item {
    text-align: center;
}

.buy-crypto-payment-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.buy-crypto-payment-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.buy-crypto-payment-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.buy-crypto-view-all {
    text-align: center;
    margin-top: 2rem;
}

.buy-crypto-view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.buy-crypto-view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.buy-crypto-view-all-btn:hover::before {
}

.buy-crypto-view-all-btn:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
}

@media (max-width: 1024px) {
    .buy-crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .buy-crypto-payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .buy-crypto-grid {
        grid-template-columns: 1fr;
    }

    .buy-crypto-features {
        flex-direction: column;
        align-items: center;
    }

    .buy-crypto-title {
        font-size: 2rem;
    }
}

/* USER SECURITY SECTION */
.user-security-section {
    padding: 3rem 0;
    background: var(--bg-surface);
    position: relative;
}

.user-security-header {
    text-align: center;
    margin-bottom: 3rem;
}

.user-security-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--danger);
    margin-bottom: 1rem;
}

.user-security-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.user-security-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

.user-security-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.user-security-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.user-security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.user-security-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.security-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.security-feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-feature-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-feature-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.security-feature-benefit::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.post-content ul,
.page-main-content ul {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 1rem;
}

.post-content li,
.page-main-content li {
    margin-bottom: 0.5rem;
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(11, 108, 255, 0.03);
    border-radius: 16px;
}

[data-theme="light"] .security-stats {
    background: rgba(11, 108, 255, 0.05);
}

.security-stat {
    text-align: center;
}

.security-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.security-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.user-security-cta {
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.user-security-cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.user-security-cta-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.user-security-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.user-security-cta-button:hover {
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
}

@media (max-width: 1200px) {
    .user-security-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .user-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .user-security-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .user-security-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background: var(--bg-surface);
    padding: 2rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-top-menu ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-top-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-top-menu a:hover {
    color: var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}




@media (max-width: 768px) {
    .container {
        width: 99%;
        padding: 0 3px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 120px);
        max-height: 70vh;
        background: var(--bg-surface);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        display: none;
            z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }

    .main-nav::-webkit-scrollbar {
        width: 4px;
    }

    .main-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .main-nav::-webkit-scrollbar-thumb {
        background: rgba(11, 108, 255, 0.3);
        border-radius: 2px;
    }

    .main-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(11, 108, 255, 0.5);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
        margin: 0;
    }

    .main-nav .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav .nav-list li:last-child {
        border-bottom: none;
    }

    .main-nav .nav-list a {
        display: block;
        padding: 1rem 1rem;
        color: var(--text-primary);
        text-decoration: none;
            font-size: 1.1rem;
        font-weight: 500;
    }

    .main-nav .nav-list a:hover {
        background: rgba(11, 108, 255, 0.1);
        color: var(--primary);
        padding-left: 1.5rem;
    }

    .main-nav .has-dropdown>a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav .dropdown-arrow {
        font-size: 0.9rem;
            opacity: 0.7;
    }

    .main-nav .has-dropdown.mobile-open .dropdown-arrow {
    }

    .main-nav .sub-menu {
        position: static;
        display: none;
        background: rgba(11, 108, 255, 0.05);
        margin: 0.5rem 0 0 1rem;
        border-radius: 8px;
        border: 1px solid rgba(11, 108, 255, 0.1);
    }

    .main-nav .has-dropdown.mobile-open .sub-menu {
        display: block;
        padding: 0.5rem 0;
    }

    .main-nav .sub-menu a {
        padding: 0.75rem 1rem 0.75rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 400;
        margin: 0;
    }

    .main-nav .sub-menu a:hover {
        background: rgba(11, 108, 255, 0.15);
        padding-left: 2rem;
    }

    .main-nav.active~.site-header {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        backdrop-filter: blur(10px);
    }

    [data-theme="light"] .main-nav.active {
        backdrop-filter: blur(15px);
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(11, 108, 255, 0.1);
        border: 1px solid rgba(11, 108, 255, 0.3);
        border-radius: 8px;
        color: var(--primary);
        font-size: 1.2rem;
        cursor: pointer;
            flex-direction: column;
    }

    .mobile-toggle:hover {
        background: rgba(11, 108, 255, 0.2);
    }

    .mobile-toggle.active {
        background: var(--primary);
        color: white;
    }

    .menu-line {
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
            margin: 2px 0;
        }

    .mobile-toggle.active .menu-line:nth-child(1) {
        display: none;
    }

    .mobile-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .menu-line:nth-child(3) {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
    }

    .referral-stats {
        grid-template-columns: 1fr;
    }

    .footer-top-menu ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0 1.5rem;
    }

    .features-section,
    .markets-section,
    .referral-section,
    .staking-campaigns-section,
    .shop-products-section,
    .ico-presales-section,
    .buy-crypto-section,
    .user-security-section {
        padding: 2rem 0;
    }

    .payment-options-banner {
        padding: 2rem 0;
    }

    .site-footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 768px) {

    .post-content ul,
    .page-main-content ul {
        padding-left: 0.5rem;
        margin-left: 0;
    }
}

/* Table Styles */
.post-content table,
.page-main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.post-content th,
.page-main-content th {
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    color: var(--text-primary);
    font-weight: 700;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="light"] .post-content th,
[data-theme="light"] .page-main-content th {
    background: linear-gradient(135deg, rgba(11, 108, 255, 0.08) 0%, rgba(0, 212, 170, 0.03) 100%);
}

.post-content td,
.page-main-content td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.post-content tr:last-child td,
.page-main-content tr:last-child td {
    border-bottom: none;
}

.post-content tr:hover,
.page-main-content tr:hover {
    background: rgba(11, 108, 255, 0.03);
}

[data-theme="light"] .post-content tr:hover,
[data-theme="light"] .page-main-content tr:hover {
    background: rgba(11, 108, 255, 0.02);
}

/* Table responsive wrapper */
.post-content .table-wrapper,
.page-main-content .table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.post-content .table-wrapper table,
.page-main-content .table-wrapper table {
    margin: 0;
    border: none;
    border-radius: 0;
}

/* Mobile table styles */
@media (max-width: 768px) {

    .post-content table,
    .page-main-content table {
        font-size: 0.85rem;
        min-width: 500px;
        /* Minimum genişlik, yatay kaydırma için */
    }

    .post-content th,
    .page-main-content th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .post-content td,
    .page-main-content td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {

    .post-content table,
    .page-main-content table {
        font-size: 0.8rem;
    }

    .post-content th,
    .page-main-content th {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .post-content td,
    .page-main-content td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Striped tables */
.post-content .table-striped tr:nth-child(even),
.page-main-content .table-striped tr:nth-child(even) {
    background: rgba(11, 108, 255, 0.02);
}

[data-theme="light"] .post-content .table-striped tr:nth-child(even),
[data-theme="light"] .page-main-content .table-striped tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

/* Bordered tables */
.post-content .table-bordered td,
.page-main-content .table-bordered td,
.post-content .table-bordered th,
.page-main-content .table-bordered th {
    border: 1px solid var(--border-color);
}