@import url('base.css');

/* Login page*/

@import url('login.css');

@import url('layout.css');
@import url('navbar.css');
@import url('jadwal.css');
@import url('form.css');
@import url('profil.css');
@import url('animasi.css');


.profil-avatar {
    position: relative; 
    display: inline-block;
}

.level-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #e17055; 
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    border: 2px solid #090a0f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.xp-container {
    width: 80%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.xp-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #dfe6e9;
    margin-bottom: 5px;
    font-weight: 600;
}

.xp-bar-bg {
    width: 100%;
    height: 8px;
    background: #2d3436;
    border-radius: 8px;
    overflow: hidden;
}

.xp-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #fdcb6e, #e17055); 
    box-shadow: 0 0 10px rgba(253, 203, 110, 0.6);
    transition: width 0.5s ease;
}

/* gambar gembok */

.btn-check:disabled {
    background-color: #636e72; 
    cursor: not-allowed;
    opacity: 0.5;
    box-shadow: none;
    transform: none;
}

.btn-check:disabled:hover {
    background-color: #636e72;
}

.fa-lock {
    font-size: 12px;
    color: #dfe6e9;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    background-color: #090a0f;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #636e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 10px;
}

.nav-item.active {
    color: #00cec9;
}

/* informasi */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 16px;
    color: #81ecec;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.info-card p {
    font-size: 13px;
    color: #dfe6e9;
    line-height: 1.5;
}

.info-list, .rank-list {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 13px;
    color: #dfe6e9;
}

.info-list li, .rank-list li {
    margin-bottom: 5px;
}

.konten-utama {
    padding-top: 100px !important; 
    
    padding-bottom: 100px !important; 
    
    box-sizing: border-box; 
    width: 100%;
}

/* Blog */

#modal-developer {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dev-container {
    background: #1e272e;
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
    border: 1px solid #636e72;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.dev-header {
    text-align: center;
    margin-bottom: 20px;
}

.dev-header h2 {
    color: #00cec9;
    margin-bottom: 5px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #b2bec3;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover { color: #ff7675; }

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 15px;
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
}

.dev-card {
    background: #2d3436;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #485460;
    transition: transform 0.2s;
}

.dev-card:hover {
    transform: translateY(-5px);
    border-color: #00cec9;
}

.dev-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00cec9;
    margin-bottom: 10px;
}

.dev-name {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dev-email {
    color: #b2bec3;
    font-size: 10px;
    margin-bottom: 10px;
    word-break: break-all;
}

.dev-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dev-socials a {
    color: #dfe6e9;
    font-size: 16px;
    transition: 0.3s;
}

.dev-socials a:hover { color: #00cec9; transform: scale(1.2); }