/* Google Fonts - Hind Siliguri */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;600;700&display=swap');

:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --success: #00b894;
    --bg: #f0f3f7;
    --card-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: var(--bg);
    color: #2d3436;
    margin: 0;
    padding-bottom: 80px; /* For mobile spacing */
}

/* Header & Glassmorphism */
.header-box {
    background: linear-gradient(135deg, #6c5ce7, #0984e3);
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 30px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

/* Overview Cards */
.stat-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
}

.stat-card:hover { transform: translateY(-5px); }

/* Poll Design */
.poll-container {
    background: white;
    border-radius: 25px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary);
}

/* Modern Buttons */
.btn-app {
    border-radius: 15px;
    padding: 12px 20px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-app { background: var(--primary); color: white; }
.btn-success-app { background: var(--success); color: white; }

/* Input Fields */
.form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #dfe6e9;
    background: #f9f9f9;
}

/* Marquee Scrolling */
.payment-ticker {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    margin: 15px 0;
    border: 1px solid #eee;
    font-weight: 600;
    color: var(--success);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up { animation: fadeIn 0.6s ease-out; }