body {
    background: #000;
    color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ========================
   HEADER PH360
======================== */
.ph-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1b1d21;
    border-bottom: 3px solid #f7931e;
    padding: 12px 0;
    font-family: Arial, sans-serif;
}

.ph-header-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ph-logo img {
    height: 70px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

.ph-logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* desktop menu */
.ph-menu-desktop {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ph-menu-desktop a {
    color: #d7d7d7;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.ph-menu-desktop a:hover,
.ph-menu-desktop a.active {
    background: #f7931e;
    color: #000;
}

.ph-btn {
    border: 2px solid #f7931e;
    color: #f7931e !important;
    background: transparent;
}

.ph-btn:hover,
.ph-btn.active {
    background: #f7931e;
    color: #000 !important;
}

.ph-btn-logout {
    border: 2px solid #c62828;
    color: #ff6b6b !important;
    background: transparent;
}

.ph-btn-logout:hover,
.ph-btn-logout.active {
    background: #c62828;
    color: #fff !important;
}

/* burger */
.ph-menu-toggle {
    display: none;
    border: 2px solid #f7931e;
    color: #f7931e;
    padding: 8px 12px;
    background: transparent;
    border-radius: 6px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* mobile fullscreen */
.ph-fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.ph-fullscreen-menu.open {
    opacity: 1;
    visibility: visible;
}

.ph-fullscreen-menu a {
    color: #fff;
    font-size: 28px;
    margin: 12px 0;
    text-decoration: none;
}

.ph-fullscreen-menu a:hover,
.ph-fullscreen-menu a.active {
    color: #f7931e;
}

.ph-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #f7931e;
    cursor: pointer;
}

/* general page helpers */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.page-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.page-subtitle {
    text-align: center;
    color: #ff8c00;
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .ph-menu-desktop {
        display: none;
    }

    .ph-menu-toggle {
        display: block;
    }

    .ph-logo img {
        height: 56px !important;
    }

    .ph-logo-text {
        font-size: 16px;
    }
}