/* SplashLink - Public Styles */

/* Shortcode link */
a.splashlink-link {
    color: #0073aa;
    text-decoration: underline;
    transition: color 0.3s;
}
a.splashlink-link:hover {
    color: #00a0d2;
}

/* WhatsApp button */
a.splashlink-whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}
a.splashlink-whatsapp-btn:hover {
    background-color: #128C7E;
    color: #fff;
}

/* Cookie info */
.splashlink-cookie-info {
    background: #f0f8ff;
    border: 1px solid #b8daff;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
}

/* Popup overlay */
#splashlink-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#splashlink-popup {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: splashlinkFadeIn 0.3s;
}

.splashlink-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
}
.splashlink-popup-close:hover {
    color: #333;
}

.splashlink-popup-content {
    text-align: center;
}

.splashlink-popup-content h2 {
    margin: 0 0 15px;
    font-size: 24px;
}

.splashlink-popup-content p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #555;
}

.splashlink-popup-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}
.splashlink-popup-button:hover {
    background: #c0392b;
    color: #fff;
}

@keyframes splashlinkFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}