/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0e29;
    --secondary: #1a1f4b;
    --accent: #6c63ff;
    --accent-light: #8a85ff;
    --text: #ffffff;
    --text-muted: #b0b0d0;
    --nebula-1: #4a00e0;
    --nebula-2: #8e2de2;
    --nebula-3: #1a237e;
    --sidebar-width: 280px;
    --success: #00d68f;
    --danger: #ff4757;
    --warning: #ffaa00;
    --owner-color: #ff4757;
    --partner-color: #ffaa00;
    --admin-color: #00d68f;
    --modal-z-index: 10000;
    --overlay-z-index: 9999;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nebulaFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 40px) scale(1.1); }
    100% { transform: translate(20px, 60px) scale(1.05); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ========== BACKGROUND SPACE EFFECTS ========== */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(to bottom, #000428, #004e92);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 5s infinite;
}

.nebula {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, var(--nebula-1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--nebula-2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--nebula-3) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: -1;
    animation: nebulaFloat 40s infinite alternate ease-in-out;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(10, 14, 41, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(108, 99, 255, 0.2);
    padding: 30px 20px;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(to right, #6c63ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-light);
    border-left: 3px solid var(--accent);
}

.sidebar-nav i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.sidebar-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}

.heart {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

/* ========== MENU TOGGLE BUTTON ========== */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(26, 31, 75, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 101;
    border: 1px solid rgba(108, 99, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: scale(1.1);
}

.menu-toggle.active {
    left: calc(var(--sidebar-width) + 20px);
}

.menu-toggle i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    padding-left: 0;
    transition: padding-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
}

.main-content.sidebar-open {
    padding-left: var(--sidebar-width);
}

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

/* ========== HEADER ========== */
header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(to right, #6c63ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
    animation: float 6s infinite ease-in-out;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: slideInUp 1s forwards 0.5s;
}

.main-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
    opacity: 0;
    animation: slideInUp 1s forwards 0.8s;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.6);
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(to right, #8a85ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CARDS ========== */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: rgba(26, 31, 75, 0.7);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-align: center;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.card-btn:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: translateX(5px);
}

/* ========== SOCIAL MEDIA SECTION ========== */
.social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-card {
    background: rgba(26, 31, 75, 0.7);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.social-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.4);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.social-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.social-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.social-btn:hover {
    background: rgba(108, 99, 255, 0.2);
}

/* ========== TEAM SECTION ========== */
.team-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(26, 31, 75, 0.7);
    border-radius: 15px;
    padding: 20px;
    min-width: 150px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #8a85ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    background: rgba(26, 31, 75, 0.7);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid;
    transition: all 0.3s ease;
}

.member-avatar.owner {
    border-color: var(--owner-color);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
}

.member-avatar.partner {
    border-color: var(--partner-color);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.member-avatar.admin {
    border-color: var(--admin-color);
    box-shadow: 0 0 20px rgba(0, 214, 143, 0.3);
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.member-role {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-owner {
    background: rgba(255, 71, 87, 0.2);
    color: var(--owner-color);
    border: 2px solid var(--owner-color);
}

.role-partner {
    background: rgba(255, 170, 0, 0.2);
    color: var(--partner-color);
    border: 2px solid var(--partner-color);
}

.role-admin {
    background: rgba(0, 214, 143, 0.2);
    color: var(--admin-color);
    border: 2px solid var(--admin-color);
}

.admin-actions {
    text-align: center;
    margin-top: 40px;
}

.admin-join-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

.admin-join-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.6);
}

.admin-join-btn i {
    margin-right: 10px;
}

.admin-warning-text {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-warning-text i {
    color: var(--warning);
    margin-right: 10px;
}

/* ========== FOOTER ========== */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== MODAL OVERLAY FIX ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: var(--modal-z-index);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(108, 99, 255, 0.1);
    color: white;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

.modal-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(10, 14, 41, 0.8);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
    padding-right: 45px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.4);
}

.modal-btn.danger {
    background: linear-gradient(45deg, #ff4757, #ff6b6b);
}

.error-message {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.login-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.login-info i {
    color: var(--accent);
    margin-right: 10px;
}

/* ========== ADMIN PANEL WINDOW ========== */
.admin-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    padding: 20px;
}

.admin-panel-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.admin-panel-window {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border: 1px solid rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.admin-panel-overlay.active .admin-panel-window {
    transform: translateY(0) scale(1);
}

.admin-panel-header {
    padding: 25px 30px;
    background: rgba(108, 99, 255, 0.1);
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-panel-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.admin-panel-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}

.admin-panel-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.admin-panel-close:hover {
    background: rgba(255, 71, 87, 0.1);
    color: var(--danger);
}

.admin-panel-content {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

.admin-section {
    margin-bottom: 30px;
}

.admin-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-section h3 i {
    color: var(--accent);
}

/* ========== ADMIN LIST CONTAINER ========== */
.admin-list-container {
    max-height: 300px;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 10px;
}

.admin-list-container::-webkit-scrollbar {
    width: 8px;
}

.admin-list-container::-webkit-scrollbar-track {
    background: rgba(10, 14, 41, 0.5);
    border-radius: 10px;
}

.admin-list-container::-webkit-scrollbar-thumb {
    background: rgba(108, 99, 255, 0.5);
    border-radius: 10px;
}

.admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(10, 14, 41, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
}

.admin-avatar.owner {
    border-color: var(--owner-color);
}

.admin-avatar.partner {
    border-color: var(--partner-color);
}

.admin-avatar.admin {
    border-color: var(--admin-color);
}

.admin-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.admin-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.admin-action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.admin-action-btn:hover {
    background: rgba(108, 99, 255, 0.1);
    color: white;
}

.admin-action-btn.delete-btn:hover {
    color: var(--danger);
}

/* ========== NOTIFICATION STYLES ========== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    background: var(--success);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

.notification-error .notification-content {
    background: var(--danger);
}

.notification-info .notification-content {
    background: var(--accent);
}

/* ========== ERROR MESSAGE STYLES ========== */
.no-team-message,
.error-message {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.no-team-message i,
.error-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.error-message {
    color: var(--danger);
}

.empty-message {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .main-content.sidebar-open {
        padding-left: 0;
    }
    
    .menu-toggle.active {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 250px;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .social-container {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-toggle {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }
    
    .sidebar {
        width: 280px;
    }
    
    .team-member {
        width: 100%;
        max-width: 300px;
    }
    
    .modal {
        padding: 30px 20px;
    }
    
    .admin-panel-window {
        max-width: 95%;
    }
    
    .admin-panel-content {
        padding: 20px;
    }
    
    .admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .admin-actions {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modal {
        padding: 20px 15px;
    }
    
    .admin-panel-header {
        padding: 20px;
    }
    
    .admin-panel-header h2 {
        font-size: 1.5rem;
    }
    
    .notification-content {
        padding: 12px 20px;
        max-width: 280px;
    }
}

/* ========== PERFORMANCE OPTIMIZATION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
