@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Outfit:wght@400;600;800&display=swap');

:root {
    --primary: #FF1493; /* Deep Pink */
    --primary-light: #FF69B4; /* Hot Pink */
    --primary-dark: #C71585; /* Medium Violet Red */
    --accent: #FF007F; /* Rose */
    --bg-gradient: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
    --white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 20, 147, 0.1);
    --shadow: 0 10px 30px rgba(255, 20, 147, 0.15);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.logo span {
    color: var(--text-main);
}

.hero {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-main);
}

.hero h1 mark {
    background: transparent;
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--white);
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.5);
}

.cta-button i {
    font-size: 1.5rem;
}

.counter {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.counter .dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ADE80;
    animation: pulse 2s infinite;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 20, 147, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Mobile Tweaks */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .container { padding: 15px; }
}
