* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset everything to make sure no conflicts with WordPress */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    overflow-y: auto;
}

.container {
    max-width: 520px;
    width: 100%;
    text-align: center;
    padding: 10px 20px 30px;
}

.badge-section {
    margin-bottom: 15px;
}

.verified-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    animation: badgePop 0.5s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.profile-section {
    margin-bottom: 20px;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #38bdf8;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
    max-width: 100%;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Make sure all images are constrained */
img {
    max-width: 100%;
    height: auto;
}

.online-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #10b981;
    border: 4px solid #0f172a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

h1 {
    color: #ffffff;
    font-size: 2.3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tagline {
    color: #60a5fa;
    font-size: 1.2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #93c5fd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(30, 41, 59, 0.9);
    padding: 22px 10px;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-card h2 {
    color: #38bdf8;
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-card p {
    color: #94a3b8;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 35px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn:hover {
    transform: translateY(-6px) scale(1.05);
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.7);
}

.btn-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.7);
}

.pulse-btn {
    animation: pulse-btn 1.5s infinite, bounce 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 12px 60px rgba(59, 130, 246, 1), 0 0 30px rgba(59, 130, 246, 0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-pink.pulse-btn {
    animation: pulse-btn-pink 1.5s infinite, bounce 2s infinite;
}

@keyframes pulse-btn-pink {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.7);
    }
    50% {
        box-shadow: 0 12px 60px rgba(236, 72, 153, 1), 0 0 30px rgba(236, 72, 153, 0.5);
    }
}

.btn-icon {
    font-size: 1.5rem;
}

.features-section {
    text-align: left;
    margin-bottom: 30px;
    background: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.features-list {
    list-style: none;
}

.features-list li {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 12px 0;
    padding-left: 5px;
    line-height: 1.5;
}

.testimonials-section {
    margin-bottom: 30px;
}

.testimonials-section h3 {
    color: #60a5fa;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 12px;
    text-align: left;
}

.testimonial-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-author {
    color: #94a3b8;
    font-size: 0.85rem;
    text-align: right;
}

.activity-section {
    margin-bottom: 20px;
}

.activity-notification {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.activity-notification p {
    color: #e0f2fe;
    font-size: 1rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .stat-card h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 15px 10px;
    }
    
    .btn {
        padding: 18px 25px;
        font-size: 1.2rem;
    }
    
    .btn-icon {
        font-size: 1.3rem;
    }
    
    .trust-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .verified-badge {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
}
