/* Default Login CSS */
#login_logo {
    height: 100px;
}

#intro_top {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    background: #292929 url('back.jpg') no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#login_wrap {
    width: 100%;
    height: 100%;
}

#login_all {
    width: 800px;
    max-width: 94%;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    color: #fff;
}

.login_not_member {
    text-align: center;
    padding-top: 5px;
    
}

#intro_lang {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
}

/* DJ Widget Styles */
.compact_dj_widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1e2f, #29293d);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.89);
    max-width: 400px;
    margin: 20px auto;
    animation: glow 1.5s infinite alternate;
    background-image: url('back.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* DJ Info */
.dj_widget_content {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dj_info {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF0000;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 8px;
}

.dj_name {
    font-size: 22px;
    color: #FF0000;
    font-weight: bold;
    margin-top: 5px;
}

/* Song Info */
.song_info {
    font-size: 16px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* DJ Player */
.dj_player {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(255, 46, 203);
    animation: pulse 2s infinite;
}

.cc_player {
    width: 100%;
    text-align: center;
}

.cc_player iframe {
    width: 100%;
    height: 60px;
    border-radius: 8px;
}

/* Animation Effects */
@keyframes glow {
    from {
        box-shadow: 0 4px 25px rgba(128, 22, 117);
    }
    to {
        box-shadow: 0 6px 20px rgba(235, 206, 221, 0.16);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .compact_dj_widget {
        max-width: 90%;
        padding: 15px;
    }

    .dj_info, .song_info {
        font-size: 14px;
    }

    .dj_name {
        font-size: 18px;
    }

    .cc_player iframe {
        height: 50px;
    }
}
