/* ===== ADDITIONAL COMPONENT STYLES ===== */

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--tally-cyan), var(--tally-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-purple {
    background: var(--tally-purple);
    color: white;
}

.badge-cyan {
    background: var(--tally-cyan);
    color: var(--tally-purple-hover);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--tally-purple);
    color: var(--tally-purple);
}

/* Icon Wrappers */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tally-purple-light);
}

.icon-circle svg {
    width: 28px;
    height: 28px;
    fill: var(--tally-purple);
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
}

.icon-circle-lg svg {
    width: 40px;
    height: 40px;
}

/* Dividers */
.divider {
    height: 1px;
    background: var(--tally-border);
    margin: 40px 0;
}

.divider-white {
    background: rgba(255, 255, 255, 0.1);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--tally-border);
    border-top-color: var(--tally-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--tally-dark);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--tally-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--tally-purple);
    box-shadow: 0 0 0 3px var(--tally-purple-light);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alert/Notice Boxes */
.notice {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.notice-info {
    background: var(--tally-cyan-light);
    border-left: 4px solid var(--tally-cyan);
    color: var(--tally-dark);
}

.notice-success {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    color: var(--tally-dark);
}

.notice-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    color: var(--tally-dark);
}

.notice-error {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #F44336;
    color: var(--tally-dark);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 40px; }

/* Spacing Utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 60px; padding-bottom: 60px; }
