/* Main Styles */
:root {
    --primary-color: #9b43ad;
    --primary-light: #b366c2;
    --primary-dark: #7a3488;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-dark {
    background-color: var(--dark-color) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Card Styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

/* Badge Styles */
.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

/* Footer Styles */
footer {
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
    color: white;
}

.page-header h1 {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #7a3488;
    border-color: #7a3488;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tables */
.table {
    margin-bottom: 0;
}

.table thead th {
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.table tbody tr:hover {
    background-color: var(--light-color);
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #9b43ad;
    box-shadow: 0 0 0 0.2rem rgba(155, 67, 173, 0.25);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 0.5rem;
    border-left: 4px solid;
}

.alert-danger {
    border-left-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.alert-success {
    border-left-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0 !important;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Utility Classes */
.text-muted {
    color: #111 !important;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Link Styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #7a3488;
    text-decoration: underline;
}

/* Container Padding */
.container {
    padding: 0 15px;
}

/* Main Content Area */
main {
    min-height: calc(100vh - 200px);
}


/*HOME PAGE*/
        .hero-gradient {
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
            color: white;
        }
        
        .feature-card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
        }
        
        .feature-card2 {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            background: #eee;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #9b43ad;
            margin-bottom: 15px;
        }
        
        .cta-button {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
            border: none;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #7a3488 0%, #9b43ad 100%);
            color: white;
            transform: scale(1.05);
        }
        
        .competition-counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: #9b43ad;
        }
        .form-check-input {
        	border: var(--bs-border-width) solid var(--bs-secondary-color);
		}
		
		.bg-primary{
		    background: #7a3488 !important;
		}
		
/* Login */
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
        }
        
        .login-card {
            max-width: 400px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 10px;
            background: white;
        }
        
        .login-header {
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
            color: white;
            padding: 30px;
            border-radius: 10px 10px 0 0;
            text-align: center;
        }
        
        .form-control:focus {
            border-color: #7a3488;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .btn-login {
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
            border: none;
        }
        
        .btn-login:hover {
            background: linear-gradient(135deg, #9b43ad 0%, #7a3488 100%);
            box-shadow: 0 5px 15px #7a3488;
        }
        
        .alfa-slab-one-regular {
		  font-family: "Alfa Slab One", serif;
		  font-weight: 400;
		  font-style: normal;
		}
		
		.titan-one-regular {
 		 font-family: "Titan One", sans-serif;
 		 font-weight: 400;
 		 font-style: normal;
 		 color: purple;
		}