/* Tebessüm FM - Premium Radio Hub & Kadro Login Theme */

#login_wrap { 
    width: 100%; 
    min-height: 100vh; 
    position: relative;
    background: #0f172a;
    font-family: inherit;
}

#intro_top { 
    width: 100%; 
    min-height: 100vh; 
    z-index: 1; 
    position: relative; 
    background-repeat: no-repeat !important; 
    background-size: cover !important; 
    background-position: center center !important; 
    background-attachment: fixed !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

/* Dark Gradient Overlay for rich contrast & glow */
#intro_top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.88) 100%),
                linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.94) 100%);
    z-index: 2;
}

/* Dual Column Main Container */
#login_all { 
    width: 100%; 
    max-width: 1060px; 
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.84) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 28px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(236, 72, 153, 0.25) !important;
    overflow: hidden !important;
    color: #fff !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1.25fr 1fr !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#login_all:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 55px rgba(236, 72, 153, 0.35) !important;
}

/* Left Column: Staff & DJ Showcase */
.login-left-showcase {
    padding: 35px 30px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.92) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showcase-header {
    margin-bottom: 16px;
}

.showcase-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-tabs {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-tab-btn {
    flex: 1;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.showcase-tab-btn.active {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
}

/* User Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    max-height: 330px;
    overflow-y: auto;
    padding-right: 4px;
}

.showcase-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.2s ease;
}

.showcase-user-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.showcase-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.showcase-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a855f7;
}

.showcase-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #0f172a;
}

.status-online { background: #10b981; box-shadow: 0 0 8px #10b981; }
.status-offline { background: #64748b; }
.status-onair { background: #ff0055; box-shadow: 0 0 10px #ff0055; }

.showcase-user-info {
    overflow: hidden;
}

.showcase-username {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-user-rank {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Right Column: Login Portal Box */
.login-right-portal {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Logo Styling */
#login_logo { 
    max-height: 75px; 
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

#login_logo:hover {
    transform: scale(1.04);
}

/* Welcome Text & Titles */
.login_text p.bold {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f472b6 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px !important;
    letter-spacing: -0.02em;
}

.login_text p.text_med {
    color: #94a3b8 !important;
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
}

/* Buttons */
.intro_login_btn {
    width: 100% !important;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 16px 24px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.intro_login_btn:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.6) !important;
    background: linear-gradient(135deg, #f43f5e 0%, #9333ea 50%, #4f46e5 100%) !important;
}

.intro_guest_btn {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: #f1f5f9 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 18px !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.intro_guest_btn:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Language Selector Pill */
#intro_lang {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    padding: 6px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 20 !important;
}

#intro_lang:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.intro_lang {
    width: 22px !important;
    height: 16px !important;
    border-radius: 3px !important;
    object-fit: cover !important;
}

/* Live DJ Status Badge */
.live-dj-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* Equalizer Bars Animation */
.eq-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 18px;
    margin-top: 20px;
    opacity: 0.7;
}

.eq-bar {
    width: 3px;
    background: linear-gradient(180deg, #ec4899, #8b5cf6);
    border-radius: 2px;
    animation: eq-wave 1.2s infinite ease-in-out;
}

.eq-bar:nth-child(1) { animation-delay: 0s; height: 10px; }
.eq-bar:nth-child(2) { animation-delay: 0.2s; height: 16px; }
.eq-bar:nth-child(3) { animation-delay: 0.4s; height: 8px; }
.eq-bar:nth-child(4) { animation-delay: 0.1s; height: 14px; }
.eq-bar:nth-child(5) { animation-delay: 0.3s; height: 12px; }

@keyframes eq-wave {
    0%, 100% { height: 6px; }
    50% { height: 18px; }
}

/* Registration CTA */
.register-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn {
    color: #f472b6 !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 4px !important;
    transition: all 0.2s ease !important;
}

.register-btn:hover {
    color: #fb7185 !important;
    text-decoration: underline !important;
    transform: translateX(2px) !important;
}

/* Section SEO */
.section { width: 100%; height: auto; margin: 0 auto; }
.section_content { width: 100%; max-width: 1100px; margin: 0 auto; }
.section_inside { margin: 0 auto; }

/* Responsive Breakdown & Mobile First Ordering */
@media screen and (max-width: 900px) {
    #login_all {
        grid-template-columns: 1fr !important;
        max-width: 480px !important;
        border-radius: 22px !important;
    }
    .login-right-portal {
        order: 1 !important;
        padding: 32px 24px !important;
    }
    .login-left-showcase {
        order: 2 !important;
        border-right: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 28px 22px !important;
    }
}

@media screen and (max-width: 640px) {
    #intro_top {
        padding: 20px 12px !important;
    }
    .login-right-portal {
        padding: 25px 18px !important;
    }
    .login-left-showcase {
        padding: 20px 16px !important;
    }
    .login_text p.bold {
        font-size: 1.3rem !important;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .showcase-user-card {
        padding: 8px 10px !important;
    }
    .showcase-avatar {
        width: 34px !important;
        height: 34px !important;
    }
    .showcase-username {
        font-size: 0.8rem !important;
    }
}
