/* Explore Section */
.explore-section {
    background: #000;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Wrapper Box */
.explore-wrapper {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.8) 0%, rgba(10, 15, 30, 0.9) 100%);
    border: 2px solid rgba(138, 87, 255, 0.3);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(138, 87, 255, 0.2);
}

.explore-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(138, 87, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Left Side */
.explore-left {
    width: 40%;
    z-index: 1;
}

.explore-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.explore-content p {
    font-size: 16px;
    color: #999;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-explore {
    padding: 14px 32px;
    background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(138, 87, 255, 0.3);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(138, 87, 255, 0.5);
}

/* Right Side - Crypto Grid */
.explore-right {
    width: 60%;
    z-index: 1;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    animation: float-grid 3s ease-in-out infinite;
}

/* Crypto Pill */
.crypto-pill {
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.6) 0%, rgba(20, 15, 40, 0.8) 100%);
    border: 1px solid rgba(138, 87, 255, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.crypto-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(138, 87, 255, 0.6);
    box-shadow: 0 8px 20px rgba(138, 87, 255, 0.3);
    background: linear-gradient(135deg, rgba(40, 25, 60, 0.8) 0%, rgba(30, 20, 50, 0.9) 100%);
}

.crypto-pill img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.crypto-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.crypto-rate {
    font-size: 11px;
    color: #8A57FF;
    font-weight: 500;
}

/* Grid Animation */
@keyframes float-grid {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Staggered Animation for Pills */
.crypto-pill:nth-child(1) { animation-delay: 0s; }
.crypto-pill:nth-child(2) { animation-delay: 0.1s; }
.crypto-pill:nth-child(3) { animation-delay: 0.2s; }
.crypto-pill:nth-child(4) { animation-delay: 0.3s; }
.crypto-pill:nth-child(5) { animation-delay: 0.4s; }
.crypto-pill:nth-child(6) { animation-delay: 0.5s; }
.crypto-pill:nth-child(7) { animation-delay: 0.6s; }
.crypto-pill:nth-child(8) { animation-delay: 0.7s; }
.crypto-pill:nth-child(9) { animation-delay: 0.8s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .explore-wrapper {
        gap: 50px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .explore-section {
        padding: 60px 30px;
    }

    .explore-wrapper {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
    }

    .explore-left {
        width: 100%;
    }

    .explore-content h1 {
        font-size: 38px;
    }

    .explore-right {
        width: 100%;
    }

    .crypto-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 40px 20px;
    }

    .explore-wrapper {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .explore-content h1 {
        font-size: 32px;
    }

    .explore-content p {
        font-size: 15px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 50px;
    }

    .crypto-pill {
        padding: 10px 16px;
        gap: 10px;
    }

    .crypto-pill img {
        width: 28px;
        height: 28px;
    }

    .crypto-name {
        font-size: 13px;
    }

    .crypto-rate {
        font-size: 10px;
    }
    /* .crypto-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    } */

    .explore-content h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .explore-section {
        flex-direction: column;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .explore-wrapper {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .explore-content h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .explore-section {
        flex-direction: column;
        justify-content: space-around;
    }
}