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

.entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.entrance-screen.fade-out {
    opacity: 0;
}

.entrance-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.entrance-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(4px);
}

.entrance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.entrance-content {
    text-align: center;
    z-index: 1;
    animation: text-float 3s ease-in-out infinite;
}

.entrance-title {
    font-size: 6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
    animation: title-glow 2s ease-in-out infinite alternate;
}

.entrance-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    opacity: 0.9;
    font-weight: 300;
    animation: subtitle-fade 2s ease-in-out infinite alternate;
}

@keyframes text-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes title-glow {
    0% {
        text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

@keyframes subtitle-fade {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.audio-status {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-status.hidden {
    display: block;
}

.audio-status.show {
    opacity: 1;
    transform: translateX(0);
}

.main-site {
    transition: opacity 0.5s ease;
}

.main-site.hidden {
    display: none;
}

.main-site.fade-in {
    animation: fade-in 0.8s ease-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(2px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(20, 20, 30, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #cccccc;
    opacity: 0.8;
}

.profiles-section {
    width: 100%;
    max-width: 1100px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    opacity: 0.6;
}

.profiles-grid {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.75rem;
    width: 240px;
    transition: all 0.3s ease;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.profile-image {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-card:hover .image-placeholder {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.placeholder-icon {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
}

.profile-card:hover .user-avatar {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.discord-tag {
    font-size: 0.85rem;
    color: #999999;
    margin: 0.25rem 0 0.5rem 0;
    font-weight: 400;
}

.loading-animation {
    animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.profile-card.loading {
    opacity: 0.7;
}

.profile-info {
    text-align: center;
}

.username {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status.online .status-dot {
    background-color: #4CAF50;
    animation: pulse 2s infinite;
}

.status.offline .status-dot {
    background-color: #757575;
}

.status.online {
    color: #4CAF50;
}

.status.offline {
    color: #999999;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    }
}

.discord-section {
    margin-top: 3rem;
    text-align: center;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #6674F4, #5865F2);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.discord-button:active {
    transform: translateY(0);
}

.discord-icon {
    font-size: 1.2rem;
}

.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 320px;
    color: #ffffff;
    font-size: 0.9rem;
    z-index: 200;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
}

.music-player.hidden {
    display: block;
}

.music-player.show {
    opacity: 1;
    transform: translateY(0);
}

.music-player.minimized {
    width: 200px;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px 12px 0 0;
}

.player-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.minimize-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.minimize-btn:hover {
    opacity: 0.7;
}

.player-content {
    padding: 16px;
}

.track-info {
    margin-bottom: 12px;
    text-align: center;
}

.track-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.play-btn {
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
}

.play-btn:hover {
    background: rgba(88, 101, 242, 0.5);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.time {
    font-size: 0.75rem;
    color: #cccccc;
    min-width: 30px;
    text-align: center;
}

.progress-bar, .volume-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb, .volume-bar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #5865F2;
    border-radius: 50%;
    cursor: pointer;
}

.progress-bar::-moz-range-thumb, .volume-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #5865F2;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    font-size: 0.8rem;
}

.volume-bar {
    flex: 1;
}

@media (max-width: 1024px) {
    .profiles-grid {
        gap: 1rem;
    }
    
    .profile-card {
        width: 220px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .entrance-title {
        font-size: 4rem;
    }
    
    .entrance-subtitle {
        font-size: 1.1rem;
    }
    
    .profiles-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .profile-card {
        width: 100%;
        max-width: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .entrance-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .entrance-subtitle {
        font-size: 1rem;
    }
    
    .audio-status {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    .discord-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .discord-icon {
        font-size: 1.1rem;
    }
    
    .music-player {
        bottom: 15px;
        right: 15px;
        width: 280px;
        font-size: 0.85rem;
    }
    
    .music-player.minimized {
        width: 180px;
    }
    
    .player-content {
        padding: 12px;
    }
    
    .control-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}