.commonplot-details-section {
    padding: 70px 0;
    background: radial-gradient(circle at center, #0b1624, #050c14);
    animation: fadeIn 1.2s ease-in-out;
    display: flex;
    justify-content: center;
}

.commonplot-container {
    width: 90%;
    max-width: 1300px;
    display: flex;
    gap: 45px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMAGE BOX */
.commonplot-image-box {
    flex: 1;
    position: relative;
    animation: floatUp 2.4s ease-in-out infinite;
}

.commonplot-main-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 215, 110, 0.2);
}

/* RARITY BADGE */
.commonplot-rarity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.commonplot-rarity-common {
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

/* INFO BOX */
.commonplot-info-box {
    flex: 1.2;
    animation: fadeSlide 1.3s ease-in-out;
}

.commonplot-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.commonplot-subtitle {
    font-size: 18px;
    color: #9bb3c7;
    margin-bottom: 35px;
}

/* STATS GRID */
.commonplot-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.commonplot-stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.commonplot-stat-label {
    color: #a1b8cd;
    font-size: 14px;
}

.commonplot-stat-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* PRICE */
.commonplot-price-box {
    margin: 35px 0;
}

.commonplot-price {
    font-size: 32px;
    font-weight: 800;
    color: #ffd966;
}

.commonplot-usdc {
    color: #8ea8ba;
    font-size: 14px;
}

/* BUY BUTTON */
.commonplot-buy-btn {
    padding: 15px 40px;
    background: #ffcc33;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
}

.commonplot-buy-btn:hover {
    background: #ffe26e;
    box-shadow: 0 0 15px rgba(255, 225, 120, 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(12px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(12px); }
}
