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

:root {
    --bg: #09090b;
    --card: rgba(20, 20, 25, 0.65);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #f59e0b; /* Amber */
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.25);
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --success: #10b981;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

/* Background Dynamic Glows */
.glow-orb {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -2;
    opacity: 0.45;
    animation: floating 25s infinite ease-in-out;
    mix-blend-mode: screen;
}

@media (max-width: 600px) {
    .glow-orb { width: 200px; height: 200px; filter: blur(80px); }
}

.orb-1 {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%); /* Amber */
    top: -80px;
    left: -80px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.orb-2 {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%); /* Blue */
    bottom: -120px;
    right: -80px;
    animation-duration: 24s;
    animation-delay: -6s;
}

.orb-3 {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); /* Purple */
    top: 35%;
    right: -120px;
    animation-duration: 20s;
    animation-delay: -12s;
}

.orb-4 {
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%); /* Cyan */
    bottom: 35%;
    left: -120px;
    animation-duration: 28s;
    animation-delay: -18s;
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

main {
    width: 100%;
    max-width: 750px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    margin-bottom: 1.2rem;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    animation: fadeInUp 0.7s ease-out;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    animation: fadeInUp 0.9s ease-out;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 3rem; }
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.stat-icon {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
    background: rgba(245, 158, 11, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.status-badge {
    color: var(--success);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Form Section */
.form-container {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    background: linear-gradient(to right, #ffffff, #d4d4d8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 1.5rem; }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e4e4e7;
}

input, textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.currency-input {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-input input {
    width: 100%;
    padding-left: 2.2rem;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
    filter: brightness(1.1);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer Section */
footer {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: fadeInUp 1.1s ease-out;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #d4d4d8;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 0.5rem;
}

.trust-badge i {
    color: var(--success);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast Notification (Created by JS) */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    animation: slideIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Keywords Section */
.keywords-section {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeInUp 1.1s ease-out;
}

.keywords-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e4e4e7;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.keyword-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: default;
}

.keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

/* Colored keyword tags */
.color-1 { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.3); color: #f59e0b; }
.color-2 { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.3); color: #60a5fa; }
.color-3 { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.3); color: #34d399; }
.color-4 { background: rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.3); color: #a78bfa; }
.color-5 { background: rgba(244, 63, 94, 0.08); border-color: rgba(244, 63, 94, 0.3); color: #fb7185; }
