@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Comic+Neue:wght@700&display=swap');

:root {
    --east-color: #00bfff;
    --west-color: #ff69b4;
    --bangkok-color: #ff9500;
}

body { font-family: 'Poppins', sans-serif; }
.title-font { font-family: 'Comic Neue', cursive; }
.neon-text { text-shadow: 0 0 12px currentColor; }

.text-east { color: var(--east-color); }
.text-west { color: var(--west-color); }
.text-bangkok { color: var(--bangkok-color); }
.border-east { border-color: var(--east-color); }
.border-west { border-color: var(--west-color); }
.border-bangkok { border-color: var(--bangkok-color); }

.bg-east { background-color: var(--east-color); }
.bg-west { background-color: var(--west-color); }
.bg-bangkok { background-color: var(--bangkok-color); }

/* Unit Card */
.unit-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgb(24 24 27 / 0.85);
}
/*.unit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.5);
    border-color: rgb(255 255 255 / 0.2) !important;
}*/

/* Member Photo */
.member-photo {
    //width: 88px;
    height: 215px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
    transition: all 0.4s ease;
}
.member-photo:hover {
    transform: scale(1.12) rotate(8deg);
}

/* Tabs */
.area-tab {
    flex: 1;
    padding: 1.25rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    color: #e5e5e5;
}

.area-tab:hover {
    background-color: rgb(255 255 255 / 0.05);
}

.tab-active {
    border-bottom: 5px solid;
    color: white;
    transform: scale(1.03);
}

.dot {
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    box-shadow: 0 0 15px currentColor;
}

.tag {
    font-size: 0.7rem;
    font-family: monospace;
    padding: 2px 10px;
    border-radius: 9999px;
    background-color: rgb(255 255 255 / 0.1);
    margin-left: auto;
}

/* Store Header */
.store-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}
/* Song List Styling */
.unit-card ul {
    font-size: 0.875rem;
    line-height: 1.4;
}

.unit-card li {
    transition: all 0.2s ease;
}

.unit-card li:hover {
    color: white;
    transform: translateX(4px);
}

/* Mobile optimization */
@media (max-width: 640px) {
    .unit-card {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .member-photo {
        height: 180px;
    }
}

@media (max-width: 640px) {
    .area-tab {
        font-size: 0.95rem;
        padding: 14px 8px;
        gap: 8px;
    }
    .dot {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 640px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.5rem; }
}

/* Header padding */
header .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Footer */
footer {
    max-width: 420px;
}

#main-header {
    will-change: transform;
}

#main-header {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
