.rareplot-details-section {
    padding: 70px 0;
    background: radial-gradient(circle at center, #091420, #030a11);
    animation: fadeIn 1.2s ease-in-out;
    display: flex;
    justify-content: center;
}

.rareplot-container {
    width: 90%;
    max-width: 1300px;
    display: flex;
    gap: 45px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMAGE BOX */
.rareplot-image-box {
    flex: 1;
    position: relative;
    animation: floatUp 2s ease-in-out infinite;
}

.rareplot-main-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(100, 180, 255, 0.25);
}

/* RARITY BADGE */
.rareplot-rarity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.rareplot-rarity-rare {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
}

/* INFO BOX */
.rareplot-info-box {
    flex: 1.2;
    animation: fadeSlide 1.3s ease-in-out;
}

.rareplot-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.rareplot-subtitle {
    font-size: 18px;
    color: #93adc4;
    margin-bottom: 35px;
}

/* STATS GRID */
.rareplot-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.rareplot-stat-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.rareplot-stat-label {
    color: #a7bed4;
    font-size: 14px;
}

.rareplot-stat-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* PRICE BOX */
.rareplot-price-box {
    margin: 35px 0;
}

.rareplot-price {
    font-size: 32px;
    font-weight: 800;
    color: #7cc4ff;
}

.rareplot-usdc {
    color: #88a4ba;
    font-size: 14px;
}

/* BUY BUTTON */
.rareplot-buy-btn {
    padding: 15px 40px;
    background: #ffd028;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
}

.rareplot-buy-btn:hover {
    background: #ffe057;
    box-shadow: 0 0 15px rgba(255, 215, 70, 0.6);
}

/* Animations */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeSlide { from {opacity: 0; transform: translateX(40px);} to {opacity: 1; transform: translateX(0);} }
@keyframes floatUp {
    0% { transform: translateY(10px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(10px); }
}
