:root {
    --kp-primary-bg: #8e74bc; /* Fallback color */
    --kp-text-white: #ffffff;
}

.kp-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Use your nebula/starry background image here */
    background: linear-gradient(135deg, #2b1055, #7597de); 
    font-family: 'Georgia', serif; /* Or similar serif font */
    padding: 60px 20px;
}

.kp-hero-container {
    max-width: 1000px;
    text-align: center;
    z-index: 2;
}

.kp-hero-badge {
    color: var(--kp-text-white);
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.kp-bracket {
    font-size: 24px;
    vertical-align: middle;
    margin: 0 10px;
}

.kp-hero-title {
    font-size: 4rem;
    color: var(--kp-text-white);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 500;
}

.kp-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 80px auto;
}

.kp-hero-btn {
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 160px;
}

.kp-hero-btn:hover {
    transform: scale(1.05);
}

.kp-hero-btn-primary {
    background: #ffffff;
    color: #333333;
}

.kp-hero-btn-whatsapp {
    background: #25D366;
    color: #0b1020;
}

/* Icons Styles */
.kp-hero-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.kp-icon-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    perspective: 1000px;
}

.kp-crypto-card {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

/* Reflection Effect */
.kp-crypto-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scaleY(-0.5);
    filter: blur(8px);
    opacity: 0.15;
    pointer-events: none;
}

.kp-crypto-card img {
    width: 60%;
    height: auto;
}

.kp-crypto-card:hover {
    transform: translateY(-15px) rotateX(10deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kp-hero-title { font-size: 2.5rem; }
    .kp-crypto-card { width: 60px; height: 60px; border-radius: 12px; }
    .kp-hero-actions { margin-bottom: 60px; }
}


/* =========================================================
   DIGITAL ASSET EXCHANGE PLATFORM - EXTRA SECTIONS
========================================================= */

.dae-container{
    width: min(1200px, 92%);
    margin: 0 auto;
}

.dae-intro-section,
.dae-highlights-section,
.dae-showcase-section,
.dae-modules-section,
.dae-benefits-section,
.dae-cta-section{
    position: relative;
    padding: 90px 0;
}

.dae-section-head{
    margin-bottom: 42px;
}

.dae-section-head.center{
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.dae-mini-title{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #8b5cf6;
    margin-bottom: 14px;
}

.dae-section-head h2,
.dae-showcase-content h2,
.dae-cta-box h2{
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin: 0 0 18px;
    color: #fff;
    font-weight: 700;
}

.dae-section-head p,
.dae-showcase-content p,
.dae-cta-box p,
.dae-card p,
.dae-module-box p,
.dae-benefit-item p{
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.dae-intro-section{
    background:
        radial-gradient(circle at top center, rgba(139,92,246,0.12), transparent 42%),
        linear-gradient(180deg, #0b1020 0%, #0c1224 100%);
}

.dae-highlights-section{
    background: #0a0f1d;
}

.dae-highlight-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dae-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 28px;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dae-card:hover{
    transform: translateY(-8px);
    border-color: rgba(139,92,246,0.45);
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.dae-icon{
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(59,130,246,0.18));
    border: 1px solid rgba(255,255,255,0.08);
}

.dae-icon i{
    color: #fff;
    font-size: 24px;
}

.dae-card h3,
.dae-module-box h3,
.dae-benefit-item h3{
    color: #fff;
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 600;
}

.dae-showcase-section{
    background:
        radial-gradient(circle at left center, rgba(59,130,246,0.10), transparent 30%),
        radial-gradient(circle at right top, rgba(139,92,246,0.10), transparent 30%),
        #0d1326;
}

.dae-showcase-wrap{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.dae-feature-list{
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.dae-feature-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.86);
    font-size: 16px;
}

.dae-feature-list i{
    color: #8b5cf6;
    font-size: 18px;
}

.dae-showcase-media{
    position: relative;
}

.dae-screen-frame{
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 16px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.dae-screen-frame.large img{
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.dae-modules-section{
    background: #0a0f1d;
}

.dae-modules-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dae-module-box{
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 30px;
    transition: all .3s ease;
}

.dae-module-box:hover{
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.4);
}

.dae-benefits-section{
    background:
        linear-gradient(180deg, #0c1224 0%, #10172d 100%);
}

.dae-benefit-wrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dae-benefit-item{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 28px;
}

.dae-cta-section{
    background:
        radial-gradient(circle at center, rgba(139,92,246,0.16), transparent 35%),
        #0b1020;
}

.dae-cta-box{
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 55px 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}

.dae-cta-actions{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.dae-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.dae-btn-primary{
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
}

.dae-btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99,102,241,0.35);
}

.dae-btn-secondary{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}

.dae-btn-secondary:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.24);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
    .dae-highlight-grid,
    .dae-modules-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .dae-showcase-wrap,
    .dae-benefit-wrap{
        grid-template-columns: 1fr;
    }

    .dae-intro-section,
    .dae-highlights-section,
    .dae-showcase-section,
    .dae-modules-section,
    .dae-benefits-section,
    .dae-cta-section{
        padding: 70px 0;
    }
}

@media (max-width: 767px){
    .dae-highlight-grid,
    .dae-modules-grid,
    .dae-benefit-wrap{
        grid-template-columns: 1fr;
    }

    .dae-card,
    .dae-module-box,
    .dae-benefit-item{
        padding: 24px;
    }

    .dae-cta-box{
        padding: 36px 22px;
    }

    .dae-section-head h2,
    .dae-showcase-content h2,
    .dae-cta-box h2{
        font-size: 30px;
    }
}
