/* Reset and Base Styles */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-gold: #B8860B;
    --light-gold: #FFEF94;
    --accent-gold: #DAA520;
    --bg-dark: #1a1611;
    --bg-secondary: #2a2419;
    --text-light: #f5f5dc;
}

* {
    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(10, 14, 26, 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(255, 215, 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(255, 215, 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(255, 215, 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(255, 215, 0, 0.2);
}

.btn-login:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 215, 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(255, 215, 0, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 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(46 46 46);
        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 #605b3f;
        }

        .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: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/bg123.png');

    /* 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(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 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(255, 215, 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(255, 215, 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(255, 215, 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(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 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(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 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(255, 215, 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, #1a1f2e, #2a2f3e);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

#cryptoChart {
    width: 100%;
    height: 100%;
}

.crypto-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 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(255, 215, 0, 0.2);
}

.floating-cards {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 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(255, 215, 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(255, 215, 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: #00ff88;
}

.change.negative {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

/* 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(255, 215, 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(255, 215, 0, 0.1) 0%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 165, 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(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 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: #ffc700;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc700, #0099cc);
    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: #ffc700;
    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;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.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(0, 212, 255, 0.3);
    border-radius: 20px;
    background: rgba(0, 212, 255, 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(255, 215, 0, 0.3));
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b8c8;
}

/* Technologies Section */
.technologies {
    background-image: url(img/bg123456.jpg);
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #0a0e1a00 0%, #1a1f2e 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(0, 212, 255, 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(0, 212, 255, 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(0, 212, 255, 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(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 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(255, 215, 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: #0f1419;
    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(0, 212, 255, 0.1) 0deg, transparent 60deg, rgba(0, 255, 136, 0.1) 120deg, transparent 180deg, rgba(255, 68, 68, 0.1) 240deg, transparent 300deg, rgba(0, 212, 255, 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, #ffc700, #00ff88, #ff4444, #ffc700, 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, #ffc700);
    -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(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.logo-item i {
    font-size: 2rem;
    color: #ffc700;
}

.logo-item span {
    color: #b0b8c8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Development Section */
.development {
    padding: 4rem 0;
    background-image: url('../img/bf12564.jpg');
    position: relative;
    overflow: hidden;
    background-attachment:fixed;
}

.development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(0, 212, 255, 0.03) 50px,
            rgba(0, 212, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 157, 0.03) 50px,
            rgba(255, 107, 157, 0.03) 100px
        );
    pointer-events: none;
}

.development::after {
    content: '</>';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    color: rgba(0, 212, 255, 0.1);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    animation: codeFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes codeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.2; }
}

.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, #ffc700);
    -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(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.dev-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.dev-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.dev-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mockup-screen {
    background: #1a1f2e;
    border-radius: 15px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(0, 212, 255, 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: #ffc700;
}

.mockup-dots span:nth-child(2) {
    background: #00ff88;
}

.mockup-dots span:nth-child(3) {
    background: #ff4444;
}

.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(255, 215, 0, 0.1);
    border-left: 2px solid var(--primary-gold);
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.code-keyword {
    color: #ff6b9d;
}

.code-class {
    color: #ffc700;
}

.code-function {
    color: #00ff88;
}

.code-comment {
    color: #666;
    font-style: italic;
}

/* Security Section */
.security {
    padding: 2rem 0;
    background-image: url('../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(0, 212, 255, 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(255, 215, 0, 0.5);
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 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, #ffc700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-info p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.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(255, 215, 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('../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(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 165, 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(255, 215, 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(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 350px;
    box-shadow: 0 0 15px rgba(255, 215, 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(255, 215, 0, 0.2);
    background: rgba(255, 215, 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(255, 215, 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, #2a3441, #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, #2a3441);
    border-radius: 5px;
}

.vault-body {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    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, #1a252f 0%, #0f1419 100%);
    border-radius: 50%;
    border: 8px solid #2c3e50;
    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(255, 215, 0, 0.3);
}

.vault-door::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 215, 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(255, 215, 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, #1a252f, #0f1419);
    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(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

/* Core Features Section */
.core-features {
    padding: 6rem 0;
    background-image: url('../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(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.core-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.core-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 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(255, 215, 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(255, 215, 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, #0a0e1a 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.trading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 20%, rgba(255, 165, 0, 0.1) 40%, transparent 60%, rgba(218, 165, 32, 0.1) 80%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 215, 0, 0.02) 100px,
            rgba(255, 215, 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(255, 215, 0, 0.8) 0%, 
        rgba(255, 165, 0, 0.8) 25%, 
        rgba(218, 165, 32, 0.8) 50%, 
        rgba(255, 215, 0, 0.8) 75%, 
        rgba(255, 165, 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(255, 215, 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(255, 215, 0, 0.5));
}

.platform-mockup {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
}

.platform-header {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 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(255, 215, 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, 165, 0, 0.1);
    color: #ff9500;
}

.order-row.buy {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background: #0a0e1a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: #b0b8c8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b0b8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffc700;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b8c8;
}

/* 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-menu {
        /*display: none;*/
    }
    
    .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;
    }
}