* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', 'Apple Color Emoji', 'Segoe UI Emoji', system-ui, -apple-system, sans-serif;
}

body {
    background: #e4dcd4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.whatsapp-card {
    width: 100%;
    max-width: 440px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 20px 20px 28px 20px;
    border: 1px solid rgba(220, 220, 220, 0.5);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.wa-header i {
    color: #6c7a84;
    font-size: 1.2rem;
}

.wa-logo-img {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 2px;
}

.wa-header .brand-text {
    color: #303f4b;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    margin-left: 2px;
}

.wa-header .badge {
    margin-left: auto;
    background: #e6f0f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #1f3a4b;
    white-space: nowrap;
    border: 1px solid #cbdbe5;
}

.badge i {
    font-size: 0.65rem;
    margin-right: 3px;
    color: #25a56a;
}

.message-wrapper {
    background-image: url('../images/whatsbg.jpg');
    background-color: #e5ddd6;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding: 22px 20px 26px 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(190, 180, 170, 0.3);
}

.main-text {
    color: #1e2a32;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
    word-break: break-word;
}

.adult-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.icon-circle {
    background: rgba(245, 235, 225, 0.9);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cfbeb0;
}

.icon-circle i {
    font-size: 2.2rem;
    color: #c4624b;
}

.badge-18 {
    background: #f3776b;
    padding: 7px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.75rem;
    color: #ffffff;
    letter-spacing: 2px;
    border: 1px solid #ffb7a5;
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #3e5a6b;
    font-size: 0.8rem;
    font-weight: 400;
    background: rgba(255, 245, 235, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    width: fit-content;
}

.meta-tag i {
    font-size: 0.7rem;
    color: #25a56a;
}

.btn-wa {
    display: block;
    width: 100%;
    background: #25a56a;
    border: none;
    border-radius: 30px;
    padding: 20px 20px;
    color: white;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(37, 165, 106, 0.3);
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 10px;
}

.btn-wa:hover {
    background: #1f8e59;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 165, 106, 0.35);
}

.btn-wa:active {
    background: #187a48;
    transform: translateY(0);
}

.wa-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: #526e7c;
    font-size: 0.75rem;
    background: #f6f2ee;
    padding: 7px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #d6ccc2;
}

.wa-footer i {
    color: #2e7f5e;
}

@media (max-width: 420px) {
    .main-text {
        font-size: 1.4rem;
    }
    .badge-18 {
        font-size: 1.5rem;
        padding: 5px 16px;
    }
    .btn-wa {
        font-size: 1.6rem;
        padding: 18px 16px;
    }
    .whatsapp-card {
        padding: 18px 18px 26px;
    }
}

.fa-crown {
    color: #d68b40 !important;
    opacity: 0.9;
    margin-left: auto;
    font-size: 1.7rem !important;
}
