/* WEBIGO GLASS-MORPHISM MASTER THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Background Gradients */
.gradient-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.secondary-gradient {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
}

/* Glass Morphism Cards */
.glass-card {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

/* Navigation Styling */
.glass-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(45deg, #7c3aed, #3b82f6);
    color: white;
}

/* Buttons */
.glass-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.glass-button-primary {
    background: linear-gradient(45deg, #7c3aed, #3b82f6);
    border: none;
    color: white;
}

.glass-button-primary:hover {
    background: linear-gradient(45deg, #6d28d9, #2563eb);
}

/* Form Elements */
.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.glass-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
}

/* Fix dropdown option height - added for dropdown readability */
.glass-input option,
.glass-select option,
select.glass-input option {
    background: rgba(30, 30, 50, 0.95) !important;
    color: white !important;
    padding: 8px 12px !important;
    line-height: 1.2 !important;
    min-height: auto !important;
    height: auto !important;
}

/* Force dropdown text to be visible */
.glass-select option {
    background-color: #1e293b !important;
    color: #ffffff !important;
}

.glass-select option:hover {
    background-color: #334155 !important;
    color: #ffffff !important;
}

/* Fix excessive dropdown height in select elements */
select.glass-input {
    min-height: 50px;
    max-height: 50px;
    overflow-y: visible;
}

select.glass-input:focus,
select.glass-input:active {
    max-height: 200px;
    overflow-y: auto;
}

/* Badges and Tags */
.premium-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.basic-badge {
    background: #6b7280;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.status-pending {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
}

.status-inactive {
    background: #6b7280;
    color: white;
}

/* Stats Cards */
.stats-card {
    background: rgba(30, 30, 50, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stats-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

/* Color Variants */
.text-green { color: #10b981; }
.text-blue { color: #3b82f6; }
.text-purple { color: #8b5cf6; }
.text-pink { color: #ec4899; }
.text-yellow { color: #f59e0b; }
.text-red { color: #ef4444; }

/* Headers */
.glass-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.glass-header .content {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .glass-card {
        margin: 10px;
        padding: 20px;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .glass-header {
        padding: 60px 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Grid System */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
	/* Avatar Image Fix */
.character-preview {
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.character-preview img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    display: block;
}
}/* CSS Document */

