/**
 * 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;
    transition: background 0.3s ease, color 0.3s ease;
}

.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);
    transition: all 0.3s ease;
}

[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.95);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 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.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* 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);
    transition: width 0.4s ease-in-out;
}

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* 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);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    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 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.sub-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.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 */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Mobile Menu Toggle Animation */
.mobile-toggle .menu-line {
    width: 20px;
    height: 2px;
    background: currentColor;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.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;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.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;
    transition: all 0.3s ease;
    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;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 108, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.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;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    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;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateX(5px);
}

.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 {
    transform: translateY(-2px);
    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;
}

.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.1);
    color: var(--success);
}

.crypto-change.negative {
    background: rgba(255, 59, 92, 0.1);
    color: var(--danger);
}

.crypto-volume {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
}

.referral-section {
    padding: 3rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
}

[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;
    transition: all 0.3s ease;
    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 {
    transform: translateY(-5px);
    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;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.staking-campaign-action:hover {
    transform: translateY(-2px);
    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;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    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="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);
    transition: all 0.3s ease;
}

[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 {
    transform: translateY(-5px);
    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;
    transition: all 0.3s ease;
}

[data-theme="light"] .payment-options-cta {
    background: var(--primary);
    color: white;
}

.payment-options-cta:hover {
    transform: translateY(-2px);
    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;
    transition: all 0.3s ease;
}

.shop-view-all-btn:hover {
    transform: translateY(-2px);
    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;
    transition: all 0.3s ease;
    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 {
    transform: translateY(-5px);
    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;
    transition: width 1s ease;
    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);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.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;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.ico-presale-action:hover {
    transform: translateY(-2px);
    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;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.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;
    transition: all 0.3s ease;
    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);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.buy-crypto-card:hover::before {
    transform: translateX(0);
}

.buy-crypto-card:hover {
    transform: translateY(-5px);
    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;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.buy-crypto-action:hover {
    transform: translateY(-2px);
    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;
    transition: all 0.3s ease;
    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%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.buy-crypto-view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.buy-crypto-view-all-btn:hover {
    transform: translateY(-2px);
    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;
    transition: all 0.3s ease;
    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 {
    transform: translateY(-5px);
    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;
}

.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;
    transition: all 0.3s ease;
}

.user-security-cta-button:hover {
    transform: translateY(-2px);
    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;
    transition: color 0.3s ease;
}

.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;
    transition: color 0.3s ease;
}

.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;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}
@media (max-width: 768px) {
    /* Mobile Navigation Styles */
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background: var(--bg-surface);
        border-top: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 2rem 0;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    [data-theme="light"] .main-nav {
        background: white;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .main-nav a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
    }

    .main-nav a::before {
        display: none;
    }

    .main-nav a:hover {
        color: var(--primary);
        padding-left: 1rem;
    }

    /* Mobile Dropdown */
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(11, 108, 255, 0.03);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 1rem;
    }

    [data-theme="light"] .sub-menu {
        background: rgba(11, 108, 255, 0.05);
    }

    .has-dropdown.mobile-open .sub-menu {
        max-height: 300px;
        padding: 0.5rem 1rem;
    }

    .sub-menu a {
        padding: 0.75rem 0;
        padding-left: 1rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sub-menu a:hover {
        padding-left: 1.5rem;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .mobile-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
@media (max-width: 768px) {
    .container {
        width: 98%;
        padding: 0 10px;
    }
    
    .main-nav {
        display: none;
    }
    .main-nav.active {
    display: block;
}
    .mobile-toggle {
        display: block;
        background: transparent;
        border: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .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;
    }
}