body.snoku-shell {
    min-height: 100vh;
    margin: 0;
    background: #000 url('/assets/backgrounds/Background.jpg') center/cover no-repeat fixed;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.client-portal-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.client-portal-header {
    padding: 18px;
    background: rgba(0,0,0,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.client-portal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-avatar.large {
    width: 80px;
    height: 80px;
}

.client-identity {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
}

.client-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
}

.client-portal-nav {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.client-portal-nav a {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
}

.client-portal-nav a.active {
    background: #f5c15c;
    color: #000;
}

.client-portal-main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.glass-panel {
    width: 100%;
    max-width: 1400px; /* WIDE CINEMATIC WIDTH */
    margin: 0 auto;
    padding: 40px 50px;

    background: rgba(255, 255, 255, 0.08); /* MILKY TRANSPARENT */
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);

    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.client-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row input {
    padding: 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-primary {
    padding: 10px 18px;
    border-radius: 999px;
    background: #f5c15c;
    color: #000;
    border: none;
    cursor: pointer;
}

.dashboard-grid {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.dash-card {
    background: rgba(0,0,0,0.7);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.dash-card h2 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.btn-card {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5c15c;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 1100px; /* same cinematic width as booking */
    margin: 0 auto;
}

.dash-card {
    width: 100%;
    background: rgba(0,0,0,0.55);
    border-radius: 18px;
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
}

.dash-card h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: #f5c15c;
}

.dash-card p {
    margin: 6px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.92);
}

.btn-card {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f5c15c;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

body.snoku-shell {
    background: url('/assets/images/backgrounds/cinematic-bg.jpg') center/cover no-repeat fixed;
    background-color: #000;
    min-height: 100vh;
}
