/* Admin specific styles */

:root {
    --background: #080808;
    --foreground: #ffffff;
    --primary: #FF8C00;
    --secondary: #4ade80;
    /* bright green for secondary accents */
    --accent: #34d399;
    /* light mint green */
    --muted: #888888;
    --card: #121212;
    --card-foreground: #ffffff;
    --border: #333333;
}

.gradient-gold-text {
    background: linear-gradient(to right, #FF8C00, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 185, 123, 0.5);
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(0, 185, 123, 0.05), rgba(52, 211, 153, 0.05));
}

.gold-text {
    color: #FF8C00;
}

.gold-neon-border {
    border: 1px solid #FF8C00;
    box-shadow: 0 0 8px rgba(0, 185, 123, 0.7), 0 0 15px rgba(52, 211, 153, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.gold-neon-border:hover {
    box-shadow: 0 0 20px rgba(0, 185, 123, 0.9), 0 0 10px rgba(52, 211, 153, 0.7);
}

.gold-glass-effect {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 185, 123, 0.4);
    box-shadow: 0 4px 30px rgba(0, 185, 123, 0.15);
    transition: all 0.3s ease;
}

.gold-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 185, 123, 0.2);
    box-shadow: 0 4px 30px rgba(0, 185, 123, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.gold-button {
    background-color: #FF8C00;
    color: #000000;
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gold-button:hover {
    background-color: #34d399;
    box-shadow: 0 0 15px rgba(0, 185, 123, 0.7);
    transform: translateY(-1px);
}

.gold-outline-button {
    background-color: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gold-outline-button:hover {
    background-color: rgba(0, 185, 123, 0.15);
    box-shadow: 0 0 15px rgba(0, 185, 123, 0.5);
    transform: translateY(-1px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes gold-pulse-glow {
    0% {
        box-shadow: 0 0 5px 0 rgba(0, 185, 123, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(0, 185, 123, 0.2);
    }

    100% {
        box-shadow: 0 0 5px 0 rgba(0, 185, 123, 0.4);
    }
}

.animate-gold-pulse {
    animation: gold-pulse-glow 3s ease-in-out infinite;
}

/* High contrast UI elements */
.high-contrast-card {
    background-color: #121212;
    border: 1px solid #333333;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.high-contrast-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, #FF8C00, transparent);
    margin: 1.5rem 0;
}

.high-contrast-input {
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.high-contrast-input:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 2px rgba(0, 185, 123, 0.2);
    outline: none;
}

.high-contrast-badge {
    background-color: #1a1a1a;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    display: inline-flex;
    align-items: center;
}

.high-contrast-badge.success {
    border-color: #4ade80;
    color: #4ade80;
}

.high-contrast-badge.error {
    border-color: #f87171;
    color: #f87171;
}