/* EnZone Common Styles: ใช้ร่วมกันทั้ง login, register, ฯลฯ */
body { 
    font-family: 'Noto Sans Thai', sans-serif; 
    background: #000; 
    min-height: 100vh; 
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ===================
   BUTTONS AND ACTIONS
   =================== */
.btn-gold-gradient {
    background: linear-gradient(90deg, #E5C467 0%, #A36E1B 100%);
    color: #fff;
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    font-weight: bold;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(191,161,74,0.08);
    transition: background 0.2s;
    margin-top: 20px;
}
.btn-gold-gradient:hover {
    background: linear-gradient(90deg, #A36E1B 0%, #E5C467 100%);
    color: #000;
}

.btn-gold {
    background: linear-gradient(90deg, #A36E1B 0%, #E5C467 100%);
    color: #181818;
    font-weight: bold;
    border-radius: 12px;
    padding: 12px 34px;
    border: 0px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover { 
    background: linear-gradient(90deg, #E5C467 0%, #A36E1B 100%);
    transform: translateY(-1px);
}

.btn-search {
    background: linear-gradient(90deg, #A36E1B 0%, #E5C467 100%);
    color: #000;
    font-weight: 600;
    padding: 12px 70px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-search:hover {
    background: linear-gradient(90deg, #E5C467 0%, #A36E1B 100%);
    transform: translateY(-1px);
}

.btn-reset {
    background: linear-gradient(90deg, #666 0%, #333 100%);
    color: #fff;
    font-weight: 600;
    padding: 12px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reset:hover {
    background: linear-gradient(90deg, #333 0%, #666 100%);
    transform: translateY(-1px);
}

.btn-view-all {
    display: inline-block;
    background: linear-gradient(90deg, #A36E1B 0%, #181818 100%);
    color: #fff;
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-view-all:hover {
    background: linear-gradient(90deg, #E5C467 0%, #A36E1B 100%);
    color: #000;
    transform: translateY(-2px);
}

/* ===================
   FORM ELEMENTS
   =================== */
.form-error {
    color: #d32f2f;
    background: #fff3f3;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 1rem;
}

.form-control {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #E5C467;
    box-shadow: 0 0 0 0.2rem rgba(229, 196, 103, 0.25);
    outline: none;
}

/* ===================
   MEMBER BADGES
   =================== */
.member-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.vip-badge {
    background: linear-gradient(90deg, #A36E1B 0%, #E5C467 100%);
    color: #fff;
}

.hot-badge {
    background: linear-gradient(90deg, #d13531 0%, #ff5f59 100%);
    color: #fff;
}

.star-badge {
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
}

.legend-badge {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    color: #fff;
}

/* ===================
   COIN ELEMENTS
   =================== */
.coin-balance {
    background: linear-gradient(90deg, #f7e9b0 0%, #c59b2b 100%);
    padding: 8px 16px;
    border-radius: 20px;
    color: #222;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coin-balance:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #222;
}

.coin-balance i {
    color: #A36E1B;
    font-size: 1.1em;
}

.coin-count {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #d4af37 0%, #f1e5bc 100%);
    color: #000;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 10px;
}

.coin-count i {
    margin-right: 5px;
    font-size: 1rem;
}

/* ===================
   SOCIAL BUTTONS
   =================== */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.social-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #000;
}

.social-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Chat Button */
.chat-button {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff !important;
}

.chat-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

/* Gift Button */
.gift-button {
    background: linear-gradient(135deg, #e5c467 0%, #d4af37 100%);
    color: #000 !important;
}

.gift-button:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000 !important;
    box-shadow: 0 6px 18px rgba(229, 196, 103, 0.4);
}

/* Follow Button */
.follow-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.follow-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: #fff !important;
}

.follow-btn.active {
    background: linear-gradient(135deg, #ff4e00 0%, #b60000 100%);
    color: #fff !important;
}

.follow-btn.active:hover {
    background: linear-gradient(135deg, #b60000 0%, #ff4e00 100%);
    color: #fff !important;
}

/* ===================
   SAMPLE IMAGES
   =================== */
.samples-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 30px 0 0 0;
}

.sample-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #bfa14a;
    background: #222;
}

/* ===================
   CONTAINERS
   =================== */
.container-fluid{
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 40px 0;
    display: flex;
    gap: 32px;
}

/* ===================
   SIDEBARS
   =================== */
.profile-sidebar .sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    color: #181818;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 1.05rem;
    margin: 10px 0px;
}

.profile-sidebar .sidebar-menu a.active, .profile-sidebar .sidebar-menu a:hover {
    background: linear-gradient(90deg, #E5C467 0%, #A36E1B 100%);
    color: #000;
}

.profile-sidebar .sidebar-logout {
    margin-top: auto;
    color: #bfa14a;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.2s;
}

.profile-sidebar .sidebar-logout:hover {
    color: #E5C467;
}

/* ===================
   MAIN CONTENT AREAS
   =================== */
.profile-main {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.profile-main .profile-tabs {
    display: flex;
    border-bottom: 2px solid #f1f2f6;
    margin-bottom: 32px;
}

.profile-main .profile-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #7f8c8d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.profile-main .profile-tab.active {
    color: #E5C467;
    border-bottom-color: #E5C467;
}

.profile-main .profile-tab:hover {
    color: #E5C467;
}

/* ===================
   TYPOGRAPHY
   =================== */
h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
h5 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}
h6 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
p, .text-normal {
    font-size: 1rem;
    margin-bottom: 1rem;
}


