﻿/* Reset and Base Styles */
:root {
    --primary-gold: #F0A500;
    --secondary-gold: #FFD700;
    --dark-gold: #B87333;
    --light-gold: #FFE87C;
    --accent-gold: #FFC107;
    --bg-dark: #0d0d0d;
    --bg-secondary: #1a1500;
    --text-light: #f5f0e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}


.nav-logo img {
    width: 260px;
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.2rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(240, 165, 0, 0.3);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px rgba(240, 165, 0, 0.4);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(240, 165, 0, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.2);
}

.btn-login:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.4);
}

.btn-signup {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 165, 0, 0.5);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.img-responsive {
    width:100%;
}

.mob-btn {
    display:none;
    width:47%;
    
    
}

.tradingview-widget-container {
    margin-top: 64px;
}

.d-flexfeat {
    display:flex;
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0rem!important;
    }

    .crypto-chartj {
        display: none;
    }

    .hero {
        min-height: auto!important;
       
    }


    .hero {
        margin-top: 10px;
        padding: 15px 3px;
    }


    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgb(30 20 0);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        padding: 0rem 0;
    }


    
    .nav-menu.active {
        left: 0;
    }

        .nav-menu li {
            margin: 0.1rem 10px;
            text-align: left;
            border-bottom: 1px solid #3a2a00;
        }

        .nav-menu a {
            font-size: 1.2rem;
            padding: 0.5rem;
            display: block;
        }


    a.btn-login.mob-btn {
        text-align: center;
    }

    a.btn-signup.mob-btn {
        text-align: center;
    }

    .nav-buttons {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('../landing-img/bgimage/1.jpg');

    /* background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);*/
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(240, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(240, 165, 0, 0.05) 50%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroOrb 25s ease-in-out infinite;
    pointer-events: none;
    box-shadow: 0 0 100px rgba(240, 165, 0, 0.2);
}

@keyframes heroOrb {
    0%, 100% { transform: translateX(0px) translateY(0px) scale(1); }
    25% { transform: translateX(100px) translateY(-50px) scale(1.2); }
    50% { transform: translateX(200px) translateY(0px) scale(0.8); }
    75% { transform: translateX(100px) translateY(50px) scale(1.1); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.crypto-chartj img {
    width: 100%;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}


.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b8c8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border: none;
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(240, 165, 0, 0.5);
    filter: brightness(1.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(240, 165, 0, 0.4);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(240, 165, 0, 0.4);
}

.stat-label {
    color: #b0b8c8;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.crypto-chart {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container {
    height: 300px;
    background: linear-gradient(135deg, #1a1500, #1a1500);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

#cryptoChart {
    width: 100%;
    height: 100%;
}

.crypto-card {
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
}

.floating-cards {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-card {
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
}

.crypto-card:nth-child(2) {
    animation-delay: 1s;
}

.crypto-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.crypto-card i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 5px rgba(240, 165, 0, 0.5));
}

.crypto-card .price {
    font-weight: 600;
    margin-left: auto;
}

.crypto-card .change {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.change.positive {
    background: rgba(0, 255, 136, 0.2);
    color: #FF8C00;
}

.change.negative {
    background: rgba(255, 68, 68, 0.2);
    color: #FF6347;
}

/* Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    box-shadow: 0 0 8px rgba(240, 165, 0, 0.6);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 10s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 15s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(240, 165, 0, 0.1) 0%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 140, 0, 0.08) 0%, transparent 25%),
        radial-gradient(ellipse at center, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.statistics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(240, 165, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(218, 165, 32, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: statsPattern 25s linear infinite;
    pointer-events: none;
}

@keyframes statsPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #F0A500;
    box-shadow: 0 15px 30px rgba(240, 165, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F0A500, #F0A500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F0A500;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b8c8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;

   
}

.section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b8c8;
}

/* Technologies Section */
.technologies {
    background-image: url('../landing-img/bg123456.jpg');
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0d0d0d00 0%, #1a1500 100%); */
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(240, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(240, 165, 0, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.technologies::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(240, 165, 0, 0.1), transparent);
    border-radius: 50%;
    animation: techFloat 20s ease-in-out infinite;
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.1);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(240, 165, 0, 0.3);
    background: rgba(240, 165, 0, 0.1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 165, 0, 0.1), transparent);
    transition: left 0.5s;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.4);
}

.tech-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tech-content p {
    color: #b0b8c8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: #120f00;
    position: relative;
    overflow: hidden;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, rgba(240, 165, 0, 0.1) 0deg, transparent 60deg, rgba(0, 255, 136, 0.1) 120deg, transparent 180deg, rgba(255, 68, 68, 0.1) 240deg, transparent 300deg, rgba(240, 165, 0, 0.1) 360deg);
    opacity: 0.3;
    pointer-events: none;
}

.integrations::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F0A500, #FF8C00, #FF6347, #F0A500, transparent);
    animation: integrationsLine 8s ease-in-out infinite;
}

@keyframes integrationsLine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #F0A500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.integration-info p {
    font-size: 1.1rem;
    color: #b0b8c8;
    line-height: 1.6;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.1);
}

.logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: rgba(240, 165, 0, 0.1);
    box-shadow: 0 15px 30px rgba(240, 165, 0, 0.2);
}

.logo-item i {
    font-size: 2rem;
    color: #F0A500;
}

.logo-item span {
    color: #b0b8c8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Development Section - Removed (now using unified background image styling below) */

.dev-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dev-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #F0A500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dev-info p {
    font-size: 1.1rem;
    color: #b0b8c8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dev-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dev-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b0b8c8;
    padding: 1rem;
    background: rgba(240, 165, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.1);
}

.dev-feature:hover {
    background: rgba(240, 165, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
}

.dev-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
    filter: drop-shadow(0 0 5px rgba(240, 165, 0, 0.5));
}

.dev-mockup {
   
   
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mockup-screen {
    background: #1a1500;
    border-radius: 15px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(240, 165, 0, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F0A500;
}

.mockup-dots span:nth-child(2) {
    background: #FF8C00;
}

.mockup-dots span:nth-child(3) {
    background: #FF6347;
}

.mockup-content {
    padding: 2rem;
}

.code-lines {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 165, 0, 0.1);
    border-left: 2px solid var(--primary-gold);
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(240, 165, 0, 0.2);
}

.code-keyword {
    color: #ff6b9d;
}

.code-class {
    color: #F0A500;
}

.code-function {
    color: #FF8C00;
}

.code-comment {
    color: #666;
    font-style: italic;
}

/* Security Section */
.security {
    padding: 2rem 0;
    background-image: url('../landing-img/bg1234.jpg');
   
    position: relative;
    overflow: hidden;
}

    .security::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #00000029;
        pointer-events: none;
    }

.security::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(240, 165, 0, 0.2), rgba(0, 255, 136, 0.2));
    border-radius: 20px;
    animation: securityCube 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes securityCube {
    0%, 100% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    33% { transform: rotateX(120deg) rotateY(120deg) rotateZ(0deg); }
    66% { transform: rotateX(240deg) rotateY(240deg) rotateZ(120deg); }
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.security-shield {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-dark);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(240, 165, 0, 0.5);
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(240, 165, 0, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.2);
}

.ring-1 {
    width: 250px;
    height: 250px;
    top: -25px;
    left: -25px;
}

.ring-2 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 1s;
}

.ring-3 {
    width: 350px;
    height: 350px;
    top: -75px;
    left: -75px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.security-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #F0A500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   
 }

.security-info p {
    font-size: 1.0rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
     text-align: justify;

}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.4);
}

.security-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.security-feature-content p {
    color: #b0b8c8;
    line-height: 1.6;
    margin: 0;
}

/* Bitcoin Features Section */
.bitcoin-features {
    padding: 6rem 0;
    background-image: url('../landing-img/bg004.jpg');
   
    position: relative;
    overflow: hidden;
    background-size:cover;
    background-attachment:fixed;
}

.bitcoin-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(240, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.bitcoin-features::after {
    content: '₿';
    position: absolute;
    top: 15%;
    right: 8%;
    font-size: 12rem;
    color: rgba(240, 165, 0, 0.05);
    font-weight: bold;
    animation: bitcoinFloat 20s ease-in-out infinite;
    pointer-events: none;
    transform-origin: center;
}

@keyframes bitcoinFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.05; }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.1); opacity: 0.08; }
    50% { transform: translateY(-10px) rotate(180deg) scale(0.9); opacity: 0.1; }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.05); opacity: 0.06; }
}

.bitcoin-features-content {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-right {
    align-items: flex-end;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.0rem;
    padding: 1.0rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);

    box-shadow: 0 0 15px rgba(240, 165, 0, 0.1);
}

.features-right .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(240, 165, 0, 0.2);
    background: rgba(240, 165, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(240, 165, 0, 0.3);
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-text p {
    color: #b0b8c8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Bitcoin Vault Center Piece */
.features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bitcoin-vault {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.bitcoin-vault:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.vault-building {
    position: relative;
    width: 200px;
    height: 250px;
}

.vault-roof {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #2a1f00, #1a2332);
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vault-roof::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: linear-gradient(135deg, #3a4451, #2a1f00);
    border-radius: 5px;
}

.vault-body {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #3a2a00, #2a1f00);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.vault-door {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #1a1500 0%, #120f00 100%);
    border-radius: 50%;
    border: 8px solid #2a1f00;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(240, 165, 0, 0.3);
}

.vault-door::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(240, 165, 0, 0.5);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.bitcoin-logo {
    font-size: 3rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(240, 165, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.vault-columns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    pointer-events: none;
}

.column {
    width: 15px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 2px;
}

.vault-base {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #1a1500, #120f00);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(240, 165, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(240, 165, 0, 0.8);
    }
}

/* Core Features Section */
.core-features {
    padding: 6rem 0;
    background-image: url('../landing-img/bg001.jpg');
    background-attachment:fixed;
    background-size:cover;
   
}

.core-features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.core-feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.1);
}

.core-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(240, 165, 0, 0.2);
}

.core-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 165, 0, 0.1), transparent);
    transition: left 0.5s;
}

.core-feature-item:hover::before {
    left: 100%;
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    min-width: 80px;
    text-shadow: 0 0 10px rgba(240, 165, 0, 0.4);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(240, 165, 0, 0.4);
}

.feature-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-details p {
    color: #b0b8c8;
    line-height: 1.6;
    margin: 0;
}

/* Trading Section */
.trading {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1500 100%);
    position: relative;
    overflow: hidden;
}

.trading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(240, 165, 0, 0.1) 0%, transparent 20%, rgba(255, 140, 0, 0.1) 40%, transparent 60%, rgba(218, 165, 32, 0.1) 80%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(240, 165, 0, 0.02) 100px,
            rgba(240, 165, 0, 0.02) 200px
        );
    animation: tradingWaves 15s ease-in-out infinite;
    pointer-events: none;
}

.trading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(240, 165, 0, 0.8) 0%, 
        rgba(255, 140, 0, 0.8) 25%, 
        rgba(218, 165, 32, 0.8) 50%, 
        rgba(240, 165, 0, 0.8) 75%, 
        rgba(255, 140, 0, 0.8) 100%
    );
    animation: tradingLine 8s linear infinite;
}

@keyframes tradingWaves {
    0%, 100% { transform: translateX(0%); }
    50% { transform: translateX(-10%); }
}

@keyframes tradingLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.trading-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 15rem;
    align-items: center;
}

.trading-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
}

.trading-info p {
    font-size: 1.2rem;
    color: #b0b8c8;
    margin-bottom: 2rem;
}

.trading-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.trading-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #b0b8c8;
}

.trading-benefits i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(240, 165, 0, 0.5));
}

.platform-mockup {
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(240, 165, 0, 0.1);
}

.platform-header {
    background: rgba(240, 165, 0, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(240, 165, 0, 0.2);
}

.platform-tabs {
    display: flex;
    gap: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0b8c8;
}

.tab.active {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 10px rgba(240, 165, 0, 0.4);
}

.platform-content {
    padding: 2rem;
}

.order-book {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

.order-row.sell {
    background: rgba(255, 140, 0, 0.1);
    color: #ff9500;
}

.order-row.buy {
    background: rgba(240, 165, 0, 0.1);
    color: var(--primary-gold);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0800;
    position: relative;
    overflow: hidden;
}

/* Subtle gold particle dots in background */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(240,165,0,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(240,165,0,0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* --- CTA Bar --- */
.footer-cta {
    background: linear-gradient(135deg, rgba(240,165,0,0.12) 0%, rgba(240,165,0,0.04) 100%);
    border-top: 1px solid rgba(240,165,0,0.25);
    border-bottom: 1px solid rgba(240,165,0,0.15);
    padding: 2.2rem 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.footer-cta-text p {
    color: #b0b8c8;
    font-size: 0.95rem;
    margin: 0;
}

.footer-cta-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.footer-cta-btns .btn-primary,
.footer-cta-btns .btn-secondary {
    font-size: 0.95rem;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-cta-btns .btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 0 18px rgba(240,165,0,0.3);
}

.footer-cta-btns .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,165,0,0.5);
    filter: brightness(1.08);
}

.footer-cta-btns .btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 1.5px solid var(--primary-gold);
}

.footer-cta-btns .btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* --- Main Footer Grid --- */
.footer-main {
    padding: 4rem 0 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Brand column */
.footer-brand .footer-logo {
    margin-bottom: 1.2rem;
}

.footer-brand .footer-logo img {
    width: 200px;
    height: auto;
}

.footer-brand p {
    color: #8a96a8;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.6rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(240,165,0,0.08);
    border: 1px solid rgba(240,165,0,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(240,165,0,0.35);
    border-color: var(--primary-gold);
}

/* Link columns */
.footer-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col-line {
    display: inline-block;
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    color: #8a96a8;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    padding: 0.15rem 0;
}

.footer-col ul li a i {
    font-size: 0.6rem;
    color: var(--primary-gold);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4px);
}

.footer-col ul li a:hover i {
    transform: translateX(3px);
}

/* Contact mini block */
.footer-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #8a96a8;
    font-size: 0.85rem;
}

.footer-contact-item i {
    color: var(--primary-gold);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* --- Divider --- */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240,165,0,0.3), rgba(240,165,0,0.5), rgba(240,165,0,0.3), transparent);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
    background: rgba(0,0,0,0.35);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(240,165,0,0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: #6a7688;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-inner p span {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-bottom-badges {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-bottom-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6a7688;
    font-size: 0.8rem;
    background: rgba(240,165,0,0.06);
    border: 1px solid rgba(240,165,0,0.15);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
}

.footer-bottom-badges span i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

/* ===== Footer Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-btns {
        justify-content: center;
    }

    .footer-cta-text h3 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-cta-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-cta-btns a {
        width: 100%;
        text-align: center;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-bottom-badges {
        gap: 0.6rem;
    }

    .footer-bottom-badges span {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Statistics responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    /* Technologies responsive */
    .tech-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
    
    /* Integrations responsive */
    .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-item {
        padding: 1rem;
    }
    
    /* Development responsive */
    .dev-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dev-mockup {
        order: -1;
    }
    
    .mockup-content {
        padding: 1rem;
    }
    
    .code-lines {
        font-size: 0.8rem;
    }
    
    /* Security responsive */
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .security-shield {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
        top: -25px;
        left: -25px;
    }
    
    .ring-2 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }
    
    .ring-3 {
        width: 300px;
        height: 300px;
        top: -75px;
        left: -75px;
    }
    
    .security-feature {
        text-align: left;
    }
    
    /* Bitcoin features responsive */
    .bitcoin-features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-left,
    .features-right {
        align-items: center;
    }
    
    .features-right .feature-item {
        flex-direction: row;
        text-align: left;
    }
    
    .feature-item {
        max-width: 100%;
        padding: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .bitcoin-vault {
        transform: perspective(1000px) rotateY(0deg) scale(0.8);
    }
    
    .vault-building {
        width: 160px;
        height: 200px;
    }
    
    .vault-door {
        width: 100px;
        height: 100px;
    }
    
    .bitcoin-logo {
        font-size: 2.5rem;
    }
    
    /* Core features responsive */
    .core-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-number {
        min-width: auto;
        font-size: 1rem;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trading-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-cards {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    /* Section headers responsive */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .tech-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .security-shield {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    
    .core-feature-item {
        padding: 1rem;
    }
    
    .feature-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Bitcoin features mobile */
    .bitcoin-vault {
        transform: perspective(1000px) rotateY(0deg) scale(0.7);
    }
    
    .vault-building {
        width: 140px;
        height: 180px;
    }
    
    .vault-door {
        width: 80px;
        height: 80px;
    }
    
    .bitcoin-logo {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}


/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background-image: url('../landing-img/103.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}



.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}





/* Why Choose Section */
.animation1 {
    padding: 6rem 0;
    background-image: url('../landing-img/bgimage/2.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}



.animation1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}



/* Why Choose Section */
.animation2 {
    padding: 6rem 0;
    background-image: url('../landing-img/bgimage/3.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}



.animation2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}




/* Why Choose Section */
.animation3 {
    padding: 6rem 0;
    background-image: url('../landing-img/bgimage/4.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}




.animation3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}


.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(13 13 13 / 31%);
    pointer-events: none;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.why-choose-header .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.why-choose-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.why-choose-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-visual-container {
    position: relative;
    width: 100%;
   
    border-radius: 20px;
    overflow: hidden;
  
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.crypto-visual-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-left: 4px solid var(--primary-gold);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.1);
    position: relative;
}

.feature-item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary-gold);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.2);
    background: rgba(240, 165, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.4);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.feature-text p {
    color: #b0b8c8;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-header h2 {
        font-size: 2rem;
    }

    .crypto-visual-container {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 3rem 0;
    }

    .why-choose-header {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
    }

    .why-choose-header h2 {
        font-size: 1.8rem;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .crypto-visual-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .why-choose-right {
        gap: 1.2rem;
    }

    .feature-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feature-text h3 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 2rem 0;
    }

    .why-choose-header {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .why-choose-header h2 {
        font-size: 1.5rem;
    }

    .why-choose-header .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .why-choose-wrapper {
        gap: 1.5rem;
    }

    .crypto-visual-container {
        max-width: 100%;
    }

    .why-choose-right {
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.8rem;
        border-left: 3px solid var(--primary-gold);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-text h3 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Blockchain Info Section */
.blockchain-info {
    padding: 6rem 0;
    background-image: url('../landing-img/bg001.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.blockchain-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(240, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(240, 165, 0, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.blockchain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.blockchain-card {
    padding: 2.5rem;

    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blockchain-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
   
}

.blockchain-card .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.blockchain-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blockchain-card p {
    color: #b0b8c8;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blockchain-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .blockchain-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 1.5rem;
    }

    .blockchain-card {
        padding: 1.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}








/* Centered Section Header */
.section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.2);
}

.section-header-centered .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.section-header-centered h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
}

/* Blockchain Technology Section - Content Left, Image Right */
.blockchain-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.blockchain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 165, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blockchain-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.blockchain-content { order: 1; }
.blockchain-image { order: 2; display: flex; justify-content: center; align-items: center; }

.blockchain-section .blockchain-card {
    padding: 2.5rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.15);
}

.blockchain-section .blockchain-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(240, 165, 0, 0.3);
    background: rgba(240, 165, 0, 0.08);
}

.blockchain-section .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.blockchain-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blockchain-section p {
    color: #b0b8c8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.blockchain-section p:last-child { margin-bottom: 0; }

.section-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
  
    transition: all 0.3s ease;
}

.blockchain-image:hover .section-img {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(240, 165, 0, 0.5);
}

/* Smart Contracts Section - Image Left, Content Right */
.smart-contracts-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.smart-contracts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 60%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 40%, rgba(240, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.smart-contracts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.smart-contracts-image { order: 1; display: flex; justify-content: center; align-items: center; }
.smart-contracts-content { order: 2; }

.smart-contracts-section .blockchain-card {
    padding: 2.5rem;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.15);
}

.smart-contracts-section .blockchain-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.3);
    background: rgba(255, 140, 0, 0.08);
}

.smart-contracts-section .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    background: rgba(255, 140, 0, 0.1);
}

.smart-contracts-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-gold), #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smart-contracts-section p {
    color: #b0b8c8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.smart-contracts-section p:last-child { margin-bottom: 0; }

.smart-contracts-image .section-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.3);
    border: 2px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.smart-contracts-image:hover .section-img {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.5);
}

/* Decentralization Section - Content Left, Image Right */
.decentralization-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.decentralization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(240, 165, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.decentralization-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.decentralization-content { order: 1; }
.decentralization-image { order: 2; display: flex; justify-content: center; align-items: center; }

.decentralization-section .blockchain-card {
    padding: 2.5rem;
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.15);
}

.decentralization-section .blockchain-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(240, 165, 0, 0.3);
    background: rgba(240, 165, 0, 0.08);
}

.decentralization-section .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.decentralization-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.decentralization-section p {
    color: #b0b8c8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.decentralization-section p:last-child { margin-bottom: 0; }

.decentralization-image .section-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(240, 165, 0, 0.3);
    border: 2px solid rgba(240, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.decentralization-image:hover .section-img {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(240, 165, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blockchain-wrapper,
    .smart-contracts-wrapper,
    .decentralization-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blockchain-content, .smart-contracts-content, .decentralization-content,
    .blockchain-image, .smart-contracts-image, .decentralization-image {
        order: unset !important;
    }

    .section-img { max-width: 100%; }
}

@media (max-width: 768px) {
    .blockchain-section, .smart-contracts-section, .decentralization-section {
        padding: 3rem 0;
    }

    .blockchain-section .blockchain-card,
    .smart-contracts-section .blockchain-card,
    .decentralization-section .blockchain-card {
        padding: 2rem;
    }

    .blockchain-section h2, .smart-contracts-section h2, .decentralization-section h2 {
        font-size: 1.8rem;
    }

    .blockchain-section p, .smart-contracts-section p, .decentralization-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blockchain-section, .smart-contracts-section, .decentralization-section {
        padding: 2rem 0;
    }

    .blockchain-section .blockchain-card,
    .smart-contracts-section .blockchain-card,
    .decentralization-section .blockchain-card {
        padding: 1.5rem;
    }

    .blockchain-section h2, .smart-contracts-section h2, .decentralization-section h2 {
        font-size: 1.5rem;
    }

    .blockchain-section p, .smart-contracts-section p, .decentralization-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}


/* Unified Section Styling for Blockchain, Smart Contracts, Decentralization */

.section-wrapper {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Section Header - Centered at Top */
.section-header-top {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.section-header-top .section-tag {
    display: inline-block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 20px;
    background: rgba(240, 165, 0, 0.1);
}

.section-header-top h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(240, 165, 0, 0.3));
}

/* Content Wrapper - Two Column Layout */
.section-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.section-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-text p {
    color: #b0b8c8;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: justify;
}

.section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-img {
    width: 100%;
    
    height: auto;
    border-radius: 15px;
   
    transition: all 0.3s ease;
}

.section-image:hover .section-img {
    transform: scale(1.05);
   
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 3rem 0;
    }

    .section-header-top {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .section-header-top h2 {
        font-size: 1.8rem;
    }

    .section-text p {
        font-size: 0.95rem;
    }

    .section-content-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-wrapper {
        padding: 2rem 0;
    }

    .section-header-top {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .section-header-top h2 {
        font-size: 1.5rem;
    }

    .section-header-top .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .section-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-img {
        max-width: 100%;
    }
}


/* Animated Background Zoom Effect */
@keyframes zoomInOut {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 110%;
    }
    100% {
        background-size: 100%;
    }
}

/* Blockchain Technology Section - Background Image */
.section-wrapper:nth-of-type(8) {
    background-image: url('../landing-img/bgimage/2.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-wrapper:nth-of-type(8)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}

/* Smart Contracts Section - Background Image */
.section-wrapper:nth-of-type(9) {
    background-image: url('../landing-img/bgimage/3.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-wrapper:nth-of-type(9)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}

/* Decentralization Section - Background Image */
.section-wrapper:nth-of-type(10) {
    background-image: url('../landing-img/bgimage/4.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.section-wrapper:nth-of-type(10)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}

/* Development Section - Background Image */
.development {
    padding: 6rem 0;
    background-image: url('../landing-img/bgimage/1.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    animation: zoomInOut 15s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.85);
    pointer-events: none;
}

/* Ensure content stays on top of background */
.why-choose .container,
.section-wrapper .container,
.development .container {
    position: relative;
    z-index: 2;
}



/* ===== FAQ Section ===== */
.faq-section {
    padding: 6rem 0;
    background-image: url('../landing-img/bgimage/5.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
   
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  
    margin: 0 auto;
}

.faq-item {
    background: rgba(240, 165, 0, 0.04);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-left: 4px solid var(--primary-gold);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.07);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.15);
    background: rgba(240, 165, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item.active .faq-question span,
.faq-item:hover .faq-question span {
    color: var(--primary-gold);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bg-dark);
    font-size: 0.85rem;
    transition: transform 0.35s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(240, 165, 0, 0.35);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.55);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.3rem;
}

.faq-answer p {
    color: #b0b8c8;
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
    border-top: 1px solid rgba(240, 165, 0, 0.15);
    padding-top: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-question {
        padding: 1.1rem 1.2rem;
    }

    .faq-question span {
        font-size: 0.97rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }
}


/* ===== About Crypto Trading Section ===== */
.about-crypto {
    padding: 6rem 0 0;
    background-image: url('../landing-img/bgimage/6.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about-crypto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.87);
    pointer-events: none;
}

.about-crypto .container {
    position: relative;
    z-index: 2;
}

/* --- Intro 3-column cards --- */
.act-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.act-intro-card {
    background: rgba(240, 165, 0, 0.05);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-top: 3px solid var(--primary-gold);
    border-radius: 14px;
    padding: 2rem 1.6rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(240, 165, 0, 0.07);
    position: relative;
    overflow: hidden;
}

.act-intro-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240,165,0,0.07), transparent);
    transition: left 0.5s;
}

.act-intro-card:hover::before { left: 100%; }

.act-intro-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: 0 18px 40px rgba(240, 165, 0, 0.18);
    background: rgba(240, 165, 0, 0.09);
}

.act-intro-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 1.2rem;
    box-shadow: 0 0 18px rgba(240, 165, 0, 0.4);
}

.act-intro-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.act-intro-card p {
    color: #b0b8c8;
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0;
}

/* --- Big info block --- */
.act-info-block {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.act-info-img {
    width: 100%;
    border-radius: 18px;
    animation: floatImage 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(240,165,0,0.15));
}

.act-info-right .section-tag {
    margin-bottom: 1rem;
}

.act-info-right h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(240,165,0,0.25));
}

.act-info-right p {
    color: #b0b8c8;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Stats row */
.act-stats-row {
    display: flex;
    gap: 2rem;
    margin: 1.8rem 0;
    flex-wrap: wrap;
}

.act-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.act-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(240,165,0,0.4);
}

.act-stat-label {
    font-size: 0.8rem;
    color: #b0b8c8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature checklist */
.act-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.act-feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #d0d8e8;
    font-size: 0.93rem;
    padding: 0.6rem 1rem;
    background: rgba(240,165,0,0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.act-feat:hover {
    background: rgba(240,165,0,0.1);
    transform: translateX(6px);
}

.act-feat i {
    color: var(--primary-gold);
    font-size: 1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(240,165,0,0.5));
}

/* ===== Coin Slider ===== */
.act-coin-slider-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(240, 165, 0, 0.04);
    border-top: 1px solid rgba(240,165,0,0.2);
    border-bottom: 1px solid rgba(240,165,0,0.2);
    padding: 1.4rem 0;
    position: relative;
    z-index: 2;
    /* fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.act-coin-slider-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: coinSlide 32s linear infinite;
}

.act-coin-slider-track:hover {
    animation-play-state: paused;
}

@keyframes coinSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.act-coin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 110px;
    padding: 1rem 0.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(240,165,0,0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(240,165,0,0.06);
}

.act-coin:hover {
    border-color: var(--primary-gold);
    background: rgba(240,165,0,0.08);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(240,165,0,0.2);
}

.act-coin-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 0 16px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

.act-coin-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e0e8f0;
    text-align: center;
}

.act-coin-sym {
    font-size: 0.72rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .act-intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .act-info-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .act-info-img {
        max-width: 380px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .about-crypto {
        padding: 3.5rem 0 0;
    }

    .act-intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .act-info-block {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .act-info-right h2 {
        font-size: 1.7rem;
    }

    .act-stats-row {
        gap: 1.2rem;
    }

    .act-stat-num {
        font-size: 1.3rem;
    }

    /* Mobile: show 2 coins at a time — narrower cards */
    .act-coin {
        min-width: calc(50vw - 2.4rem);
    }

    .act-coin-slider-track {
        animation-duration: 22s;
    }
}

@media (max-width: 480px) {
    .act-intro-card {
        padding: 1.4rem 1.2rem;
    }

    .act-intro-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .act-coin {
        min-width: calc(50vw - 2rem);
        padding: 0.8rem 0.6rem;
    }

    .act-coin-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}
