/* assets/css/main.css - 1990s nostalgic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2c3e50;
    line-height: 1.6;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 3px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.main-header h1 a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.main-nav a:hover {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    transform: translateY(-2px);
}

/* Main content */
.main-content {
    min-height: calc(100vh - 120px);
    padding: 30px 0;
}

/* Cards and sections */
.card {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #e74c3c;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #3498db;
    border-radius: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1em;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary { background: #3498db; }
.btn-success { background: #27ae60; }
.btn-warning { background: #f39c12; }
.btn-danger { background: #e74c3c; }

/* Forms */
.form-group {
    margin: 15px 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

/* Notifications */
.notification {
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: bold;
}

.notification-info { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.notification-success { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.notification-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.notification-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Status indicators */
.pass { color: #27ae60; font-weight: bold; }
.fail { color: #e74c3c; font-weight: bold; }
.info { color: #3498db; font-weight: bold; }

/* Footer */
.main-footer {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 0 15px;
    }
}
