:root{
  --jr-bg:#fff3fb;
  --jr-panel:rgba(255,255,255,.86);
  --jr-panel-2:rgba(255,244,252,.94);
  --jr-text:#4b244a;
  --jr-muted:#8e5d86;
  --jr-pink:#ff7ac8;
  --jr-pink-2:#ffb3df;
  --jr-purple:#b388ff;
  --jr-gold:#ffd36e;
  --jr-mint:#8df5d2;
  --jr-line:rgba(116,58,107,.16);
  --jr-shadow:0 22px 60px rgba(255,122,200,.22);
  --jr-radius:28px;
}

*{box-sizing:border-box}

html{
  min-height:100%;
  background:var(--jr-bg);
}

body{
  margin:0;
  min-height:100%;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--jr-text);
  background:
    radial-gradient(circle at 8% 18%,rgba(255,122,200,.34),transparent 26%),
    radial-gradient(circle at 85% 12%,rgba(179,136,255,.28),transparent 30%),
    radial-gradient(circle at 50% 100%,rgba(141,245,210,.24),transparent 32%),
    linear-gradient(135deg,#fff8fd 0%,#ffe8f7 42%,#f7efff 100%);
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background-image:
    radial-gradient(circle,#ff7ac8 2px,transparent 2.5px),
    radial-gradient(circle,#ffd36e 2px,transparent 2.5px);
  background-size:44px 44px,58px 58px;
  background-position:0 0,20px 18px;
  z-index:-2;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.jamro-bg-orb{
  position:fixed;
  border-radius:999px;
  filter:blur(18px);
  opacity:.42;
  pointer-events:none;
  z-index:-1;
}

.jamro-bg-orb-one{
  width:300px;
  height:300px;
  background:var(--jr-pink);
  left:-80px;
  top:190px;
}

.jamro-bg-orb-two{
  width:380px;
  height:380px;
  background:var(--jr-purple);
  right:-130px;
  bottom:80px;
}

.jamro-topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px clamp(16px,4vw,48px);
  background:rgba(255,246,252,.82);
  border-bottom:1px solid var(--jr-line);
  backdrop-filter:blur(18px);
}

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

.jamro-brand img{
  width:58px;
  height:58px;
  filter:drop-shadow(0 10px 18px rgba(255,122,200,.28));
}

.jamro-brand strong{
  display:block;
  font-size:1.28rem;
  letter-spacing:.02em;
  color:#5a2557;
}

.jamro-brand small{
  display:block;
  color:var(--jr-muted);
  font-size:.8rem;
}

.jamro-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.jamro-nav-link,
.jamro-nav-group>span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:9px 14px;
  border:1px solid transparent;
  border-radius:999px;
  color:#7d4c77;
  font-weight:900;
  font-size:.92rem;
  transition:.2s ease;
}

.jamro-nav-link:hover,
.jamro-nav-group:hover>span{
  color:#51224e;
  border-color:rgba(255,122,200,.28);
  background:rgba(255,255,255,.65);
  transform:translateY(-1px);
}

.jamro-nav-cta{
  color:#5a244b;
  background:linear-gradient(135deg,var(--jr-gold),var(--jr-pink-2));
  box-shadow:0 12px 26px rgba(255,122,200,.28);
}

.jamro-nav-cta:hover{color:#5a244b}

.jamro-nav-group{position:relative}

.jamro-nav-sub{
  position:absolute;
  right:0;
  top:42px;
  display:none;
  min-width:220px;
  padding:10px;
  border-radius:22px;
  background:rgba(255,250,253,.98);
  border:1px solid rgba(255,122,200,.22);
  box-shadow:var(--jr-shadow);
}

.jamro-nav-group:hover .jamro-nav-sub{
  display:grid;
  gap:4px;
}

.jamro-menu-button{
  display:none;
  border:1px solid var(--jr-line);
  border-radius:16px;
  background:rgba(255,255,255,.72);
  color:var(--jr-text);
  font-size:1.4rem;
  padding:8px 12px;
}

.jamro-shell{
  width:min(1420px,100%);
  margin:0 auto;
  padding:30px clamp(14px,3vw,38px);
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:24px;
}

.jamro-sidebar{
  display:grid;
  align-content:start;
  gap:18px;
}

.jamro-card,
.jamro-page-card,
.jamro-news-card,
.jamro-feature-grid article,
.jamro-hero{
  border:1px solid var(--jr-line);
  background:var(--jr-panel);
  border-radius:var(--jr-radius);
  box-shadow:var(--jr-shadow);
}

.jamro-card{
  padding:18px;
}

.jamro-card h3{
  margin:0 0 12px;
  font-size:1rem;
  color:#d9579e;
}

.jamro-login-card{
  background:
    linear-gradient(135deg,rgba(255,255,255,.92),rgba(255,235,248,.88)),
    var(--jr-panel);
}

.jamro-status-card a,
.jamro-admin-card a{
  display:block;
  padding:10px 12px;
  border-radius:16px;
  color:#7b4b76;
  font-weight:900;
}

.jamro-status-card a:hover,
.jamro-admin-card a:hover{
  background:rgba(255,122,200,.12);
  color:#4b244a;
}

.jamro-content{min-width:0}

.jamro-page-card{
  padding:clamp(18px,3vw,34px);
  background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,244,252,.9));
}

.jamro-alert{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,211,110,.5);
  background:rgba(255,211,110,.18);
  color:#8b5c12;
}

.jamro-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:24px;
  align-items:center;
  padding:clamp(24px,4vw,48px);
  background:
    radial-gradient(circle at 12% 18%,rgba(255,255,255,.64),transparent 22%),
    linear-gradient(135deg,rgba(255,122,200,.28),rgba(179,136,255,.2)),
    var(--jr-panel-2);
  overflow:hidden;
  position:relative;
}

.jamro-hero:after{
  content:"♡ ✦ ♡";
  position:absolute;
  right:28px;
  top:22px;
  color:rgba(255,122,200,.5);
  font-weight:900;
  letter-spacing:.3em;
}

.jamro-kicker{
  display:inline-flex;
  margin-bottom:10px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(255,211,110,.32);
  color:#b66b00;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.75rem;
}

.jamro-hero h1{
  margin:0;
  font-size:clamp(2.7rem,8vw,5.5rem);
  line-height:.9;
  letter-spacing:-.055em;
  color:#5b2557;
  text-shadow:0 6px 0 rgba(255,255,255,.55);
}

.jamro-hero p{
  max-width:720px;
  color:var(--jr-muted);
  font-size:1.07rem;
  line-height:1.65;
}

.jamro-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.jamro-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--jr-line);
  font-weight:1000;
  color:#5b2557;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 22px rgba(255,122,200,.16);
}

.jamro-button-primary{
  border:0;
  background:linear-gradient(135deg,var(--jr-gold),var(--jr-pink));
}

.jamro-hero-panel{
  display:grid;
  gap:12px;
  justify-items:center;
  text-align:center;
  padding:20px;
  border-radius:26px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,122,200,.22);
}

.jamro-hero-panel img{
  width:190px;
  margin:auto;
  filter:drop-shadow(0 18px 18px rgba(179,136,255,.22));
}

.jamro-hero-panel strong{
  display:block;
  font-size:1.15rem;
  color:#5b2557;
}

.jamro-hero-panel span{
  display:block;
  color:var(--jr-muted);
  font-size:.92rem;
}

.jamro-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin:18px 0;
}

.jamro-feature-grid article{
  padding:20px;
  background:rgba(255,255,255,.78);
}

.jamro-feature-grid span{
  display:inline-grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:14px;
  border-radius:16px;
  background:rgba(255,122,200,.13);
  font-size:1.4rem;
}

.jamro-feature-grid h3{margin:0 0 8px;color:#5b2557}

.jamro-feature-grid p,
.jamro-news-card p{
  color:var(--jr-muted);
  line-height:1.6;
}

.jamro-news-list{
  display:grid;
  gap:14px;
}

.jamro-news-list h2{margin:8px 0 0;color:#5b2557}

.jamro-news-card{
  padding:22px;
  background:rgba(255,255,255,.8);
}

.jamro-news-card h2,
.jamro-news-card h3{margin-top:0;color:#5b2557}

.jamro-news-card small{
  display:block;
  color:#d05a9b;
  margin-bottom:10px;
}

.jamro-footer{
  width:min(1420px,100%);
  margin:0 auto;
  padding:24px clamp(16px,4vw,48px) 38px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--jr-muted);
}

.jamro-footer strong{
  color:var(--jr-text);
  margin-right:8px;
}

.jamro-footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.jamro-footer a:hover{color:#d9579e}

input,select,textarea,button{font:inherit}

input[type=text],
input[type=password],
input[type=email],
select,
textarea{
  width:100%;
  border:1px solid var(--jr-line);
  border-radius:16px;
  background:rgba(255,255,255,.86);
  color:var(--jr-text);
  padding:11px 12px;
}

table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:18px;
}

th,td{
  padding:12px;
  border-bottom:1px solid var(--jr-line);
}

th{
  color:#d9579e;
  text-align:left;
  background:rgba(255,122,200,.09);
}

.generic-form-table,
.vertical-table{
  background:rgba(255,255,255,.56);
  border-radius:18px;
}

@media(max-width:980px){
  .jamro-shell{grid-template-columns:1fr}
  .jamro-sidebar{order:2}
  .jamro-content{order:1}
  .jamro-hero{grid-template-columns:1fr}
  .jamro-hero-panel{max-width:320px}
  .jamro-feature-grid{grid-template-columns:1fr}
}

@media(max-width:760px){
  .jamro-menu-button{display:inline-flex}
  .jamro-nav{
    display:none;
    position:absolute;
    left:14px;
    right:14px;
    top:88px;
    padding:12px;
    border:1px solid var(--jr-line);
    border-radius:24px;
    background:rgba(255,250,253,.98);
    box-shadow:var(--jr-shadow);
    align-items:stretch;
    justify-content:flex-start;
  }
  .jamro-nav.is-open{display:grid}
  .jamro-nav-link,.jamro-nav-group>span{justify-content:center}
  .jamro-nav-sub{position:static;display:grid;background:transparent;box-shadow:none;border:0}
  .jamro-footer{display:grid}
  .jamro-page-card{padding:16px}
  .jamro-hero{padding:22px}
  .jamro-hero h1{font-size:3rem}
}
