/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 100vh;
    color: #333;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #ff00cc, #333399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: #2d3748;
}

.text-muted {
    color: #718096 !important;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background-color: #ffffff;
    border-top: 6px solid #ff00cc;
    transition: transform 0.3s ease;
}

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

.card-title {
    color: #1a202c;
    font-weight: 700;
}

.list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    font-weight: 500;
}

/* Form Controls */
.form-label {
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: #2d3748;
    background-color: #f7fafc;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff00cc;
    box-shadow: 0 0 0 4px rgba(255, 0, 204, 0.1);
    background-color: #fff;
    outline: none;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff00cc 0%, #333399 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(255, 0, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #333399 0%, #ff00cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 0, 204, 0.4);
}

.btn-outline-primary {
    color: #333399;
    border: 2px solid #333399;
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-check:checked+.btn-outline-primary {
    background: linear-gradient(135deg, #333399 0%, #ff00cc 100%);
    color: #fff !important;
    border-color: transparent;
}

/* Fee Display */
#fee-display {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%) !important;
    border: 2px dashed #ff00cc;
    border-radius: 12px;
    color: #333399;
}

/* Countdown Timer */
#countdown-timer {
    background: linear-gradient(135deg, #ff00cc 0%, #333399 100%) !important;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Utility */
.text-primary {
    color: #333399 !important;
}

.bg-light {
    background-color: #f7fafc !important;
}

/* Adjustments for icons */
.bi {
    vertical-align: -0.125em;
    color: #ff00cc;
}