:root{--bg: #050505;--bg-elevated: #0d0d0d;--bg-card: #121212;--border: rgba(255, 255, 255, .08);--text: #f5f5f5;--text-muted: #9ca3af;--text-dim: #6b7280;--red: #dc2626;--red-bright: #ef4444;--red-glow: rgba(220, 38, 38, .45);--gray: #374151;--font-display: "Bebas Neue", sans-serif;--font-body: "Inter", system-ui, sans-serif;--header-h: 72px;--radius: 12px;--max-w: 1200px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-body);background:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased}a{color:inherit;text-decoration:none}img{max-width:100%;display:block}button{font:inherit;cursor:pointer;border:none;background:none}.skip-link{position:absolute;left:-9999px;top:0;z-index:9999;padding:.75rem 1rem;background:var(--red);color:#fff}.skip-link:focus{left:1rem;top:1rem}.container{width:min(100% - 2rem,var(--max-w));margin-inline:auto}.section{padding:5rem 0}.section-label{display:block;font-size:.75rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--red-bright);margin-bottom:.5rem}.section-title{font-family:var(--font-display);font-size:clamp(2.25rem,5vw,3.5rem);letter-spacing:.04em;line-height:1;margin-bottom:1rem}.section-desc{color:var(--text-muted);max-width:42rem;margin-bottom:2.5rem}.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 1.5rem;border-radius:8px;font-weight:600;font-size:.9rem;letter-spacing:.04em;text-transform:uppercase;transition:transform .2s,box-shadow .2s,background .2s}.btn:hover{transform:translateY(-2px)}.btn-primary{background:linear-gradient(135deg,var(--red) 0%,#991b1b 100%);color:#fff;box-shadow:0 0 24px var(--red-glow)}.btn-primary:hover{box-shadow:0 0 36px var(--red-glow)}.btn-outline{border:1px solid rgba(220,38,38,.6);color:var(--text);background:#dc262614;box-shadow:0 0 20px #dc262626}.btn-outline:hover{background:#dc26262e;box-shadow:0 0 28px #dc26264d}.card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;transition:border-color .2s,transform .2s}.card:hover{border-color:#dc262659;transform:translateY(-3px)}.grid-2,.grid-3{display:grid;gap:1.25rem}@media(min-width:640px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(3,1fr)}}@media(min-width:1024px){.grid-3.cols-4{grid-template-columns:repeat(4,1fr)}}.footer{border-top:1px solid var(--border);padding:3rem 0 1.5rem;margin-top:2rem}.footer__grid{display:grid;gap:2rem;margin-bottom:2rem}@media(min-width:768px){.footer__grid{grid-template-columns:1.5fr 1fr auto;align-items:start}}.footer__logo{width:auto;height:48px;max-width:160px;margin-bottom:.75rem;object-fit:contain}.footer__brand p{color:var(--text-muted);font-size:.9rem}.footer nav ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}.footer nav a,.footer nav .footer__link,.footer nav .footer__link:visited{font-size:.85rem;color:var(--text-muted);text-decoration:none;transition:color .2s}.footer nav a:hover,.footer nav .footer__link:hover{color:var(--red-bright)}.footer__links{display:flex;flex-direction:column;gap:.5rem}.footer__links a{font-size:.85rem;color:var(--text-muted)}.footer__copy{padding-top:1.5rem;border-top:1px solid var(--border)}.footer__copy p{font-size:.8rem;color:var(--text-dim);text-align:center}.header{position:fixed;top:0;left:0;right:0;z-index:100;height:var(--header-h);transition:background .3s,border-color .3s,backdrop-filter .3s}.header--scrolled{background:#050505eb;border-bottom:1px solid var(--border);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.header__inner{display:flex;align-items:center;justify-content:space-between;height:var(--header-h);gap:1rem}.header__brand{display:flex;align-items:center;gap:.75rem;flex-shrink:0}.header__logo{width:auto;height:40px;max-width:140px;object-fit:contain}.header__name{font-family:var(--font-display);font-size:1.35rem;letter-spacing:.08em;line-height:1;white-space:nowrap}.header__nav ul{display:flex;align-items:center;gap:.25rem;list-style:none}.header__nav .header__link{display:block;padding:.5rem .65rem;font-size:.7rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);text-decoration:none;transition:color .2s}.header__nav .header__link:link,.header__nav .header__link:visited{color:var(--text-muted)}.header__nav .header__link:hover{color:var(--red-bright)}.header__toggle{display:none;flex-direction:column;gap:5px;padding:.5rem}.header__toggle span{display:block;width:22px;height:2px;background:var(--text);transition:transform .2s,opacity .2s}@media(max-width:1024px){.header__toggle{display:flex}.header__nav{position:fixed;inset:var(--header-h) 0 0 0;background:#050505fa;padding:1.5rem;transform:translate(100%);transition:transform .3s ease}.header__nav--open{transform:translate(0)}.header__nav ul{flex-direction:column;align-items:stretch;gap:0}.header__nav .header__link{padding:1rem;font-size:.85rem;border-bottom:1px solid var(--border)}}@media(min-width:1025px){.header__name{font-size:1.1rem}}.apply-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:200;display:flex;align-items:center;justify-content:center;padding:1.25rem;background:#000000bf;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);animation:apply-modal-fade .2s ease}@keyframes apply-modal-fade{0%{opacity:0}to{opacity:1}}.apply-modal__dialog{position:relative;width:min(100%,28rem);max-height:min(92vh,920px);overflow-y:auto;padding:2rem;background:var(--bg-elevated);border:1px solid rgba(220,38,38,.35);border-radius:calc(var(--radius) + 4px);box-shadow:0 24px 80px #0009,0 0 40px #dc26261f;animation:apply-modal-slide .25s ease}.apply-modal__dialog--wide{width:min(100%,48rem);padding:2.5rem 3rem}@keyframes apply-modal-slide{0%{opacity:0;transform:translateY(12px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.apply-modal__close{position:absolute;top:.85rem;right:.85rem;width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;font-size:1.5rem;line-height:1;color:var(--text-muted);border-radius:6px;transition:color .2s,background .2s}.apply-modal__close:hover{color:#fff;background:#ffffff0f}.apply-modal__head{margin-bottom:1.5rem;padding-bottom:1.25rem;border-bottom:1px solid rgba(255,255,255,.08)}.apply-modal__head .section-label{display:block;margin-bottom:.35rem}.apply-modal__title{font-family:var(--font-display);font-size:clamp(1.75rem,4vw,2.1rem);letter-spacing:.04em;line-height:1.05;margin-bottom:.35rem}.apply-modal__category{font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--red-bright);margin:0 0 .5rem}.apply-modal__meta{font-size:.85rem;font-weight:600;letter-spacing:.06em;color:var(--text-muted);margin:0 0 .65rem}.apply-modal__intro{color:var(--text-muted);font-size:.95rem;line-height:1.55;margin:0}.apply-modal__actions{display:flex;flex-direction:column;gap:.75rem;margin-top:.25rem}@media(min-width:480px){.apply-modal__actions{flex-direction:row;align-items:stretch}.apply-modal__actions .btn{flex:1}}.apply-form{display:flex;flex-direction:column;gap:1.35rem}.apply-form__grid{display:grid;gap:1.25rem 1.5rem;align-items:stretch}@media(min-width:560px){.apply-form__grid,.apply-form__grid--discord{grid-template-columns:1fr 1fr}.apply-form__grid--three{grid-template-columns:repeat(3,1fr)}}.apply-form__stack{display:flex;flex-direction:column;gap:1.25rem}.apply-form__field{display:grid;grid-template-rows:1fr auto;gap:.65rem;height:100%;min-width:0;min-height:6.5rem}.apply-form__field-head{display:flex;flex-direction:column;gap:.35rem}.apply-form__label{font-size:.78rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:var(--text-muted);line-height:1.3}.apply-form__hint{display:block;min-height:2.65rem;font-size:.75rem;line-height:1.45;color:var(--text-muted);opacity:.9}.apply-form__hint--empty{visibility:hidden}.apply-form__stack .apply-form__field{min-height:0;grid-template-rows:auto auto}.apply-form__stack .apply-form__hint{min-height:1.35rem}.apply-form__stack .apply-form__hint--empty{display:none}.apply-form__input{width:100%;min-height:3rem;padding:.8rem .95rem;font:inherit;font-size:.95rem;color:#fff;background:#00000059;border:1px solid rgba(255,255,255,.1);border-radius:8px;resize:vertical;transition:border-color .2s,box-shadow .2s}textarea.apply-form__input{min-height:6.25rem}.apply-form__input:focus{outline:none;border-color:#dc262699;box-shadow:0 0 0 3px #dc262626}.apply-form__error{margin:0;padding:.75rem .85rem;font-size:.9rem;line-height:1.45;color:#fecaca;background:#dc262626;border:1px solid rgba(220,38,38,.4);border-radius:8px}.apply-form__error--warn{color:#fde68a;background:#eab3081f;border-color:#eab30873}.apply-form__success{text-align:center;padding:1rem 0 .5rem}.apply-form__success-icon{width:3.75rem;height:3.75rem;margin:0 auto 1.25rem;display:flex;align-items:center;justify-content:center;font-size:1.75rem;font-weight:700;color:#fff;background:linear-gradient(135deg,#16a34a,#15803d);border-radius:50%;box-shadow:0 0 24px #16a34a59}.apply-form__success-title{margin-bottom:.75rem}.apply-form__success-text{margin-bottom:1.75rem;max-width:32rem;margin-inline:auto;line-height:1.55}.apply-modal__back{display:inline-block;font-size:.85rem;font-weight:600;color:var(--text-muted);background:none;border:none;padding:0;cursor:pointer;transition:color .2s}.apply-modal__back:hover{color:var(--red-bright)}.org-card{display:flex;flex-direction:column;height:100%;min-height:23rem;background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:border-color .2s,transform .2s}.org-card:hover{border-color:#dc262659;transform:translateY(-3px)}.org-card__media{position:relative;aspect-ratio:16 / 10;background:#0a0a0a;overflow:hidden}.org-card__img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover}.org-card__placeholder{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#1a1a1a,#0a0a0a)}.org-card__placeholder-emoji{font-size:3rem;opacity:.35}.org-card__badges{position:absolute;left:.75rem;bottom:.75rem;display:flex;flex-wrap:wrap;gap:.35rem}.org-card__badge{padding:.25rem .5rem;font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border-radius:4px}.org-card__badge--legal{background:#374151f2;color:#e5e7eb}.org-card__badge--illegal{background:#7f1d1df2;color:#fecaca}.org-card__badge--active{background:#166534f2;color:#bbf7d0}.org-card__body{display:flex;flex-direction:column;flex:1;padding:1.25rem}.org-card__title{font-size:1.1rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:.5rem;min-height:2.6rem;display:flex;align-items:center}.org-card__desc{flex:1;color:var(--text-muted);font-size:.9rem;line-height:1.55;margin-bottom:1.25rem;min-height:4.65rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.org-card__btn{margin-top:auto;width:100%;padding:.85rem 1rem;border-radius:8px;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;transition:background .2s,color .2s,box-shadow .2s,border-color .2s}.org-card__btn--primary{background:linear-gradient(135deg,var(--red) 0%,#991b1b 100%);color:#fff;border:1px solid transparent;box-shadow:0 0 20px var(--red-glow)}.org-card__btn--primary:hover{box-shadow:0 0 28px var(--red-glow)}.org-card__btn--outline{background:transparent;color:var(--red-bright);border:1px solid rgba(220,38,38,.5)}.org-card__btn--outline:hover{background:#dc26261f;color:#fff}.applications{position:relative}.applications__header{text-align:center;margin-bottom:3rem}.applications__header .section-label,.applications__header .section-title,.applications__header .section-desc{margin-inline:auto}.applications__header .section-desc{margin-bottom:0}.applications__panel{padding:2rem 2.25rem;background:linear-gradient(165deg,#ffffff08,#00000059);border:1px solid var(--border);border-radius:calc(var(--radius) + 4px)}.applications__panel+.applications__panel{margin-top:2.5rem}.applications__panel--illegal{border-color:#dc262633;background:linear-gradient(165deg,#7f1d1d14,#0006);text-align:center}.applications__group-title{font-family:var(--font-display);font-size:clamp(1.35rem,3vw,1.75rem);letter-spacing:.08em;text-transform:uppercase;text-align:center;margin-bottom:1.75rem;color:#fff}.applications__panel--illegal .applications__group-title{color:var(--red-bright)}.applications__cards{display:grid;gap:1.25rem;width:100%;align-items:stretch}.applications__cards--cols-3{grid-template-columns:1fr}@media(min-width:640px){.applications__cards--cols-3{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(min-width:1024px){.applications__cards--cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}.applications__cards>.org-card{width:100%;min-width:0}.applications__illegal-list{display:flex;flex-direction:column;align-items:center;gap:2.5rem;width:100%;max-width:72rem;margin-inline:auto}.applications__subgroup{width:100%;display:flex;flex-direction:column;align-items:center}.applications__subgroup-title{width:100%;max-width:28rem;font-size:.75rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--red-bright);margin-bottom:1.25rem;padding-bottom:.65rem;border-bottom:1px solid rgba(220,38,38,.25);text-align:center}.applications__cards--illegal{display:flex;flex-wrap:wrap;justify-content:center;align-items:stretch;gap:1.25rem;width:100%}.applications__cards--illegal>.org-card{width:min(100%,22rem);flex:0 1 min(100%,22rem)}@media(min-width:640px){.applications__cards--illegal>.org-card{width:min(calc(50% - .625rem),22rem);flex:0 1 min(calc(50% - .625rem),22rem)}}@media(min-width:1024px){.applications__cards--illegal>.org-card{width:min(calc(33.333% - .85rem),22rem);flex:0 1 min(calc(33.333% - .85rem),22rem);max-width:360px}}.applications__note{margin-top:2rem;padding:1rem 1.25rem;text-align:center;font-size:.9rem;color:var(--text-muted);background:#00000040;border:1px dashed var(--border);border-radius:var(--radius)}.applications__note strong{color:#fff}.community__inner{display:flex;flex-direction:column;gap:2rem;padding:2.5rem;border-color:#dc262640;background:linear-gradient(135deg,var(--bg-card) 0%,rgba(220,38,38,.08) 100%)}@media(min-width:768px){.community__inner{flex-direction:row;align-items:center;justify-content:space-between}}.community__actions{display:flex;flex-wrap:wrap;gap:1rem;flex-shrink:0}.faq__list{display:flex;flex-direction:column;gap:.5rem;width:100%}.faq__item{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--bg-card)}.faq__question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.1rem 1.25rem;text-align:left;font-weight:600;font-size:.95rem;color:var(--text)}.faq__chevron{width:10px;height:10px;border-right:2px solid var(--red-bright);border-bottom:2px solid var(--red-bright);transform:rotate(45deg);transition:transform .2s;flex-shrink:0}.faq__item--open .faq__chevron{transform:rotate(-135deg)}.faq__answer{max-height:0;overflow:hidden;transition:max-height .3s ease}.faq__item--open .faq__answer{max-height:24rem}.faq__answer p{padding:0 1.25rem 1.25rem;color:var(--text-muted);font-size:.9rem}.hero{position:relative;min-height:100vh;display:flex;align-items:center;padding-top:var(--header-h);overflow:hidden}.hero__bg{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(90deg,#050505f2,#05050599 45%,#050505d9),radial-gradient(ellipse 80% 60% at 20% 50%,rgba(220,38,38,.12) 0%,transparent 60%),var(--bg)}.hero__bg:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:48px 48px;-webkit-mask-image:linear-gradient(to bottom,black 40%,transparent 100%);mask-image:linear-gradient(to bottom,black 40%,transparent 100%)}.hero__glow{position:absolute;width:500px;height:500px;right:10%;top:30%;background:radial-gradient(circle,var(--red-glow) 0%,transparent 70%);filter:blur(60px);pointer-events:none}.hero__grid{position:relative;display:grid;gap:2rem;align-items:center;padding:3rem 0 6rem}@media(min-width:900px){.hero__grid{grid-template-columns:1fr 1.1fr;gap:3rem}}.hero__visual{display:flex;justify-content:center;order:2}@media(min-width:900px){.hero__visual{order:1;justify-content:flex-start}}.hero__media-box{width:min(100%,420px);aspect-ratio:1 / 1;border-radius:16px;overflow:hidden;border:1px solid var(--border);box-shadow:0 24px 80px #0009,inset 0 0 40px #dc26261a;background:#0a0a0a}.hero__media{width:100%;height:100%;object-fit:cover;display:block}.hero__content{order:1}@media(min-width:900px){.hero__content{order:2}}.hero__eyebrow{font-size:.75rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--red-bright);margin-bottom:1rem}.hero__title{font-family:var(--font-display);font-size:clamp(3rem,10vw,5.5rem);line-height:.95;letter-spacing:.04em;margin-bottom:1.25rem}.hero__title-accent{display:block;color:var(--red-bright);text-shadow:0 0 40px var(--red-glow),0 0 80px rgba(220,38,38,.3)}.hero__desc{color:var(--text-muted);font-size:1.05rem;max-width:32rem;margin-bottom:2rem}.hero__actions{display:flex;flex-wrap:wrap;gap:1rem}.hero__btn-icon{width:1.25rem;height:1.25rem}.rules__tabs{display:flex;gap:.5rem;margin-bottom:1.5rem;flex-wrap:wrap}.rules__tab{padding:.75rem 1.25rem;border-radius:8px;font-weight:600;font-size:.85rem;color:var(--text-muted);border:1px solid var(--border);transition:all .2s}.rules__tab--active,.rules__tab:hover{color:#fff;border-color:var(--red);background:#dc262626}.rules__notice{margin-bottom:2rem;border-color:#dc26264d}.rules__notice h4{margin-bottom:.5rem;color:var(--red-bright)}.rules__notice p{color:var(--text-muted);font-size:.9rem}.rules__grid h4{font-size:.95rem;margin-bottom:.35rem}.rules__grid p{font-size:.85rem;color:var(--text-muted)}.rules-preview__cta{margin-top:2rem;display:flex;justify-content:center}.specialties{background:linear-gradient(180deg,transparent 0%,rgba(220,38,38,.04) 50%,transparent 100%)}.specialties__card h3{font-size:1.15rem;margin-bottom:.5rem;color:var(--red-bright)}.specialties__quote{font-style:italic;color:var(--text-muted);font-size:.9rem;margin-bottom:1rem}.specialties__card ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}.specialties__card li{font-size:.9rem;color:var(--text-muted);padding-left:1rem;border-left:2px solid var(--red)}.specialties__notes{margin-top:2.5rem}.specialties__notes h4{font-size:.95rem;margin-bottom:.35rem}.specialties__notes p{font-size:.85rem;color:var(--text-muted)}.stats{margin-top:-3rem;position:relative;z-index:2;padding-bottom:2rem}.stats__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;list-style:none}@media(min-width:768px){.stats__grid{grid-template-columns:repeat(3,1fr)}}@media(min-width:1024px){.stats__grid{grid-template-columns:repeat(6,1fr)}}.stats__card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.35rem;padding:1.25rem .75rem;background:#121212e6;border:1px solid var(--border);border-radius:var(--radius);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.stats__icon{width:1.5rem;height:1.5rem;color:var(--red-bright);margin-bottom:.25rem}.stats__value{font-family:var(--font-display);font-size:2rem;letter-spacing:.04em;line-height:1}.stats__label{font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--text)}.stats__sub{font-size:.65rem;color:var(--text-dim);line-height:1.3}.vip-teaser__card{display:grid;gap:2rem;padding:2rem;border-color:#dc262640;background:linear-gradient(135deg,var(--bg-card) 0%,rgba(220,38,38,.06) 100%)}@media(min-width:768px){.vip-teaser__card{grid-template-columns:1.4fr 1fr;align-items:center;padding:2.5rem}}.vip-teaser__title{font-family:var(--font-display);font-size:clamp(2rem,4vw,2.75rem);letter-spacing:.04em;line-height:1;margin-bottom:.75rem}.vip-teaser__text{color:var(--text-muted);max-width:36rem;margin-bottom:1.5rem;line-height:1.6}.vip-teaser__icon{width:1.25rem;height:1.25rem}.vip-teaser__visual{position:relative;min-height:140px;border-radius:var(--radius);background:linear-gradient(#dc262614,#dc262614),repeating-linear-gradient(-45deg,transparent,transparent 8px,rgba(255,255,255,.02) 8px,rgba(255,255,255,.02) 16px);border:1px dashed rgba(220,38,38,.35);display:flex;align-items:center;justify-content:center}.vip-teaser__badge{font-size:.75rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--red-bright);padding:.5rem 1rem;border:1px solid rgba(220,38,38,.4);border-radius:999px;background:#0006}.rules-page{padding-top:calc(var(--header-h) + 2rem);padding-bottom:4rem}.rules-page__header{margin-bottom:2.5rem}.rules-page__back{display:inline-block;font-size:.85rem;font-weight:600;color:var(--text-muted);margin-bottom:1.5rem;transition:color .2s}.rules-page__back:hover{color:var(--red-bright)}.rules-page__tabs{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.5rem}.rules-page__section-head{margin-bottom:1.5rem}.rules-page__section-head h2{font-family:var(--font-display);font-size:2rem;letter-spacing:.04em;margin-bottom:.35rem}.rules-page__section-head p{color:var(--text-muted);font-size:.95rem}.rules-page__content{padding-bottom:2rem}.rules-page__gitbook{display:inline-block;margin-top:.75rem;font-size:.85rem;font-weight:600;color:var(--red-bright);transition:color .2s}.rules-page__gitbook:hover{color:#fff}.rules-page__tabs{max-height:12rem;overflow-y:auto}
