/* General Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Admin Login Styles */
.admin-login {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Admin Dashboard Styles */
.admin-dashboard .stats-card {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

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

.admin-dashboard .stats-card h5 {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.admin-dashboard .stats-card h2 {
    color: #1e293b;
    font-weight: 700;
}

/* Homepage Styles */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
}

.url-form {
    position: relative;
    z-index: 1;
}

.features-card {
    transition: transform 0.2s;
}

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

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .login-container {
        padding: 1rem;
    }
}