/* Digital Locker Room - AssistTrainer Community */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #3b82f6;
    --primary-dark: #8b5cf6;
    --bg-dark: #0f172a;
    --bg-card: rgba(26, 31, 58, 0.8);
    --bg-input: #0f172a;
    --border: rgba(59, 130, 246, 0.15);
    --border-hover: rgba(59, 130, 246, 0.3);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --success: #22c55e;
    --danger: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 50%, #0f172a 100%);
    color: var(--text);
    min-height: 100vh;
}

/* Navigation */
nav {
    background: #1a1f3a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.lang-switch {
    display: inline-flex;
    margin-left: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    overflow: hidden;
}
.lang-switch a {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 !important;
}
.lang-switch a.active {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}
.lang-switch a:hover { color: #3b82f6; }
.nav-links button {
    margin-left: 1rem;
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}
.nav-links button:hover { border-color: var(--primary); color: var(--primary); }

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem; }

/* Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: var(--border-hover);
}
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--primary); font-size: 1.1rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    flex-wrap: wrap;
    margin-top: 2rem;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { color: var(--text-muted); font-size: 0.875rem; }

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.card:hover { border-color: var(--border-hover); }
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.card-title:hover { color: var(--primary); }
.card-meta { font-size: 0.8rem; color: var(--text-muted); margin: 0.5rem 0; display: flex; gap: 1rem; }

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.page-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(59,130,246,0.3); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.2s;
}
.btn-icon:hover { background: rgba(59,130,246,0.15); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(59,130,246,0.2);
    background: var(--bg-input);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; display: block; }
.char-count { float: right; font-size: 0.75rem; color: var(--text-muted); }

/* Search Bar */
.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.search-bar .form-control { flex: 1; min-width: 200px; }
.search-bar select.form-control { flex: 0 0 180px; }

/* Tags */
.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(59,130,246,0.15);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tag-success { background: rgba(34,197,94,0.15); color: var(--success); }
.tag-clickable { cursor: pointer; transition: all 0.2s; }
.tag-clickable:hover, .tag-clickable.active { background: var(--primary); color: white; }
.popular-tags { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; width: 100%; }
.tag-label { color: var(--text-muted); font-size: 0.875rem; }

/* Posts Feed */
.posts-feed { display: flex; flex-direction: column; gap: 1rem; }
.post-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.post-author { display: flex; gap: 0.75rem; align-items: center; }
.author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.875rem; flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.post-date { font-size: 0.75rem; color: var(--text-muted); }
.post-actions { display: flex; gap: 0.25rem; }
.post-content p { margin-bottom: 1rem; line-height: 1.6; }
.post-image { max-width: 100%; border-radius: 8px; margin-bottom: 1rem; }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.post-link { color: var(--primary); text-decoration: none; font-size: 0.875rem; }
.post-link:hover { text-decoration: underline; }

/* Job Cards */
.job-header { display: flex; justify-content: space-between; align-items: start; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-desc { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.job-footer { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }

/* Radio Group */
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-label {
    display: flex; flex-direction: column; padding: 1rem;
    border: 2px solid rgba(59,130,246,0.2); border-radius: 8px;
    cursor: pointer; flex: 1; min-width: 140px;
}
.radio-label:has(input:checked) { border-color: var(--primary); background: rgba(59,130,246,0.05); }
.radio-label input { margin-bottom: 0.5rem; }
.radio-text { font-weight: 600; }
.radio-label small { color: var(--text-muted); font-size: 0.75rem; }

/* Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
    z-index: 1000; padding: 1rem;
}
.modal {
    background: #1a1f3a; border-radius: 12px; padding: 2rem;
    max-width: 500px; width: 100%; max-height: 90vh; overflow-y: auto;
    border: 1px solid var(--border);
}
.modal h2 {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text);
}
.modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.modal-small { max-width: 400px; }
.modal-small p { margin-bottom: 1rem; color: var(--text-muted); }

/* Upload */
.upload-area { display: flex; gap: 0.5rem; align-items: center; }
.file-input { display: none; }
.upload-btn { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Existing image in edit */
.existing-image { margin-bottom: 1rem; }
.existing-image img { max-width: 200px; max-height: 150px; border-radius: 8px; display: block; margin-bottom: 0.5rem; }
.removed-notice { background: rgba(239,68,68,0.1); padding: 0.75rem; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.removed-notice span { color: var(--danger); font-size: 0.875rem; }

/* Login Box */
.login-box {
    max-width: 420px; margin: 4rem auto;
    background: var(--bg-card); border-radius: 12px; padding: 2.5rem;
    border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.login-box h2 {
    text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.login-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.login-tab {
    flex: 1; padding: 10px; text-align: center; cursor: pointer; font-weight: 600;
    font-size: 14px; color: var(--text-muted); background: transparent; border: none; transition: all 0.3s;
}
.login-tab.active { background: rgba(59,130,246,0.15); color: var(--primary); }
.btn-full { width: 100%; }
.error-msg { background: rgba(239,68,68,0.15); color: #f87171; padding: 10px 14px; border-radius: 8px; margin-bottom: 1rem; font-size: 13px; border: 1px solid rgba(239,68,68,0.2); }
.success-msg { background: rgba(34,197,94,0.15); color: #4ade80; padding: 10px 14px; border-radius: 8px; margin-bottom: 1rem; font-size: 13px; border: 1px solid rgba(34,197,94,0.2); }

/* No Results */
.no-results { text-align: center; color: var(--text-muted); padding: 3rem; }

/* Footer */
footer {
    background: #1a1f3a; border-top: 1px solid var(--border);
    padding: 2rem; text-align: center; color: var(--text-muted); font-size: 13px;
}
footer a { color: var(--primary); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    nav { padding: 1rem; }
    .nav-links a { margin-left: 0.75rem; font-size: 13px; }
    .search-bar { flex-direction: column; }
    .search-bar select.form-control { flex: 1; }
    .page-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats { gap: 1.5rem; }
}
/* Profile Styles - AssistTrainer Community */

/* Profile Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: linear-gradient(135deg, var(--primary), var(--primary-dark));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-avatar .avatar-initials {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}
.profile-info { flex: 1; min-width: 0; }
.profile-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-headline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.profile-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.profile-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Profile Page */
.profile-page {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
}
.profile-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
}
.profile-header {
    display: flex;
    gap: 1.5rem;
    margin-top: -50px;
    padding: 0 2rem;
    align-items: flex-end;
    flex-wrap: wrap;
}
.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.profile-avatar-large .avatar-initials {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
}
.profile-header-info {
    flex: 1;
    padding-bottom: 0.5rem;
    min-width: 200px;
}
.profile-header-info h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}
.profile-header-info .profile-headline {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.profile-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.profile-actions {
    padding-bottom: 0.5rem;
}
.profile-content {
    padding: 2rem;
}
.profile-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.profile-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Profession Cards in Profile */
.profession-card {
    background: rgba(59,130,246,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}
.profession-card:last-child {
    margin-bottom: 0;
}
.profession-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.profession-name {
    font-weight: 700;
    font-size: 1rem;
}
.profession-headline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.profession-summary {
    font-size: 0.9rem;
    line-height: 1.6;
}
.availability-note {
    font-size: 0.85rem;
    color: var(--success);
    margin-top: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59,130,246,0.1);
    border-radius: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}
.social-link:hover {
    background: rgba(59,130,246,0.2);
}

/* Setup Wizard */
.setup-wizard {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
}
.setup-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 0.5rem;
}
.setup-progress .step {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-bottom: 3px solid var(--border);
    transition: all 0.3s;
}
.setup-progress .step.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}
.setup-progress .step.completed {
    color: var(--success);
    border-bottom-color: var(--success);
}
.setup-step h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.setup-hint {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.setup-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}

/* Profession Grid (Setup) */
.profession-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.profession-option {
    padding: 1rem 0.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.profession-option:hover {
    border-color: var(--border-hover);
}
.profession-option.selected {
    border-color: var(--primary);
    background: rgba(59,130,246,0.1);
}
.profession-option .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.profession-option .name {
    font-weight: 600;
    font-size: 0.8rem;
}

/* Edit Tabs */
.edit-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Profession Items (Edit) */
.profession-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(59,130,246,0.05);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.profession-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.profession-icon {
    font-size: 1.25rem;
}
.profession-item-actions {
    display: flex;
    gap: 0.5rem;
}

/* Small Tags */
.tag-sm {
    padding: 2px 8px;
    font-size: 10px;
}

/* Loading */
.loading {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -60px;
    }
    .profile-header-info {
        text-align: center;
    }
    .profile-badges {
        justify-content: center;
    }
    .setup-progress .step {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
    }
    .form-row {
        flex-direction: column;
    }
    .profession-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .edit-tabs {
        flex-wrap: wrap;
    }
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}


/* ============================================================
   EVENT SYSTEM STYLES
   ============================================================ */

.event-card {
    background: var(--card-bg, #1e293b);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.event-card:hover {
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.event-card h3 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin: 0;
}
.event-card h3 a {
    color: #e2e8f0;
    text-decoration: none;
}
.event-card h3 a:hover {
    color: #3b82f6;
}

/* Event Type Badges - Color Coded */
.event-type-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.event-type-badge.TRIAL { background: rgba(59,130,246,0.2); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.event-type-badge.SHOWCASE { background: rgba(168,85,247,0.2); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }
.event-type-badge.COMBINE { background: rgba(245,158,11,0.2); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.event-type-badge.ACADEMY_OPEN_DAY { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.event-type-badge.WORKSHOP { background: rgba(236,72,153,0.2); color: #f472b6; border: 1px solid rgba(236,72,153,0.3); }
.event-type-badge.NETWORKING { background: rgba(6,182,212,0.2); color: #22d3ee; border: 1px solid rgba(6,182,212,0.3); }
.event-type-badge.SCREENING { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.event-type-badge.POSITION_DAY { background: rgba(99,102,241,0.2); color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }

/* Event Status Badges */
.event-status-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.event-status-badge.PUBLISHED { background: rgba(34,197,94,0.2); color: #4ade80; }
.event-status-badge.DRAFT { background: rgba(148,163,184,0.2); color: #94a3b8; }
.event-status-badge.CLOSED { background: rgba(239,68,68,0.2); color: #f87171; }
.event-status-badge.CANCELLED { background: rgba(239,68,68,0.2); color: #f87171; }

/* Pricing Badges */
.pricing-badge {
    display: inline-block;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
}
.pricing-badge.FREE { background: rgba(34,197,94,0.15); color: #4ade80; }
.pricing-badge.PAID { background: rgba(245,158,11,0.15); color: #fbbf24; }
.pricing-badge.INVITE_ONLY { background: rgba(168,85,247,0.15); color: #c084fc; }

/* Event Card Meta */
.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #94a3b8;
}
.event-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Step Wizard */
.step-wizard {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148,163,184,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.step-dot.active {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59,130,246,0.5);
}
.step-dot.completed {
    background: #22c55e;
}

/* Session List */
.session-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.session-item {
    background: rgba(30,41,59,0.5);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: 8px;
    padding: 1rem;
}

/* Staff List */
.staff-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.staff-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(148,163,184,0.1);
}

/* Ticket Table */
.ticket-table {
    width: 100%;
    border-collapse: collapse;
}
.ticket-table th,
.ticket-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(148,163,184,0.1);
}
.ticket-table th {
    color: #94a3b8;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Event Detail Layout */
.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Event Detail Cards */
.event-detail-card {
    background: var(--card-bg, #1e293b);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.event-detail-card h2 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(59,130,246,0.1);
}

/* Sidebar Cards */
.event-sidebar-card {
    background: var(--card-bg, #1e293b);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

/* Registration Modal */
.event-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-modal {
    background: #1e293b;
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Position Chips in Cards */
.event-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.event-positions .pos-chip {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.7rem;
}

/* Event Type Radio Grid (Create Page) */
.event-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (max-width: 768px) {
    .event-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.event-type-option {
    border: 2px solid rgba(148,163,184,0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.event-type-option:hover {
    border-color: rgba(59,130,246,0.5);
}
.event-type-option.selected {
    border-color: #3b82f6;
    background: rgba(59,130,246,0.1);
}
