@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap');

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  overflow-x:hidden;
  background:#ffeff9;
  color:#573066;
  font-family:'Nunito',Arial,sans-serif;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 2px,transparent 2px),
    linear-gradient(90deg,rgba(255,255,255,.7) 2px,transparent 2px);
  background-size:34px 34px;
}

.bg-blobs{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 10%,#fff275 0 9%,transparent 25%),
    radial-gradient(circle at 90% 8%,#80ffdb 0 10%,transparent 25%),
    radial-gradient(circle at 50% 100%,#a0c4ff 0 12%,transparent 28%);
}

.doodle{
  position:fixed;
  z-index:1;
  pointer-events:none;
  color:white;
  font-size:34px;
  font-weight:900;
  text-shadow:0 4px 0 rgba(255,112,166,.45);
}

.d1{top:16%;left:7%;}
.d2{top:22%;right:8%;}
.d3{bottom:12%;left:10%;}
.d4{bottom:18%;right:9%;}

.container{
  position:relative;
  z-index:2;
  width:min(1200px,calc(100% - 40px));
  margin:0 auto;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:24px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:inherit;
}

.brand-icon{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:3px solid white;
  border-radius:24px;
  background:linear-gradient(135deg,#ff70a6,#ffd166,#80ffdb);
  font-size:34px;
  box-shadow:0 8px 0 rgba(123,44,191,.18);
}

.brand-name{
  display:block;
  color:#7b2cbf;
  font-size:46px;
  font-weight:900;
  line-height:.9;
  letter-spacing:-.07em;
  text-shadow:2px 2px 0 white;
}

.brand-sub{
  display:block;
  width:max-content;
  margin-top:6px;
  padding:5px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:#ff4fa3;
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:10px;
  border:3px solid white;
  border-radius:32px;
  background:rgba(255,248,253,.78);
  box-shadow:0 6px 0 rgba(128,255,219,.35);
}

nav a{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(90deg,#ffc6ff,#bde0fe);
  color:#573066;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  text-transform:lowercase;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(310px,.75fr);
  gap:28px;
  align-items:center;
  padding:42px 0 28px;
}

.loading-pill{
  display:inline-flex;
  padding:14px 20px;
  border:3px solid white;
  border-radius:999px;
  background:#fff275;
  color:#7b2cbf;
  font-weight:900;
  box-shadow:0 6px 0 rgba(255,112,166,.35);
  transform:rotate(-2deg);
}

.hero h1{
  max-width:760px;
  margin-top:22px;
  color:#ff4fa3;
  font-size:clamp(32px,5vw,58px);
  font-weight:900;
  line-height:1;
  letter-spacing:-.055em;
  text-shadow:2px 2px 0 white;
}

.intro{
  max-width:650px;
  margin-top:22px;
  padding:22px;
  border:3px solid white;
  border-radius:32px;
  background:rgba(255,255,255,.76);
  color:#573066;
  font-size:18px;
  font-weight:800;
  line-height:1.75;
  box-shadow:0 8px 0 rgba(160,196,255,.35);
}

.contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.contact{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border:3px solid white;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
}

.twitter{
  background:#80ffdb;
  color:#573066;
  box-shadow:0 7px 0 #4cc9f0;
}

.mail{
  background:#ff70a6;
  color:white;
  box-shadow:0 7px 0 #c77dff;
}

.icon-svg{
  width:24px;
  height:24px;
  display:inline-flex;
}

.icon-svg svg{
  width:100%;
  height:100%;
  fill:currentColor;
}

.party-select{
  transform:rotate(2deg);
  padding:12px;
  border:3px solid white;
  border-radius:32px;
  background:rgba(255,255,255,.75);
  box-shadow:0 8px 0 rgba(255,112,166,.25);
}

.party-window{
  border-radius:26px;
  background:#bde0fe;
  padding:16px;
}

.party-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.party-head span:first-child{
  padding:9px 15px;
  border-radius:999px;
  background:#ff70a6;
  color:white;
  font-size:14px;
  font-weight:900;
}

.party-head span:last-child{
  font-size:34px;
}

.mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.mini-class{
  min-height:92px;
  display:grid;
  place-items:center;
  gap:3px;
  padding:8px;
  border:3px solid white;
  border-radius:22px;
  color:white;
  text-align:center;
  font-size:12px;
  font-weight:900;
  box-shadow:0 5px 0 rgba(87,48,102,.18);
}

.mini-class span{
  display:block;
  font-size:28px;
}

.members{
  position:relative;
  margin:40px 0 70px;
  padding:34px;
  border:4px solid white;
  border-radius:48px;
  background:rgba(255,248,253,.70);
  box-shadow:0 12px 0 rgba(123,44,191,.12);
  backdrop-filter:blur(10px);
}

.members-title{
  margin-bottom:28px;
  text-align:center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.members-title p{
  display:inline-flex;
  gap:6px;
  padding:10px 18px;
  border:3px solid white;
  border-radius:999px;
  background:#fff275;
  color:#7b2cbf;
  font-size:14px;
  font-weight:900;
  box-shadow:0 5px 0 rgba(255,112,166,.35);
}

.members-title h2{
  display:inline-block;
  margin-top:14px;
  padding:15px 28px;
  border-radius:32px;
  background:linear-gradient(90deg,#ffc6ff,white,#bde0fe);
  color:#ff4fa3;
  font-size:clamp(38px,5vw,68px);
  font-weight:900;
  line-height:1;
  letter-spacing:-.07em;
  text-shadow:3px 3px 0 white;
}

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

.card{
  position:relative;
  overflow:hidden;
  padding:16px;
  border:3px solid white;
  border-radius:34px;
  box-shadow:0 8px 0 rgba(87,48,102,.14);
  transition:transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform:translateY(-5px) rotate(-1deg);
  box-shadow:0 12px 0 rgba(255,112,166,.22);
}

.card::before{
  content:"";
  position:absolute;
  width:115px;
  height:115px;
  right:-35px;
  top:-38px;
  border-radius:999px;
  background:rgba(255,255,255,.36);
}

.card::after{
  content:"";
  position:absolute;
  width:95px;
  height:95px;
  left:-35px;
  bottom:-40px;
  border-radius:999px;
  background:rgba(255,255,255,.24);
}

.card-inner{
  position:relative;
  z-index:1;
  min-height:190px;
  padding:18px;
  border:3px solid white;
  border-radius:26px;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(10px);
}

.card-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}

.class-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:3px solid white;
  border-radius:20px;
  background:var(--class-color);
  color:white;
  font-size:32px;
  box-shadow:0 5px 0 rgba(87,48,102,.14);
}

.card h4{
  color:var(--class-color);
  background:none !important;
  font-size:34px;
  font-weight:900;
  line-height:.95;
  letter-spacing:-.06em;
  text-shadow:1px 1px 0 white;
}

.role{
  position:relative;
  overflow:hidden;
  min-height:76px;
  padding:14px 16px;
  border:2px solid white;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  color:#6c4a78;
  font-size:15px;
  font-weight:800;
  line-height:1.55;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.barbarian{background:linear-gradient(135deg,#ff6b9f,#ff9b54,#ffd166);}
.bard{background:linear-gradient(135deg,#ff80c8,#c77dff,#80ffdb);}
.cleric{background:linear-gradient(135deg,#fff275,#ffb703,#ff70a6);}
.druid{background:linear-gradient(135deg,#70e000,#80ffdb,#b8f7d4);}
.fighter{background:linear-gradient(135deg,#ff9f1c,#ffbf69,#cb997e);}
.monk{background:linear-gradient(135deg,#72ddf7,#80ffdb,#b8f7d4);}
.paladin{background:linear-gradient(135deg,#ffd166,#fefae0,#90dbf4);}
.ranger{background:linear-gradient(135deg,#06d6a0,#90dbf4,#caffbf);}
.rogue{background:linear-gradient(135deg,#b517ff,#ff70a6,#a0c4ff);}
.sorcerer{background:linear-gradient(135deg,#ff70a6,#a0c4ff,#bdb2ff);}
.warlock{background:linear-gradient(135deg,#7b2cbf,#ff70a6,#4cc9f0);}
.wizard{background:linear-gradient(135deg,#4cc9f0,#a0c4ff,#ffc6ff);}

@media (max-width:1000px){
  .hero{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:680px){
  .container{
    width:min(100% - 24px,1200px);
  }

  .brand-name{
    font-size:38px;
  }

  .hero{
    padding-top:26px;
  }

  .party-select{
    transform:none;
  }

  .mini-grid,
  .cards{
    grid-template-columns:1fr;
  }

  .members{
    padding:20px;
    border-radius:34px;
  }

  .card h4{
    font-size:30px;
  }
}

.policy-page{
  margin:40px 0 70px;
  padding:34px;
  border:4px solid white;
  border-radius:48px;
  background:rgba(255,248,253,.70);
  box-shadow:0 12px 0 rgba(123,44,191,.12);
  backdrop-filter:blur(10px);
}

.policy-box{
  display:grid;
  gap:22px;
}

.policy-section{
  padding:24px;
  border:3px solid white;
  border-radius:30px;
  background:
    linear-gradient(
      135deg,
      rgba(255,198,255,.92),
      rgba(255,255,255,.96),
      rgba(189,224,254,.92)
    );
  box-shadow:0 8px 0 rgba(255,112,166,.12);
}

.policy-section h3{
  margin-bottom:14px;
  color:#ff4fa3;
  font-size:24px;
  font-weight:900;
  letter-spacing:-.03em;
}

.policy-section p{
  color:#573066;
  font-size:16px;
  font-weight:800;
  line-height:1.8;
}

.policy-section p + p{
  margin-top:14px;
}

.policy-contact{
  display:inline-block;
  margin-top:10px;
  padding:10px 16px;
  border-radius:999px;
  background:white;
  color:#7b2cbf !important;
  font-weight:900 !important;
}

.site-footer{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  padding:0 0 40px;
}

.site-footer a{
  display:inline-block;
  padding:12px 18px;
  border:3px solid white;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:#7b2cbf;
  font-size:13px;
  font-weight:900;
  text-decoration:none;
  text-transform:lowercase;
  box-shadow:0 6px 0 rgba(123,44,191,.12);
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.site-footer a:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 0 rgba(255,112,166,.18);
}

.apply-section{
  margin:0 0 70px;
}

.apply-box{
  position:relative;
  overflow:hidden;
  padding:42px 28px;
  border:4px solid white;
  border-radius:48px;
  background:
    linear-gradient(
      135deg,
      rgba(255,112,166,.92),
      rgba(255,198,255,.95),
      rgba(189,224,254,.92)
    );
  text-align:center;
  box-shadow:0 12px 0 rgba(123,44,191,.12);
}

.apply-box::before{
  content:"";
  position:absolute;
  inset:auto -40px -55px auto;
  width:180px;
  height:180px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
}

.apply-tag{
  display:inline-block;
  padding:10px 18px;
  border:3px solid white;
  border-radius:999px;
  background:#fff275;
  color:#7b2cbf;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  box-shadow:0 5px 0 rgba(255,112,166,.25);
}

.apply-box h2{
  margin-top:18px;
  color:white;
  font-size:clamp(42px,5vw,68px);
  font-weight:900;
  line-height:1;
  letter-spacing:-.07em;
  text-shadow:3px 3px 0 rgba(123,44,191,.18);
}

.apply-text{
  max-width:650px;
  margin:18px auto 0;
  color:#573066;
  font-size:18px;
  font-weight:800;
  line-height:1.7;
}

.apply-button{
  display:inline-block;
  margin-top:28px;
  padding:18px 28px;
  border:3px solid white;
  border-radius:999px;
  background:white;
  color:#ff4fa3;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
  text-transform:lowercase;
  box-shadow:0 8px 0 rgba(123,44,191,.16);
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.apply-button:hover{
  transform:translateY(-3px) rotate(-1deg);
  box-shadow:0 12px 0 rgba(255,112,166,.18);
}

.countdown{
  max-width:620px;
  margin:26px auto 0;
  padding:18px;
  border:3px solid white;
  border-radius:30px;
  background:rgba(255,255,255,.72);
  box-shadow:0 8px 0 rgba(123,44,191,.12);
}

.countdown-label{
  margin-bottom:14px;
  color:#7b2cbf;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}

.countdown-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.countdown-grid div{
  padding:12px 8px;
  border:3px solid white;
  border-radius:22px;
  background:linear-gradient(135deg,#fff275,#ffc6ff);
}

.countdown-grid strong{
  display:block;
  color:#ff4fa3;
  font-size:30px;
  font-weight:900;
  line-height:1;
}

.countdown-grid span{
  display:block;
  margin-top:5px;
  color:#573066;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

@media (max-width:680px){
  .countdown-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
