* {
    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: #0b141a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.whatsapp-card {
    width: 100%;
    max-width: 440px;
    background-color: #111b21;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 20px 20px 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.wa-header i {
    color: #8696a0;
    font-size: 1.2rem;
}

.wa-logo-img {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 2px;
    filter: brightness(1.2);
}

.wa-header .brand-text {
    color: #e9edef;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    margin-left: 2px;
}

.wa-header .badge {
    margin-left: auto;
    background: rgba(0, 128, 105, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #00a884;
    white-space: nowrap;
    border: 1px solid rgba(0, 168, 132, 0.2);
}

.badge i {
    font-size: 0.65rem;
    margin-right: 3px;
    color: #00a884;
}

.message-wrapper {
    background-image: url('../images/whatsbg.jpg?v=2');
    background-color: #0b141a;
    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(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.message-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 20, 30, 0.85) 100%);
    border-radius: 20px;
}

.message-wrapper > * {
    position: relative;
    z-index: 1;
}

.main-text {
    color: #e9edef;
    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(255, 255, 255, 0.08);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.icon-circle i {
    font-size: 2.2rem;
    color: #f76e6e;
}

.badge-18 {
    background: linear-gradient(135deg, #f76e6e, #e53e3e);
    padding: 7px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.75rem;
    color: #ffffff;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(247, 110, 110, 0.3);
}

.meta-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #8696a0;
    font-size: 0.8rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 10px;
    border-radius: 20px;
    width: fit-content;
}

.meta-tag i {
    font-size: 0.7rem;
    color: #00a884;
}

.btn-wa {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #00a884, #008069);
    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 16px rgba(0, 168, 132, 0.4);
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 10px;
}

.btn-wa:hover {
    background: linear-gradient(135deg, #009673, #006b54);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 168, 132, 0.5);
}

.btn-wa:active {
    background: linear-gradient(135deg, #008069, #005945);
    transform: translateY(0);
}

.wa-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: #8696a0;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 7px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-footer i {
    color: #00a884;
}

@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;
}
