.plot-details-section {
    padding: 70px 0;
    background: radial-gradient(circle at center, #0c1a2a, #07111c);
    display: flex;
    justify-content: center;
    animation: fadeIn 1.2s ease-in-out;
}

.plot-container {
    max-width: 1300px;
    width: 90%;
    display: flex;
    gap: 45px;
    align-items: center;
    flex-wrap: wrap;
}

.plot-image-box {
    flex: 1;
    position: relative;
    animation: floatUp 1.8s ease-in-out;
}

.plot-main-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 255, 219, 0.25);
}

.rarity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.rarity-legendary { background: linear-gradient(45deg, #5b2eff, #c026d3); }

.plot-info-box {
    flex: 1.2;
    animation: fadeSlide 1.4s ease-in-out;
}

.plot-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.plot-subtitle {
    font-size: 18px;
    color: #9cb6ca;
    margin-bottom: 35px;
}

.plot-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-label { color: #9dbdd7; font-size: 14px; }
.stat-value { color: #fff; font-size: 19px; font-weight: 700; }

.plot-price-box { margin: 35px 0; }
.plot-price { font-size: 34px; font-weight: 800; color: #ffe26f; }
.plot-usdc { font-size: 15px; color: #8aa2bc; }

.plot-buy-btn {
    padding: 15px 40px;
    background: #f7c410;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}
.plot-buy-btn:hover {
    background: #ffdd35;
    box-shadow: 0 0 12px rgba(255, 222, 77, 0.6);
}

/* Animations */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes fadeSlide { from {opacity:0;transform:translateX(50px);} to {opacity:1;transform:translateX(0);} }
@keyframes floatUp { 0% {transform:translateY(20px);} 50% {transform:translateY(-8px);} 100% {transform:translateY(20px);} }
