:root {
    --tiktok-black: #010101;
    --tiktok-pink: #FE2C55;
    --tiktok-cyan: #25F4EE;
    --tiktok-purple: #A020F0;
    --tiktok-white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray-light: #f5f5f5;
    --shadow: 0 10px 30px rgba(254, 44, 85, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--tiktok-black);
    color: var(--tiktok-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

a{
    text-decoration: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-purple));
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.circle1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.circle2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.circle3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

/* Header */
.header {
    padding: 20px 0;
    backdrop-filter: blur(10px);

    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    gap: 10px;
}

.logo i {
    color: var(--tiktok-pink);
    font-size: 32px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(254, 44, 85, 0.2);
}

.stat-item i {
    color: var(--tiktok-cyan);
    font-size: 24px;
}

.counter {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.stat-item small {
    color: #888;
    font-size: 12px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-purple));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 40px;
}

.live-counter {
    margin: 30px 0;
}

.counter-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(254, 44, 85, 0.1);
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid var(--tiktok-pink);
}

.counter-box i {
    color: var(--tiktok-pink);
    font-size: 32px;
}

.live-count {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(254, 44, 85, 0.2);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--tiktok-pink);
}

.feature i {
    font-size: 40px;
    color: var(--tiktok-cyan);
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    color: #bbb;
    font-size: 14px;
}

/* User Form */
.user-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border: 2px solid rgba(254, 44, 85, 0.3);
    backdrop-filter: blur(10px);
}

.user-form-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tiktok-cyan);
    font-size: 20px;
}

.input-with-icon input {
    width: 100%;
    padding: 15px 20px 15px 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--tiktok-pink);
    background: rgba(255, 255, 255, 0.15);
}

.input-hint {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #bbb;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--tiktok-cyan);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.checkbox-container input:checked + .checkmark {
    background: var(--tiktok-cyan);
}

.checkbox-container input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: black;
    font-weight: bold;
    left: 4px;
    top: -2px;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-purple));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.3);
}

.button-subtext {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #bbb;
}

/* Social Proof */
.social-proof {
    margin-top: 60px;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.user-avatar {
    position: relative;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--tiktok-pink);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--tiktok-cyan);
    color: black;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars {
    color: #FFD700;
    margin: 5px 0;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    border: 2px solid rgba(254, 44, 85, 0.2);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--tiktok-pink);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-cyan));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.step i {
    font-size: 60px;
    margin: 20px 0;
    background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .user-form-container {
        padding: 20px;
    }
}