/* Custom styles for AgtMint - Agentic Launchpad */

:root {
    --mint: #00f5a0;
    --cyan: #00d9f5;
    --dark-bg: #0f0c29;
    --dark-bg-2: #24243e;
}

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    min-height: 100vh;
}

/* Glass-morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 160, 0.3);
    transform: translateY(-2px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accent button */
.btn-accent {
    background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 100%);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 245, 160, 0.3);
}

/* Outline button */
.btn-outline {
    border: 2px solid var(--mint);
    color: var(--mint);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--mint);
    color: #000;
    transform: translateY(-2px);
}

/* Status badges */
.badge-active {
    background: rgba(0, 245, 160, 0.2);
    color: var(--mint);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-paused {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-stopped {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.08);
}

/* Star rating */
.stars {
    color: #ffc107;
}

/* Agent icon */
.agent-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Hero section */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Error message */
.error-message {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Success message */
.success-message {
    background: rgba(0, 245, 160, 0.2);
    border: 1px solid var(--mint);
    color: var(--mint);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
