.slot-hero {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    text-align: center;
    color: white;
}

.dusk-princess{
width : 200px;
}
.hero-bg-blur {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    filter: blur(20px) brightness(0.4);
    z-index: -1;
}
.review-main-img {
    /* This forces the image to never be wider than its parent container */
    max-width: 100%; 
    
    /* SET YOUR DESIRED SIZE HERE */
    width: 900px; 
    
    /* Keeps the image from looking squashed */
    height: auto; 
    
    display: block;
    margin: 20px 0; /* Adds spacing above and below */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#dreamland {
    text-align: center; /* Centers the heading and the paragraph text */
}

.provider-label {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.quick-stats-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat label {
    display: block;
    font-size: 0.7rem;
    color: #ccc;
    margin-bottom: 5px;
}

.stat .val { font-weight: bold; font-size: 1.2rem; }
.val.high { color: #ff4d4d; }
.val.gold { color: var(--primary); }

/* Layout */
.review-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: auto;
}

.review-body h2 {
    color: var(--primary);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-top: 40px;
}

.sidebar-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    position: sticky;
    top: 20px;
}

.btn-cta {
    display: block;
    background: var(--primary);
    color: black;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}