* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    overflow: visible;
    margin: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    max-width: 1200px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    flex: 1;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: 0;
}

.navbar-menu li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.navbar-menu li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-menu li a.active {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-end {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: visible;
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
    z-index: 1001;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.user-dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown.active .user-dropdown-btn i {
    transform: rotate(180deg);
}

.user-name {
    font-weight: 600;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1002;
    overflow: hidden;
}

.user-dropdown.active .user-dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item i {
    width: 18px;
    font-size: 16px;
    color: #667eea;
}

.dropdown-item:hover {
    background: #f5f7ff;
    color: #667eea;
}

.dropdown-item.active {
    background: #e8eeff;
    color: #667eea;
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.dropdown-item.logout-item {
    color: #ff4757;
}

.dropdown-item.logout-item i {
    color: #ff4757;
}

.dropdown-item.logout-item:hover {
    background: #fff5f5;
}

.user-info {
    font-weight: 500;
    font-size: 14px;
    opacity: 0.95;
}

.nav-btn {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border: 2px solid transparent;
    font-size: 14px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: rgba(255, 255, 255, 0.25);
}

.logout-btn {
    border: 2px solid white;
}

.logout-btn:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* User Dropdown Mobile Styles */
@media (max-width: 768px) {
    .user-dropdown-menu {
        position: fixed;
        top: 70px;
        right: 10px;
        left: auto;
        min-width: 200px;
        max-width: calc(100vw - 20px);
    }
    
    .user-dropdown-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .user-name {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar .container {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        gap: 0;
        z-index: 100;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu li a {
        display: block;
        width: 100%;
        font-size: 15px;
        padding: 15px;
    }
    
    .navbar-end {
        gap: 0.75rem;
    }

    .user-info {
        display: none;
    }
}

/* Dashboard Container */
.dashboard-container {
    padding: 30px 0 60px 0;
    min-height: calc(100vh - 200px);
}

/* Dashboard Hero Section */
.dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.dashboard-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.dashboard-hero p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.dashboard-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 4px solid #667eea;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.dashboard-card h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.dashboard-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-btn {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.card-btn:hover {
    border-bottom-color: #667eea;
    transform: translateX(5px);
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.2);
}

.stat-card h4 {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.premium-status-card {
    background: linear-gradient(135deg, #FFB800 0%, #FFA500 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-tier-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.premium-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sm.btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-sm.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
}

.profile-info h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.profile-info p {
    color: #999;
    font-weight: 500;
}

/* Profile Form */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.form-group small {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Message Alert */
.message {
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 4px solid;
    font-weight: 500;
    font-size: 0.95rem;
}

.message.success {
    background: #efe;
    color: #3c3;
    border-left-color: #3c3;
}

.message.error {
    background: #fee;
    color: #c33;
    border-left-color: #c33;
}

/* Buttons */
.profile-btn {
    padding: 13px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    color: #aaa;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .dashboard-container h1 {
        font-size: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-card {
        padding: 2rem;
    }
    
    .dashboard-grid,
    .quick-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== PREMIUM FEATURES ==================== */

.premium-locked {
    position: relative;
    opacity: 0.6;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: auto;
}

.premium-lock {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideUp 0.5s ease;
}

.premium-lock i {
    font-size: 4rem;
    color: #FFB800;
    margin-bottom: 1rem;
}

.premium-lock h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.premium-lock p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.premium-feature {
    cursor: pointer;
    opacity: 0.7;
    position: relative;
}

.premium-feature::after {
    content: '🔒';
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.premium-feature:hover {
    opacity: 1;
    color: #FFB800 !important;
}

/* Modal Backdrop and Container */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
    padding: 10px 15px;
}

.close:hover,
.close:focus {
    color: #000;
}

/* Premium Modal */
.premium-modal {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.premium-modal-content {
    padding: 2rem;
}

.premium-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-header i {
    font-size: 3rem;
    color: #FFB800;
    margin-bottom: 0.5rem;
}

.premium-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.premium-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.premium-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.tier-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tier-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    display: inline-block;
    background: #FFB800;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.tier-card.featured h3 {
    color: white;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tier-card.featured .price {
    color: white;
}

.price span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #555;
}

.tier-card.featured .features-list {
    color: rgba(255, 255, 255, 0.9);
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-card.featured .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.features-list i {
    color: #27ae60;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.tier-card.featured .features-list i {
    color: #7ec969;
}

.premium-footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 10px;
    margin-top: 2rem;
    color: #2c3e50;
    font-weight: 500;
}

.premium-footer strong {
    color: #FFB800;
    font-size: 1.1rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .premium-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: scale(1);
    }
    
    .tier-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }
    
    .premium-modal {
        width: 95%;
    }
    
    .premium-modal-content {
        padding: 1rem;
    }
}

/* Inline Message Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* People Discovery Section */
.people-discovery-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    animation: fadeIn 0.5s ease-in;
}

.people-discovery-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.people-discovery-section h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.people-discovery-section > div:first-child p {
    color: #666;
    font-size: 0.95rem;
}

/* Skills Reminder */
.skills-reminder {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-left: 4px solid #ffa500;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.skills-reminder .reminder-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.skills-reminder i {
    font-size: 2rem;
    color: #ffa500;
    flex-shrink: 0;
}

.skills-reminder h4 {
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 1rem;
}

.skills-reminder p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.skills-reminder .btn-small {
    background: #ffa500;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.skills-reminder .btn-small:hover {
    background: #ff8c00;
}

/* People Discovery Grid */
.people-discovery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.people-discovery-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.people-discovery-card:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px);
    border-color: #667eea;
}

.people-discovery-card .card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.people-discovery-card .card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.people-discovery-card .card-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.people-discovery-card .card-username {
    color: #888;
    font-size: 0.8rem;
}

.people-discovery-card .card-skills {
    font-size: 0.75rem;
    color: #667eea;
    background: #f0f4ff;
    padding: 4px 8px;
    border-radius: 4px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading-people {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    color: #999;
}

.loading-people .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .people-discovery-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .skills-reminder .reminder-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .people-discovery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
