:root {
    --primary-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --secondary-gradient: linear-gradient(135deg, #0052d4 0%, #4364f7 100%);
    --bwc-cyan: #00f2fe;
    --bwc-blue: #0052d4;
    --bg-dark: #030712;
    --bg-light: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.75);
    --accent-blue: #00f2fe;
    --text-dark: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(0, 242, 254, 0.15);
    --nav-height: 95px;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030712;
    color: var(--text-dark);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #0c2340 0%, #030712 70%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #000000;
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.navbar.scrolled {
    background: #000000;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    height: 82px;
    box-shadow: 0 6px 30px rgba(0, 242, 254, 0.15);
}

.brand-logo-img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.brand-logo-img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-center-title {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00f2fe;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Button Base */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
    background: transparent;
    border: none;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #00f2fe;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.telegram-link,
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-muted);
}

.telegram-link i {
    color: #0088cc;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 50px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 124, 240, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 124, 240, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #fdfdfd;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-dashboard {
    background: var(--secondary-gradient);
    color: white;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-login-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.2) 0%, rgba(49, 130, 206, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    animation: pulse 6s infinite alternate;
}

.floating-element {
    display: none !important;
}

.sphere-1 {
    width: 280px;
    height: 280px;
    top: -20px;
    right: 0;
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.2), rgba(49, 130, 206, 0.1));
    animation: morph 8s infinite ease-in-out;
}

.sphere-2 {
    width: 180px;
    height: 180px;
    bottom: 40px;
    left: -40px;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.2), rgba(99, 179, 237, 0.1));
    animation: morph 12s infinite ease-in-out reverse;
}

.sphere-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    left: 80px;
    background: rgba(255, 255, 255, 0.03);
    animation: float 5s infinite ease-in-out 1s;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Calculator Section */
.calculator-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    background: transparent;
}

.calc-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 50px;
    color: #00f2fe;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.calc-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.85);
    padding: 28px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-group {
    width: 100%;
    text-align: left;
}

.calc-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 6px;
}

.calc-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 7, 18, 0.6);
    font-family: var(--font-main);
    font-size: 14px;
    color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

.calc-input option {
    background: #0f172a;
    color: #f8fafc;
}

.calc-input:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.2);
}

.input-wrapper {
    position: relative;
}

.input-wrapper.readonly .calc-input {
    background: rgba(0, 242, 254, 0.05);
    color: #00f2fe;
    font-weight: 600;
}

.currency-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-weight: 600;
    pointer-events: none;
}

.calc-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.profit-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profit-label span {
    font-size: 18px;
    margin-left: 4px;
}

.btn-calc {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .calc-card {
        padding: 22px 18px;
    }

    .section-title {
        font-size: 26px;
    }
}

/* Plans Section */
.plans-section {
    padding: 30px 0 60px;
    background: transparent;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: rgba(15, 23, 42, 0.8) !important;
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(0, 242, 254, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: #00f2fe;
    box-shadow: 0 12px 35px rgba(0, 242, 254, 0.25);
}

.plan-card.featured {
    border: 2px solid #00f2fe;
    transform: scale(1.02);
    z-index: 2;
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 12px 40px rgba(0, 242, 254, 0.2);
}

.plan-card.featured:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 242, 254, 0.35);
}

.plan-image {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.12) 0%, rgba(0, 82, 212, 0.15) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 14px;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crystal-blue {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00f2fe, #0052d4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateCrystal 10s infinite linear;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.5));
}

.crystal-blue.dark {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    transform: scale(1.1);
}

.crystal-blue.light {
    background: linear-gradient(135deg, #4facfe, #0052d4);
}

@keyframes rotateCrystal {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.plan-percent {
    position: absolute;
    top: 8px;
    right: 10px;
    background: linear-gradient(135deg, #00f2fe 0%, #0052d4 100%);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 11px;
    color: #030712;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-roi-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00f2fe 0%, #0052d4 100%);
    color: #030712;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.plan-features {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.plan-features li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-muted);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li span {
    font-weight: 600;
    color: #f8fafc;
}

.btn-plan {
    width: 100%;
    justify-content: center;
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 50px !important;
}

@media (max-width: 868px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #00f2fe;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 242, 254, 0.2);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-links.mobile-open {
        transform: translateY(0);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    border: 2px solid rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #00f2fe;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
}

.step-icon i {
    color: #00f2fe !important;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: translateY(-5px);
    border-color: #f59e0b;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.step-card:hover .step-icon i {
    color: #030712 !important;
}

.step-number {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #00f2fe 0%, #0052d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #030712;
    border: 2px solid #030712;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Transactions Section */
.live-transactions {
    padding: 100px 0;
    background: var(--bg-light);
}

.transactions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.transaction-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.transaction-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: rgba(0, 124, 240, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 18px;
}

.user-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.trans-date {
    font-size: 12px;
    color: var(--text-muted);
}

.trans-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin: 0 15px;
}

.status-active {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
}

.status-inactive {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
}

.status-success {
    background: rgba(49, 130, 206, 0.1);
    color: #3182ce;
}

.status-pending {
    background: rgba(221, 107, 32, 0.1);
    color: #dd6b20;
}

.trans-amount {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 16px;
    min-width: 80px;
    text-align: right;
}

@media (max-width: 768px) {
    .transactions-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    text-align: left;
    padding: 20px;
}

.feature-icon-box {
    margin-bottom: 25px;
}

.glass-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-green);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-card:hover .glass-icon {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 124, 240, 0.15);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 35px;
    color: var(--primary-green);
    opacity: 0.8;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 1200px) {

    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: transparent;
}

.blog-slider-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.blog-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-nav:hover {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.blog-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.blog-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 0 10px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--primary-green);
}

@media (max-width: 1200px) {
    .blog-nav {
        display: none;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-icon-left {
    color: var(--primary-green);
    font-size: 20px;
    opacity: 0.6;
}

.faq-header h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: #fafafa;
}

.faq-body p {
    padding: 0 30px 25px 70px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    background: var(--primary-gradient);
    color: white;
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    padding: 110px 0 80px;
    background: linear-gradient(180deg, #fff8ed 0%, #fff3e1 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: stretch;
    margin-top: 40px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 36px;
    padding: 45px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(217, 119, 6, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info .calc-badge {
    width: fit-content;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(255, 243, 224, 0.9);
    border: 1px solid rgba(217, 119, 6, 0.12);
    color: #c2410c;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-copy {
    max-width: 520px;
    color: #4f4f4f;
    line-height: 1.9;
    font-size: 16px;
    margin: 20px 0 30px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.detail-item {
    display: flex;
    gap: 18px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 22px 24px;
    border: 1px solid rgba(229, 156, 88, 0.18);
}

.detail-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: white;
    font-size: 18px;
}

.detail-item strong {
    display: block;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 6px;
}

.detail-item p {
    margin: 0;
    color: #57534e;
    font-size: 14px;
    line-height: 1.7;
}

.contact-form {
    background: white;
    border-radius: 36px;
    padding: 45px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 137, 54, 0.12);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #334155;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 24px;
    padding: 20px 20px;
    background: #fdf6ef;
    color: #1f2937;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.12);
}

.contact-form label:last-of-type {
    margin-bottom: 20px;
}

.btn-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 180px;
    max-width: 260px;
    margin: 10px 0 0;
    padding: 16px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #ea580c 0%, #fbbf24 100%);
    color: white;
    font-weight: 700;
    letter-spacing: 0.9px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(234, 88, 12, 0.28);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        padding: 30px;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: transparent;
}

.cta-card {
    background: var(--secondary-gradient);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(120, 53, 15, 0.2);
}

.cta-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.cta-card h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--accent-brown);
}

@media (max-width: 768px) {
    .cta-card h2 {
        font-size: 28px;
    }

    .cta-btns {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        z-index: 999999 !important;
        cursor: pointer;
        padding: 8px 4px;
        min-width: 44px;
        min-height: 44px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .mobile-menu-btn span {
        display: block;
        height: 3px;
        width: 26px;
        background-color: #00f2fe;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
        pointer-events: none;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-center-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Space Grotesk', var(--font-heading), sans-serif;
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.8px;
        color: #ffffff;
        cursor: pointer;
        text-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
        text-transform: uppercase;
        user-select: none;
    }

    .brand-logo-img {
        height: 48px;
        width: 48px;
    }

    .nav-actions {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }

    /* Dedicated Mobile Navigation Drawer */
    .mobile-drawer {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 75px);
        background: #030712;
        z-index: 9999999;
        overflow-y: auto;
        border-top: 1px solid rgba(0, 242, 254, 0.25);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    }

    .mobile-drawer.open {
        display: block !important;
    }

    .mobile-drawer-inner {
        padding: 25px 20px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 420px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .mobile-drawer-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .mobile-drawer-nav a {
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 13px 18px;
        text-decoration: none;
        text-align: left;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
    }

    .mobile-drawer-nav a:hover,
    .mobile-drawer-nav a.active {
        color: #00f2fe !important;
        background: rgba(0, 242, 254, 0.12);
        border-color: rgba(0, 242, 254, 0.4);
        transform: translateX(4px);
    }

    .mobile-drawer-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 15px;
    }

    .mobile-drawer-actions .btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* CL Panel (Redesigned Admin/User Panel) */
.admin-body {
    background: #030712;
    background-attachment: fixed;
    margin: 0;
    font-family: var(--font-main);
    color: #f8fafc;
}

.admin-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #071b2d 0%, #0a2940 100%);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    flex-shrink: 0;
    z-index: 100;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.sidebar-header {
    padding: 0 25px 20px;
    flex-shrink: 0;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    padding: 0 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 242, 254, 0.3) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.3);
    border-radius: 4px;
}

.nav-item {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.nav-item i {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.nav-item span {
    flex: 1;
}
.nav-item:hover {
    color: white;
    background: rgba(16, 185, 129, 0.16);
}

.nav-item.active {
    color: white;
    background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.18);
    border-radius: 18px;
    margin: 0 16px;
    padding: 14px 22px;
}

.sidebar-footer {
    padding: 20px 18px 24px;
}

.btn-logout {
    width: 100%;
    padding: 14px 12px;
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    border: none;
    border-radius: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-logout:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.22);
}

/* Main Area */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100vh;
}

.cl-header {
    height: 70px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breadcrumb-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
}

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-dropdown, .bell-icon {
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

/* Content Grid */
.cl-content {
    padding: 20px 30px;
}

.top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-card {
    height: 120px;
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.profile-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.level-badge {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
}

.profile-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info span {
    color: #fbbf24;
    font-weight: 600;
}

.referral-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.referral-section label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.referral-input-group {
    display: flex;
    align-items: center;
    background: white;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.16);
}

.referral-input-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 13px;
    background: transparent;
    color: #0f172a;
}

.btn-copy {
    padding: 10px 12px;
    background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
}

/* Middle Row */
.middle-row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.wallet-card {
    background: #1e1e2d;
    border-radius: 30px;
    padding: 40px;
    color: white;
}

.wallet-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.wallet-illustration {
    position: relative;
    width: 100%;
    height: 220px;
    background: #2b2b3b;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.wallet-illustration::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.balance-item {
    position: relative;
    z-index: 1;
}

.balance-item span {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.balance-item label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.balance-item label i {
    color: #fbbf24;
}

.wallet-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.btn-dash {
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-deposit {
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
    color: white;
}

.btn-invest {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stat Grid */
.cl-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    position: relative;
    border: 1px solid var(--glass-border);
}

.stat-header {
    display: flex;
    justify-content: flex-end;
}

.stat-icon-sm {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
}

.stat-label-sm {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Specific Card Colors */
.stat-card.green { background: #d9f99d; }
.stat-card.blue { background: #bae6fd; }
.stat-card.yellow { background: #fef08a; }
.stat-card.red { background: #fecaca; }
.stat-card.purple { background: #ddd6fe; }
.stat-card.pink { background: #fbcfe8; }
.stat-card.orange { background: #fed7aa; }

/* Recent Transactions (Dark Glassmorphism Theme) */
.recent-transactions-section {
    margin-top: 40px;
    background: rgba(15, 23, 42, 0.85);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: #f8fafc;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.trans-table-container {
    width: 100%;
    overflow-x: auto;
}

.trans-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.trans-table th {
    text-align: left;
    padding: 12px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
}

.trans-row {
    background: rgba(3, 7, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, background 0.2s ease;
}

.trans-row:hover {
    transform: scale(1.01);
    background: rgba(15, 23, 42, 0.9);
}

.trans-row td {
    padding: 16px 20px;
    font-size: 14px;
    color: #e2e8f0;
}

.trans-row td:first-child { border-radius: 15px 0 0 15px; }
.trans-row td:last-child { border-radius: 0 15px 15px 0; }

.trans-desc {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trans-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid #f59e0b;
    color: #f59e0b;
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

.trans-info {
    display: flex;
    flex-direction: column;
}

.trans-info strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
}

.trans-info span {
    font-size: 12px;
    color: #94a3b8;
}

.trans-id {
    color: #00f2fe;
    font-weight: 700;
    font-family: monospace;
}

.badge-type {
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.trans-amount-val {
    font-weight: 700;
}

.trans-amount-val.positive { color: #10b981; }
.trans-amount-val.negative { color: #ef4444; }

.badge-status {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-success::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.trans-gateway {
    font-weight: 600;
}

/* Responsive Table */
@media (max-width: 992px) {
    .trans-table {
        min-width: 800px;
    }
}

/* Dashboard Responsive */
@media (max-width: 1200px) {
    .middle-row {
        grid-template-columns: 1fr;
    }
    .cl-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }
    .top-row {
        grid-template-columns: 1fr;
    }
    .cl-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BLUE WATER COIN CUSTOM STYLING
   ========================================================================== */

/* Crypto Ticker Marquee */
.bwc-ticker-bar {
    background: rgba(3, 7, 18, 0.95);
    border-bottom: 1px solid rgba(0, 242, 254, 0.15);
    padding: 4px 0;
    margin-top: var(--nav-height);
    font-size: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticker-marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.ticker-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: max-content;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.6);
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item.featured-ticker {
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(0, 242, 254, 0.08);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.2);
}

.coin-symbol {
    font-weight: 600;
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.coin-price {
    font-family: var(--font-heading);
    color: #e2e8f0;
    white-space: nowrap;
}

.coin-change.pos {
    color: #00f2fe;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.text-glow {
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}

.text-cyan {
    color: #00f2fe !important;
}

/* Typography & Buttons */
.bwc-gradient-text {
    background: linear-gradient(135deg, #00f2fe 0%, #0052d4 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #00f2fe;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2fe;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.bwc-btn-glow {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
    color: #030712 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.45) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.bwc-btn-glow:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.75) !important;
}

.bwc-btn-outline {
    background: rgba(15, 23, 42, 0.8) !important;
    color: #00f2fe !important;
    border: 1px solid rgba(0, 242, 254, 0.4) !important;
    font-weight: 600 !important;
}

.bwc-btn-outline:hover {
    background: rgba(0, 242, 254, 0.1) !important;
    border-color: #00f2fe !important;
}

/* Stats Strip */
.hero-stats-strip {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    padding: 16px 24px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.strip-item {
    display: flex;
    flex-direction: column;
}

.strip-val {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #00f2fe;
}

.strip-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

.strip-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* 3D Coin Emblem */
.bwc-coin-3d {
    width: 260px;
    height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(0, 242, 254, 0.3);
    animation: rotateRing 20s linear infinite;
}

.outer-ring {
    width: 100%;
    height: 100%;
}

.inner-ring {
    width: 75%;
    height: 75%;
    border-style: dotted;
    border-color: rgba(0, 82, 212, 0.5);
    animation: rotateRingRev 15s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateRingRev {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.bwc-core-emblem {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #00f2fe 0%, #0052d4 60%, #030712 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.5);
    border: 2px solid #00f2fe;
}

.bwc-core-emblem i {
    font-size: 42px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
}

.bwc-core-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-top: 4px;
}

/* Glass Cards & Badges */
.bwc-badge {
    background: rgba(0, 242, 254, 0.1) !important;
    color: #00f2fe !important;
    border: 1px solid rgba(0, 242, 254, 0.2) !important;
}

.bwc-glass-card {
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.bwc-plan-card {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(0, 242, 254, 0.15) !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
    position: relative;
}

.bwc-plan-card:hover {
    transform: translateY(-8px) !important;
    border-color: #00f2fe !important;
    box-shadow: 0 15px 45px rgba(0, 242, 254, 0.25) !important;
}

.bwc-featured-card {
    border-color: #00f2fe !important;
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.2) !important;
}

.featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f2fe 0%, #0052d4 100%);
    color: #030712;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
}

.bwc-avatar {
    background: rgba(0, 242, 254, 0.15) !important;
    color: #00f2fe !important;
    border: 1px solid rgba(0, 242, 254, 0.3) !important;
}

.bwc-feature-card {
    background: rgba(15, 23, 42, 0.7) !important;
    border: 1px solid rgba(0, 242, 254, 0.12) !important;
    border-radius: 20px !important;
}

.bwc-stat {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(0, 242, 254, 0.15) !important;
    border-radius: 18px !important;
}

.bwc-cta-card {
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.95) 0%, rgba(3, 7, 18, 0.95) 100%) !important;
    border: 1px solid rgba(0, 242, 254, 0.3) !important;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.15) !important;
}