/* ============================
   DEFAULT: Desktop hidden
   ============================ */
#main-flex {
    display: none;
}

/* ============================
   DESKTOP MODE (>= 1024px)
   ============================ */
@media (min-width: 1024px) {

    /* MOBILE MATI */
    #mobile-layout {
        display: none !important;
    }

    /* DESKTOP AKTIF */
    #desktop-background-layer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('logo.jpg') no-repeat center/cover;
      z-index: -1;
      /* Efek Blur */
      filter: blur(50px) brightness(0.6);
      transform: scale(1.1); /* Hindari artefak pinggiran blur */
      transition: all 0.5s ease;
      will-change: transform; /* Optimasi GPU */
      backface-visibility: hidden;
    }

    #main-flex {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: transparent; /* biar konsisten */
    }

    /* LEFT ==================== */
    #left-section {
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #desktop-cover-art {
        width: 300px;
        height: 300px;
        border-radius: 20px;
        border: 7px solid white;
        object-fit: cover;
        box-shadow: 0 0 25px rgba(0,0,0,0.6);
    }

    #desktop-play-button {
        margin-top: -50px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 99999;
    }

    #desktop-play-button img {
        width: 100px;
        height: 100px;
        filter: drop-shadow(0px 0px 12px rgba(255,255,255,0.4));
    }

    /* RIGHT ==================== */
    #right-section {
        width: 60%;
        color: white;
        display: flex;
        align-items: center;
        padding-right: 60px;
    }

    #right-content {
        width: 100%;
    }

    #desktop-logo {
        font-size: 48px;
        margin-top: -70px;
        font-weight: 900;
        font-family: 'Roboto', sans-serif;
        letter-spacing: 2px;
        text-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    #desktop-tagline {
        margin-top: -10px;
        font-size: 18px;
        font-weight: 300;
        opacity: 0.9;
    }

    /* BUTTON GROUP */
    #desktop-buttons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }
    
    #desktop-buttons button {
        display: none;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border: none;
        border-radius: 12px;
        transform: translateZ(0); /* bikin baseline stabil */
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
    
        cursor: pointer;
        transition: 0.2s;
    }
    
    /* TEXT STYLE */
    #desktop-buttons button span {
        font-weight: 700;
        height: 20px;
        font-size: 16px;
        text-shadow: 0px 2px 4px rgba(0,0,0,0.9);
    }
    
    /* INDIVIDUAL COLORS */
    #desktop-trakteer-btn {
        background: #ff3b3b !important;
        color: white;
        border-radius: 14px;
        padding: 10px 18px;
        display: none;
        align-items: center;
        gap: 10px;
        box-shadow: 0 0 10px rgba(255,0,0,0.7);
        animation: trakteerBlink 1.4s infinite;
    }
    
    #desktop-trakteer-btn span {
        color: white;
        text-shadow: 0 0 8px rgba(255,255,255,0.8);
        font-weight: 700;
        font-size: 16px;
        animation: trakteerTextPulse 1.4s infinite ease-in-out;
    }
    
    @keyframes trakteerBlink {
        0%   { box-shadow: 0 0 4px rgba(255,0,0,0.3); }
        50%  { box-shadow: 0 0 14px rgba(255,0,0,1); }
        100% { box-shadow: 0 0 4px rgba(255,0,0,0.3); }
    }
    
    @keyframes trakteerTextPulse {
        0%   { opacity: 0.75; transform: scale(1); }
        50%  { opacity: 1; transform: scale(1.06); }
        100% { opacity: 0.75; transform: scale(1); }
    }
    
    #desktop-request-btn span {
        color: #00E1FF; /* biru cerah – netral */
    }
    
    #desktop-chat-btn span {
        color: #8FFF5A; /* hijau neon – hidup */
    }
    
    /* Hover efek */
    #desktop-buttons button:hover {
        transform: translateY(-3px);
        background: rgba(0,0,0,0.65);
    }


    /* BIO BOX ==================== */
    #bio-wrapper {
        margin-top: 25px;
        max-width: 90%;
        display: flex;
    }
    
    #bio-box {
        width: 100%;
        background: rgba(0,0,0,0.55);
        padding: 20px 30px;
        border-radius: 16px;
        font-size: 18px;
        line-height: 1.5;
        color: #fff;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
    }
}

#desktop-trakteer-btn,
#desktop-request-btn,
#desktop-chat-btn {
    display: none;  /* default hidden */
}

/* Garis pemisah */
.desktop-meta-separator {
    width: 100%;
    height: 1px;
    margin: 14px 0;
    background: rgba(255,255,255,0.35);
}

/* Container bio desktop */
#desktop-meta {
    font-size: 14px;
    line-height: 1.35;
    opacity: 0.85;
    max-height: 210px;         /* supaya tidak panjang */
    overflow: hidden;
}

/* tiap baris */
#desktop-meta .m-item {
    margin: 4px 0;
}

/* highlight */
#desktop-meta strong {
    color: #fff;
    opacity: 0.95;
}

/* ====================== */
/* Desktop Footer Styles */
/* ====================== */
#desktop-footer {
    margin-top: 30px;          /* jarak dari tombol play */
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
}

#desktop-footer p {
    margin: 0;
    padding: 0;
}
