#spa-popup {
    position: fixed;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:30px;
    border-radius:16px;
    display:none;
    max-width:400px;
    width:90%;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,0.2);
    font-family:Arial;
    overflow:hidden;
}

/* ==========================
   DESKTOP 80% (UPPDATERAD)
========================== */
@media (min-width:768px){
    #spa-popup{
        width:80vw;       /* 🔥 från 60 → 80 */
        max-width:1200px; /* 🔥 lite större max */
        padding:40px;     /* lite luftigare */
    }
}

/* ==========================
   CONTENT
========================== */

#spa-content h2 {
    font-size:22px;
    margin-bottom:10px;
}

#spa-content p {
    color:#666;
    margin-bottom:15px;
}

#spa-content ul {
    text-align:left;
    margin-bottom:20px;
}

#spa-content li {
    margin:5px 0;
}

/* ==========================
   ANNONS BILD
========================== */

.spa-ad-image {
    max-width:100%;
    height:auto;
    border-radius:12px;
    display:block;
    margin:0 auto 20px auto;
}

@media (min-width:768px){
    .spa-ad-image{
        max-height:65vh;   /* 🔥 lite större */
        object-fit:contain;
    }
}

/* ==========================
   START KNAPP
========================== */

#spa-start {
    background:#28a745;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

#spa-start:hover {
    background:#218838;
}

/* ==========================
   KNAPP DESIGN
========================== */

.spa-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin: 5px;
    transition: all 0.2s ease;
}

/* JA */
.spa-yes {
    background: #1e293b;
    color: #fff;
}

.spa-yes:hover {
    background: #0f172a;
}

/* NEJ */
.spa-no {
    background: #e5e7eb;
    color: #111;
}

.spa-no:hover {
    background: #d1d5db;
}

/* CTA */
.spa-primary {
    background: #2563eb;
    color: #fff;
    font-weight: 500;
}

.spa-primary:hover {
    background: #1d4ed8;
}