/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    backdrop-filter: blur(8px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.animate-logo {
    animation: bounce 2s infinite;
}

.animate-title {
    font-size: 2rem;
    font-weight: bold;
    animation: slideIn 1s ease-out;
}

nav {
    display: flex;
    gap: 1rem;
}

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Members list */
.members-list {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    display: none;
}

.members-list h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
    color: #ffd700;
}

.members-list ul {
    list-style: none;
    padding: 0;
}

.members-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 1rem;
}

/* Specific Badge Styles */
.owner-badge {
    background: linear-gradient(45deg, #ff5e5e, #ffd700);
    color: #fff;
    box-shadow: 0px 0px 5px rgba(255, 94, 94, 0.5);
}

.admin-badge {
    background: linear-gradient(45deg, #ffd700, #ffa700);
    color: white;
    box-shadow: 0px 0px 5px rgba(255, 165, 0, 0.5);
    animation: subtleGlow 2s ease-in-out infinite alternate;
}

.respected-badge {
    background: #666;
    color: #fff;
    opacity: 0.85;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes subtleGlow {
    from {
        box-shadow: 0 0 5px #ffd700;
    }
    to {
        box-shadow: 0 0 10px #ffd700;
    }
}
