:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --bg-gradient-start: #f3f4f6;
    --bg-gradient-end: #e5e7eb;
    --card-bg: #ffffff;
    --hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header/Hero Section */
.hero-section {
    background-color: #fff;
    padding: 3rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.hero-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Card Container */
.agent-grid {
    padding-bottom: 3rem;
}

/* Agent Card Styling */
.agent-card {
    background: var(--card-bg);
    border: none;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none !important; /* Remove link underline */
    color: inherit;
}

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

.agent-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e7f1ff; /* Light blue bg for icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color var(--transition-speed);
}

.agent-card:hover .agent-icon-wrapper {
    background: var(--primary-color);
}

.agent-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.agent-icon-svg {
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.agent-card:hover .agent-icon {
    color: #ffffff;
}

.agent-card:hover .agent-icon-svg {
    color: #ffffff;
}

.agent-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.agent-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
}

.badge-active {
    background-color: #d1e7dd;
    color: #0f5132;
}

.badge-soon {
    background-color: #f8d7da;
    color: #842029;
}

/* Footer */
.footer {
    margin-top: auto;
    background: #fff;
    padding: 1.5rem 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .agent-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
}
