/* style.css */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    --success-dark: #059669;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280; --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(142deg, #8171f1, #18bbf3);
    min-height: 100vh;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px;
    animation: particleFloat 30s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.container { max-width: 800px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    text-decoration: none; color: white; transition: all 0.3s ease;
    box-shadow: var(--shadow-lg); border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.btn-secondary { background: var(--gray-300); color: var(--gray-700); }
.btn-success { background: linear-gradient(135deg, var(--success), #16a34a); }

/* Paywall */
.paywall-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    opacity: 1; transition: opacity 0.5s ease;
}
.paywall-overlay.hidden { opacity: 0; pointer-events: none; }
.paywall-content {
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    border-radius: 32px; padding: 50px; max-width: 650px; text-align: center;
    box-shadow: var(--shadow-2xl); border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease-out;
}
.lock-icon { font-size: 4rem; margin-bottom: 20px; animation: pulse 2s infinite; }
.paywall-title {
    font-size: 2.5rem; font-weight: 900; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.paywall-subtitle { font-size: 1.2rem; color: var(--gray-600); margin-bottom: 30px; }
.preview-benefits {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.05));
    border-radius: 16px; padding: 25px; margin: 25px 0; text-align: left;
}
.preview-benefits h4 { color: var(--gray-800); margin-bottom: 15px; font-weight: 700; text-align: center; }
.benefit-list { list-style: none; }
.benefit-item { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; color: var(--gray-700); font-weight: 500; }
.benefit-item span { color: var(--success); }

/* Share Buttons */
.share-buttons { display: grid; gap: 15px; margin: 30px 0; }
.btn-share { position: relative; padding: 18px 30px; font-size: 1.1rem; }
.btn-twitter { background: linear-gradient(135deg, #1DA1F2, #0d8bd9); }
.btn-facebook { background: linear-gradient(135deg, #1877F2, #166fe5); }
.btn-linkedin { background: linear-gradient(135deg, #0A66C2, #004182); }
.share-status {
    position: absolute; top: -8px; right: -8px; width: 24px; height: 24px;
    border-radius: 50%; background: var(--success); color: white; font-size: 14px;
    display: none; align-items: center; justify-content: center; font-weight: bold;
}
.share-status.visible { display: flex; }

/* Alternative Unlock */
.alternative-unlock {
    margin-top: 30px; padding: 25px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning); border-radius: 16px;
}
.alternative-unlock h4 { color: #92400e; margin-bottom: 15px; font-weight: 700; }
.alternative-unlock p { color: #92400e; margin-bottom: 15px; }
.email-form { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.email-input {
    flex: 1; min-width: 200px; padding: 12px 16px;
    border: 2px solid var(--gray-300); border-radius: 10px; font-size: 16px;
}
.email-submit { border-radius: 10px; }
.form-hint { font-size: 0.8rem; color: #a16207; margin-top: 10px; margin-bottom: 0; }

/* Countdown */
.countdown-timer {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #f87171; border-radius: 16px; padding: 20px; margin: 20px 0;
}
.countdown-timer h4, .countdown-timer p { color: #dc2626; }
.countdown-timer h4 { margin-bottom: 10px; font-weight: 700; }
.timer-display { font-size: 1.5rem; font-weight: 800; color: #dc2626; margin: 10px 0; }

/* Main Content */
.main-content { opacity: 0.3; filter: blur(5px); pointer-events: none; transition: all 0.5s ease; }
.main-content.unlocked { opacity: 1; filter: blur(0); pointer-events: auto; }

/* Card & Hero Styles */
.card, .hero {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px;
    padding: 40px; margin-bottom: 30px; box-shadow: var(--shadow-xl);
}
.hero { text-align: center; border-radius: 32px; padding: 60px 40px; position: relative; overflow: hidden; animation: slideUp 0.8s ease-out; }
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.domain-name {
    font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.2; word-break: break-all;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle { font-size: 1.3rem; color: var(--gray-600); font-weight: 500; margin-bottom: 30px; }
.premium-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffb347); color: var(--gray-800);
    padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
    box-shadow: var(--shadow-lg); animation: pulse 2s infinite;
}
.price-section { text-align: center; }
.price {
    font-size: 4.5rem; font-weight: 900; margin-bottom: 15px; line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-subtitle { color: var(--gray-600); font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; }
.value-props {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; margin: 30px 0;
}
.value-prop { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; color: var(--gray-700); }
.card-title { font-size: 1.3rem; font-weight: 700; color: var(--gray-800); margin-bottom: 20px; }
.features-list { list-style: none; display: grid; gap: 15px; }
.feature-item {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--gray-700); font-weight: 500; padding: 10px 0;
}
.feature-item::before {
    content: '✓'; flex-shrink: 0;
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: white; width: 20px; height: 20px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 0.8rem;
}

/* Verification Modal */
.verification-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); z-index: 1001;
    display: none; /* Hide by default */
    align-items: center; justify-content: center;
    opacity: 0; /* Prepare for fade-in effect */
    transition: opacity 0.3s ease;
}

.verification-modal.visible {
    display: flex; /* Show it with this class */
    opacity: 1;
}
.verification-content {
    background: white; border-radius: 20px; padding: 40px; max-width: 500px;
    text-align: center; animation: slideUp 0.3s ease-out;
}
.modal-title { margin-bottom: 20px; color: var(--gray-800); }
.modal-text { color: var(--gray-600); font-size: 0.9rem; margin-top: 20px; }
.verification-steps { text-align: left; margin: 20px 0; }
.verification-step { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--gray-700); }
.step-icon {
    width: 24px; height: 24px; border-radius: 50%; background: var(--gray-200);
    display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px;
    transition: all 0.3s ease;
}
.step-icon.active { background: var(--primary); color: white; }
.step-icon.completed { background: var(--success); color: white; }

/* Success Popup */
.unlock-success {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--success), #059669); color: white;
    padding: 30px; border-radius: 20px; text-align: center; box-shadow: var(--shadow-2xl);
    z-index: 1002; opacity: 0; animation: successPop 0.5s ease-out forwards;
}
.unlock-success h3 { margin: 10px 0; font-size: 1.5rem; }
.unlock-success-icon { font-size: 3rem; margin-bottom: 15px; }

/* Animations */
@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -20px); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes successPop {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .paywall-content { padding: 30px 25px; margin: 20px; }
    .paywall-title { font-size: 2rem; }
    .btn-share { padding: 15px 25px; font-size: 1rem; }
    .email-form { flex-direction: column; }
    .email-input { min-width: auto; }
}