* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated background grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMoveInfinite 4s linear infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}


@keyframes gridMoveInfinite {
    0% {
        transform: translate(-50px, -50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.top-nav {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.top-nav-right {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-buttons .nav-btn {
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn {
    padding: 8px 16px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-btn:active {
    transform: translateY(0);
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-icon {
    width: 16px;
    height: 16px;
}

.youtube-icon {
    width: 16px;
    height: 16px;
}

.twitter-icon {
    width: 16px;
    height: 16px;
}

.logo {
    height: auto;
    width: 320px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.game-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.game-subtitle {
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.video-container {
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.1) 100%);
    border: 2px solid #00ffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-bottom: 3rem;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease, height 0.5s ease;
    overflow: hidden;
    min-height: 300px;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.video-container:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 204, 204, 0.2) 100%);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.video-container:hover::before {
    left: 100%;
}


@keyframes borderGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.video-wrapper {
    width: 100%;
    padding: 2rem;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.video-subtitle {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 2rem 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.refresh-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
}

.refresh-btn:active {
    transform: translateY(0);
}

.refresh-icon {
    width: 16px;
    height: 16px;
}

.video-embed {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.video-link-container {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.video-link-container:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-link-container:hover .play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
    /* Offset for play button triangle */
}

.video-title {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 400;
    margin: 1rem 0 0.5rem 0;
    text-align: center;
    line-height: 1.4;
}

.video-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0 0 0;
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

.video-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.video-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #ff6b6b;
    font-family: 'Orbitron', monospace;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.video-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.video-warning {
    color: #ffa500;
    font-size: 0.9rem;
    text-align: center;
    margin: 0.5rem 0 0 0;
    font-family: 'Orbitron', monospace;
    opacity: 0.8;
}


.game-status {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    visibility: visible;
}

.game-splash {
    max-height: 60%;
    max-width: 80%;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
}

.game-progress {
    width: 60%;
    height: 8px;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffff;
    border-radius: 4px;
    display: none;
}

.game-progress::-webkit-progress-bar {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.game-progress::-webkit-progress-value {
    background: linear-gradient(90deg, #00ffff, #00cccc);
    border-radius: 4px;
}

.game-progress::-moz-progress-bar {
    background: linear-gradient(90deg, #00ffff, #00cccc);
    border-radius: 4px;
}

.game-notice {
    background-color: rgba(91, 57, 67, 0.9);
    border-radius: 0.5rem;
    border: 1px solid #9b3943;
    color: #e0e0e0;
    font-family: 'Orbitron', monospace;
    line-height: 1.3;
    margin: 1rem 2rem;
    padding: 1rem;
    text-align: center;
    max-width: 80%;
    display: none;
}

/* Login Wall Styles */
.login-wall {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    border-radius: 10px;
}

.login-form {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

.login-form h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.login-form p {
    font-size: 1rem;
    color: #00ffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.password-input {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    border: 2px solid #00ffff;
    background: rgba(0, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.password-input:focus {
    outline: none;
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: #ffffff;
}

.password-input::placeholder {
    color: rgba(0, 255, 255, 0.6);
    letter-spacing: 1px;
}

.login-error {
    background-color: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff6666;
    padding: 10px;
    border-radius: 5px;
    margin-top: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease-out;
}



@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.controls {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.1) 100%);
    color: #00ffff;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 204, 204, 0.2) 100%);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.5),
        inset 0 0 10px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-wiki {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 204, 204, 0.15) 100%);
}

.footer {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    animation: fadeIn 1s ease-out 1s both;
    margin-top: 2rem;
    padding: 0 20px;
}

.footer p {
    margin: 0.3rem 0;
}

.footer p:first-child {
    font-weight: 600;
    color: #888;
}

.footer p:last-child {
    font-size: 0.7rem;
    color: #555;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

/* Snackbar System */
.snackbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-width: 300px;
    max-width: 500px;
    animation: snackbarSlideIn 0.3s ease-out;
}

.snackbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.snackbar-info .snackbar-content {
    background: rgba(0, 255, 255, 0.15);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
}

.snackbar-success .snackbar-content {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.snackbar-warning .snackbar-content {
    background: rgba(255, 255, 0, 0.15);
    border: 1px solid rgba(255, 255, 0, 0.3);
    color: #ffff00;
}

.snackbar-error .snackbar-content {
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

.snackbar-message {
    flex: 1;
    margin-right: 12px;
}

.snackbar-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.snackbar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes snackbarSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Music Player Styles */
.music-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 420px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 204, 204, 0.15) 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    z-index: 1000;
    animation: fadeInUp 0.8s ease-out 1s both;
    transition: all 0.3s ease;
}

.music-player:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 204, 204, 0.2) 100%);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.music-player-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.track-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.track-details {
    flex: 1;
    min-width: 0;
}

.track-title {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.track-artist {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-btn {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ffff;
}

.control-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: scale(1.1);
}

.control-icon {
    width: 20px;
    height: 20px;
}


.minimize-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ffff;
}

.minimize-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.minimize-icon {
    width: 16px;
    height: 16px;
}

/* Team Page Styles */
.team-container {
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    padding: 20px;
    position: relative;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.1) 100%);
    color: #00ffff;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.back-button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 204, 204, 0.2) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.team-subtitle {
    font-size: 1.5rem;
    color: #00ffff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.team-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.team-sections {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-section {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.1) 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-section:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 204, 204, 0.15) 100%);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.team-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px currentColor;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: #00ffff;
    transform: translateY(-2px);
}

.member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.member-role {
    font-size: 0.9rem;
    color: #00ffff;
    opacity: 0.8;
    font-weight: 400;
}

.team-footer {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.1) 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    text-align: center;
}

.team-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-wiki-link {
    font-size: 1rem;
    color: #00ffff;
}

.team-wiki-link a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-wiki-link a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 200px;
    }

    .top-nav-right {
        gap: 1rem;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .social-buttons {
        gap: 0.3rem;
    }

    .social-buttons .nav-btn {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .game-title {
        font-size: 2.5rem;
    }

    .game-container {
        width: 95%;
        max-width: 800px;
    }

    .controls {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 160px;
    }

    .top-nav-right {
        flex-direction: column;
        gap: 0.3rem;
        top: 15px;
        right: 15px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }

    .social-buttons {
        flex-direction: row;
        gap: 0.3rem;
    }

    .social-buttons .nav-btn {
        width: 30px;
        height: 30px;
        padding: 4px;
    }

    .nav-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-container {
        width: 98%;
        max-width: 600px;
    }

    .game-placeholder {
        font-size: 1.5rem;
    }

    .snackbar {
        min-width: 280px;
        max-width: 90%;
        bottom: 20px;
    }

    .snackbar-content {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .music-player {
        width: 350px;
        bottom: 15px;
        left: 15px;
        padding: 0.75rem;
    }

    .track-thumbnail {
        width: 40px;
        height: 40px;
    }

    .track-title {
        font-size: 0.75rem;
    }

    .track-artist {
        font-size: 0.65rem;
    }

    .control-btn {
        width: 35px;
        height: 35px;
    }

    .control-icon {
        width: 18px;
        height: 18px;
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-subtitle {
        font-size: 1.2rem;
    }

    .team-description {
        font-size: 1rem;
    }

    .team-section-title {
        font-size: 1.5rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 0.75rem;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-role {
        font-size: 0.8rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ffff;
}

.mobile-menu-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.menu-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 20, 40, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-left: 2px solid #00ffff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-side-menu.open {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.mobile-menu-header h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.mobile-menu-close {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ffff;
}

.mobile-menu-close:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.close-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.mobile-nav-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateX(5px);
}

.mobile-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.mobile-social-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.mobile-social-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateX(5px);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    backdrop-filter: blur(5px);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {

    /* Hide desktop navigation on mobile */
    .desktop-nav,
    .desktop-social {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }

    /* Hide music player on mobile */
    .music-player {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-side-menu {
        width: 100%;
        right: -100%;
    }

    .mobile-menu-content {
        padding: 1.5rem 1rem;
    }

    .mobile-menu-header h3 {
        font-size: 1.3rem;
    }

    .mobile-nav-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .mobile-social-btn {
        padding: 0.625rem;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}