/* =========================
   ICEWEARCRAFT GLACIER UI
========================= */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.9), transparent 30%),
    linear-gradient(180deg, #edf6fb 0%, #d8ebf5 45%, #b7d5e3 100%);
  color: #1f2937;
  padding: 20px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.25), transparent 30%),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,.25), transparent 25%);
  animation: floatGlow 12s infinite ease-in-out;
  z-index: -1;
}

@keyframes floatGlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* =========================
   AUTH
========================= */

.auth-card {
  width: 100%;
  max-width: 420px;
  margin: 60px auto;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 20px 60px rgba(52, 92, 112, .18);
  backdrop-filter: blur(18px);
  text-align: center;
}

.snow {
  font-size: 48px;
  margin-bottom: 10px;
}

.auth-card h1 {
  color: #4d7282;
  letter-spacing: 3px;
  font-size: 32px;
  margin-bottom: 8px;
}

.tagline {
  color: #5f7f8d;
  margin-bottom: 24px;
  font-weight: 700;
}

.small-note {
  margin-top: 18px;
  font-size: 12px;
  color: #678492;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border: 1px solid rgba(120, 160, 178, .28);
  border-radius: 15px;
  background: rgba(255, 255, 255, .82);
  color: #1f2937;
  font-size: 15px;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #7baabd;
  box-shadow: 0 0 0 3px rgba(123, 170, 189, .18);
}

button,
.link-btn {
  border: none;
  padding: 13px 18px;
  border-radius: 999px;
  background: #7baabd;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: .2s ease;
}

button:hover,
.link-btn:hover {
  transform: translateY(-2px);
  background: #5f91a6;
}

.secondary-btn {
  width: 100%;
  margin-top: 10px;
  background: rgba(255, 255, 255, .7);
  color: #4d7282;
}

.auth-card button {
  width: 100%;
  margin-top: 8px;
}

/* =========================
   APP LAYOUT
========================= */

#app {
  max-width: 980px;
  margin: 0 auto;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(16px);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5f7f8d;
  font-weight: 900;
  margin-bottom: 6px;
}

#welcome {
  color: #4d7282;
  font-size: 24px;
}

.logout-btn {
  background: rgba(31, 41, 55, .82);
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.nav button {
  background: rgba(255, 255, 255, .7);
  color: #4d7282;
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
}

/* =========================
   CARDS
========================= */

#content {
  width: 100%;
}

.card,
.vip-card,
.hero-card,
.locked {
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 14px 40px rgba(52, 92, 112, .12);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 18px;
}

.hero-card {
  padding: 32px;
}

.hero-card h1 {
  font-size: 38px;
  color: #3f6474;
  margin-bottom: 12px;
}

.hero-card p,
.card p,
.vip-card p,
.locked p,
.section-title p {
  line-height: 1.65;
  color: #385363;
}

.card h2,
.card h3,
.vip-card h3,
.locked h2,
.section-title h2 {
  color: #4d7282;
  margin-bottom: 10px;
}

.centered {
  text-align: center;
}

.locked {
  text-align: center;
  padding: 46px 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #4d7282;
  font-weight: 800;
  font-size: 13px;
}

.section-title {
  margin-bottom: 18px;
  padding: 8px 4px;
}

/* =========================
   VIDEO
========================= */

.commercial-card h3 {
  margin-bottom: 15px;
}

.video-wrap {
    width: 100%;
    max-height: 220px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 14px;
    background: #111827;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 14px;
  background: #111827;
}

/* =========================
   ADMIN
========================= */

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.admin-user {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.7);
  margin-bottom: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-actions button {
  font-size: 12px;
  padding: 9px 12px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {
  body {
    padding: 14px;
  }

  .auth-card {
    margin: 28px auto;
    padding: 24px;
  }

  .app-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logout-btn {
    width: 100%;
  }

  .nav {
    flex-direction: column;
  }

  .nav button {
    width: 100%;
  }

  .hero-card h1 {
    font-size: 30px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}
.logo-wrap{
  text-align:center;
  margin-bottom:15px;
}

.app-logo{
  width:120px;
  height:120px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

.drop-image{
  width:100%;
  border-radius:16px;
  margin-bottom:15px;
  object-fit:cover;
  max-height:350px;
}

.featured-drop {
  background: linear-gradient(
    135deg,
    rgba(145, 200, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(145, 200, 255, 0.25);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.featured-drop .eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: #7cb7ff;
  margin-bottom: 10px;
}

.featured-drop h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.featured-drop p {
  margin: 6px 0;
  color: #d9e7f5;
}

.featured-drop span {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #7cb7ff;
  color: #081018;
  font-weight: 700;
}


.vip-membership-card {
  background: linear-gradient(145deg, #0d1117, #152733);
  color: white;
  border: 1px solid rgba(173, 216, 230, 0.45);
  border-radius: 28px;
  padding: 26px;
  margin: 20px 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.vip-membership-card h2 {
  font-size: 34px;
  margin: 8px 0 22px;
  letter-spacing: 2px;
}

.vip-card-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 0;
}

.vip-card-row span {
  color: #9fc8d8;
  font-weight: 700;
}

.vip-card-row strong {
  text-align: right;
}

.vip-card-footer {
  margin-top: 18px;
  color: #b9e7f5;
  font-weight: 800;
  letter-spacing: 1px;
}

.vip-membership-card {
  position: relative;
}

.vip-card-logo {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.85;
}

add the .founding-card CSS to style.css

.founder-premium-card {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(180, 230, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #071018, #101f2b 45%, #02070c);
  color: white;
  border: 1px solid rgba(210, 245, 255, 0.35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.founder-shine {
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.18) 48%,
    transparent 60%
  );
  transform: rotate(20deg);
  animation: founderShine 5s infinite;
}

@keyframes founderShine {
  0% { transform: translateX(-40%) rotate(20deg); }
  100% { transform: translateX(40%) rotate(20deg); }
}

.founder-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  z-index: 2;
}

.founder-eyebrow {
  letter-spacing: 4px;
  color: #b9ecff;
  font-weight: 800;
  font-size: 13px;
}

.founder-top h2 {
  margin: 8px 0 0;
  font-size: 42px;
  letter-spacing: 6px;
  color: white;
}

.founder-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(180, 235, 255, 0.45);
}

.founder-number {
  position: relative;
  z-index: 2;
  margin: 28px 0;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.founder-number span,
.founder-info-grid span {
  display: block;
  color: #a7d8e8;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-number strong {
  font-size: 52px;
  letter-spacing: 6px;
}

.founder-badge-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.lifetime-badge,
.collection-badge {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  background: rgba(185, 236, 255, 0.14);
  border: 1px solid rgba(185, 236, 255, 0.4);
  color: #d7f6ff;
}

.founder-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.founder-info-grid div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.founder-info-grid strong {
  color: white;
  font-size: 18px;
}

.founder-emblem{
    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:16px;

    color:#dff5ff;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.05);

    box-shadow:0 0 12px rgba(130,210,255,.35);

    backdrop-filter:blur(8px);
}

.qr-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.fake-qr {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px),
    linear-gradient(#fff 10px, transparent 10px),
    #09131c;
  background-size: 18px 18px;
  display: grid;
  place-items: center;
  color: #071018;
  font-size: 26px;
}

.qr-box p {
  font-weight: 800;
  color: #d7f6ff;
}

.founder-benefits {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.founder-benefits h3 {
  color: white;
  margin-bottom: 10px;
}

.founder-benefits p {
  margin: 7px 0;
  color: #d7f6ff;
  font-weight: 600;
}

.founder-footer {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  letter-spacing: 4px;
  font-weight: 900;
  color: #b9ecff;
}

.founder-premium-card{

position:relative;

overflow:hidden;

padding:30px;

border-radius:30px;

background:

linear-gradient(
145deg,
#090909,
#141414,
#050505
);

border:1px solid rgba(255,255,255,.15);

box-shadow:

0 25px 70px rgba(0,0,0,.55),

inset 0 0 40px rgba(255,255,255,.04);

color:white;

margin-top:25px;

}

.premium-shine{

position:absolute;

top:-150%;

left:-50%;

width:220%;

height:320%;

background:

linear-gradient(

120deg,

transparent,

rgba(255,255,255,.12),

transparent

);

transform:rotate(25deg);

animation:shine 7s infinite;

}

@keyframes shine{

0%{

transform:translateX(-100%) rotate(25deg);

}

100%{

transform:translateX(100%) rotate(25deg);

}

}

.premium-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

.premium-logo{

width:70px;

filter:drop-shadow(0 0 15px #8fdfff);

}

.premium-label{

color:#8fdfff;

letter-spacing:3px;

font-size:11px;

}

.premium-number{

font-size:38px;

font-weight:800;

margin:20px 0;

}

.premium-badges{

display:flex;

gap:10px;

margin-bottom:25px;

flex-wrap:wrap;

}

.badge-black{

background:#111;

padding:8px 16px;

border-radius:50px;

border:1px solid #777;

}

.badge-lifetime{

background:#5ad7ff;

color:black;

font-weight:700;

padding:8px 16px;

border-radius:50px;

}

.premium-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:18px;

margin-bottom:30px;

}

.premium-grid small{

display:block;

opacity:.6;

margin-bottom:4px;

}

.premium-grid strong{

font-size:15px;

}

.premium-qr{

display:flex;

justify-content:center;

margin:25px 0;

}

.premium-qr img{

width:120px;

background:white;

padding:8px;

border-radius:14px;

}

.premium-footer{

text-align:center;

letter-spacing:3px;

font-size:11px;

opacity:.7;

}


.vip-logo,
.vip-card-logo,
.founder-logo {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
}

.vip-card img,
.founder-premium-card img {
  max-width: 52px !important;
}

.drops-hero {
  margin: 28px 0 22px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(220,244,255,.55));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(50,90,110,.16);
}

.drops-hero h1 {
  margin: 8px 0;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1px;
  color: #243444;
}

.drops-hero p {
  color: #547487;
  font-weight: 700;
}

.drops-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

.drop-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: 0 24px 60px rgba(50,90,110,.2);
}

.drop-image-wrap {
  width: 100%;
  background: #071017;
}

.drop-image-large {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.drop-image-placeholder {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  background: linear-gradient(145deg, #05080b, #101c24);
}

.drop-info {
  padding: 26px;
}

.drop-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #79aebe;
}

.drop-info h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.05;
  color: #263b49;
}

.drop-description {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #405968;
}

.drop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(70,100,115,.18);
  border-bottom: 1px solid rgba(70,100,115,.18);
}

.drop-meta span {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7daabb;
}

.drop-meta strong {
  font-size: 28px;
  color: #1d2d38;
}

.drop-reserve-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px 22px;
  border-radius: 999px;
  border: none;
  background: #7eb2c3;
  color: white;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(70,130,150,.25);
}

.drop-empty {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
}

.glacier-progress {
  padding-bottom: 40px;
}

.progress-hero {
  margin: 28px 0 24px;
}

.progress-hero h1 {
  margin: 8px 0;
  font-size: 52px;
  line-height: .95;
  letter-spacing: -2px;
  color: #1e2d38;
}

.progress-hero p {
  font-weight: 800;
  color: #5b7f91;
}

.status-card,
.unlock-card {
  border-radius: 34px;
  padding: 28px;
  margin-bottom: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(218,244,255,.58));
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: 0 24px 60px rgba(47, 88, 108, .18);
}

.status-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.status-top span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #83afbf;
}

.status-top h2 {
  margin: 6px 0 0;
  font-size: 64px;
  line-height: .9;
  color: #182633;
}

.status-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(126,178,195,.18);
  border: 1px solid rgba(126,178,195,.45);
  color: #355c69;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.progress-track {
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  margin: 30px 0 16px;
  background: rgba(40,70,85,.16);
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #79aec0, #c6f3ff);
  box-shadow: 0 0 22px rgba(130,200,220,.5);
}

.status-row {
  display: flex;
  justify-content: space-between;
  color: #304a58;
  font-weight: 900;
}

.status-note {
  margin-top: 18px;
  color: #557889;
  font-weight: 800;
}

.unlock-card h2 {
  margin-top: 0;
  font-size: 34px;
  color: #243847;
}

.unlock-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(50,80,95,.14);
  opacity: .42;
}

.unlock-item:last-child {
  border-bottom: none;
}

.unlock-item.active {
  opacity: 1;
}

.unlock-item span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126,178,195,.2);
  color: #5f9dae;
  font-weight: 900;
}

.unlock-item h3 {
  margin: 0 0 4px;
  color: #203442;
  font-size: 21px;
}

.unlock-item p {
  margin: 0;
  color: #638393;
  font-weight: 700;
}

.home-v2 {
  padding-bottom: 40px;
}

.home-hero {
  margin: 24px 0 26px;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(10,18,24,.96), rgba(32,51,61,.9));
  color: white;
  box-shadow: 0 30px 70px rgba(20,50,65,.28);
}

.home-hero h1 {
  margin: 8px 0 4px;
  font-size: 28px;
  color: rgba(255,255,255,.86);
}

.temperature {
  font-size: 86px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -4px;
  color: #dff8ff;
  text-shadow: 0 0 26px rgba(140,220,245,.42);
}

.home-hero p {
  color: #a8d4e2;
  font-weight: 800;
}

.experience-card,
.activity-card {
  margin: 26px 0;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(218,244,255,.58));
  border: 1px solid rgba(255,255,255,.94);
  box-shadow: 0 24px 60px rgba(47,88,108,.18);
}

.dark-card {
  background: linear-gradient(145deg, #071017, #182832);
  color: white;
  border: 1px solid rgba(160,220,240,.25);
}

.experience-card h2,
.activity-card h2 {
  margin: 8px 0 10px;
  font-size: 32px;
  line-height: 1.05;
  color: #243847;
}

.dark-card h2 {
  color: white;
}

.experience-card p {
  color: #5d7d8d;
  font-weight: 700;
  line-height: 1.45;
}

.dark-card p {
  color: #a8d4e2;
}

.experience-card button {
  margin-top: 16px;
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 999px;
  background: #7eb2c3;
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.dark-card button {
  background: rgba(180,235,255,.18);
  border: 1px solid rgba(180,235,255,.35);
}

.activity-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(50,80,95,.14);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(126,178,195,.18);
}

.activity-item p {
  margin: 0;
  color: #314b5a;
  font-weight: 800;
}

.theater-page {
  padding-bottom: 42px;
}

.theater-hero {
  margin: 28px 0 26px;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(151, 225, 255, .22), transparent 34%),
    linear-gradient(145deg, #071017, #152531);
  color: white;
  box-shadow: 0 30px 80px rgba(10,30,45,.32);
  border: 1px solid rgba(170,230,255,.22);
}

.theater-hero h1 {
  margin: 8px 0 12px;
  font-size: 48px;
  line-height: .95;
  letter-spacing: -2px;
  color: #f5fbff;
}

.theater-hero p {
  color: #a8d4e2;
  font-weight: 750;
  line-height: 1.45;
}

.theater-list {
  display: grid;
  gap: 30px;
}

.theater-card {
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(145deg, #071017, #142430);
  border: 1px solid rgba(170,230,255,.2);
  box-shadow: 0 28px 75px rgba(10,30,45,.34);
  color: white;
}

.now-playing {
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 3px;
  color: #aee8ff;
  border-bottom: 1px solid rgba(170,230,255,.14);
}

.theater-video {
  background: #000;
}

.theater-video .video-wrap {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.theater-video iframe,
.theater-video video,
.theater-video .video-player {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  background: #000;
}

.theater-info {
  padding: 26px;
}

.theater-info h2 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.05;
  color: white;
}

.theater-info p {
  color: #a8d4e2;
  line-height: 1.5;
  font-weight: 700;
}

.theater-empty {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
}

.home-founder-strip {
  margin: 26px 0;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(151,225,255,.18), transparent 38%),
    linear-gradient(145deg, #071017, #152531);
  color: white;
  border: 1px solid rgba(170,230,255,.22);
  box-shadow: 0 24px 60px rgba(10,30,45,.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-founder-strip h2 {
  margin: 8px 0 6px;
  font-size: 34px;
  line-height: 1;
  color: #f5fbff;
}

.home-founder-strip p {
  margin: 0;
  color: #a8d4e2;
  font-weight: 800;
}

.founder-strip-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(150,225,255,.25);
}

/* ICEWEARCRAFT PREMIUM LOGIN UPGRADE */

body {
  background:
    radial-gradient(circle at top, rgba(185, 225, 240, 0.75), transparent 35%),
    linear-gradient(180deg, #eef8fc 0%, #d9edf5 45%, #b9d8e4 100%);
}

#auth {
  min-height: 100vh;
  padding: 38px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#auth::before {
  content: "❄ ❅ ❄ ❆ ❄ ❅ ❄ ❆";
  position: fixed;
  top: -40px;
  left: 0;
  width: 100%;
  font-size: 26px;
  letter-spacing: 22px;
  opacity: 0.25;
  animation: snowfall 9s linear infinite;
  pointer-events: none;
}

@keyframes snowfall {
  0% { transform: translateY(-80px); }
  100% { transform: translateY(110vh); }
}

#auth .auth-card,
#auth > div {
  width: 100%;
  max-width: 420px;
  padding: 38px 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 30px 80px rgba(79, 132, 153, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  animation: iceFadeIn 0.8s ease both;
}

@keyframes iceFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#auth img,
#auth .logo {
  display: block;
  margin: 0 auto 24px;
  max-width: 132px;
  border-radius: 18px;
  filter: drop-shadow(0 0 18px rgba(130, 190, 210, 0.85));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(130, 190, 210, 0.65));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(160, 220, 240, 1));
  }
}

#auth h1,
#auth h2 {
  text-align: center;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #31586a;
  margin-bottom: 10px;
}

#auth p {
  text-align: center;
  color: #5f7f8c;
  font-weight: 700;
}

#auth input {
  width: 100%;
  min-height: 58px;
  margin: 14px 0;
  border-radius: 22px;
  border: 1px solid rgba(120, 160, 175, 0.25);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #27495a;
  outline: none;
}

#auth input:focus {
  border-color: rgba(115, 178, 200, 0.9);
  box-shadow: 0 0 0 4px rgba(135, 200, 220, 0.22);
}

#auth button {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  margin-top: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #83b7c9, #6da5ba);
  color: white;
  box-shadow: 0 14px 30px rgba(90, 150, 170, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#auth button:active {
  transform: scale(0.97);
  box-shadow: 0 8px 18px rgba(90, 150, 170, 0.22);
}

#auth button:nth-of-type(2) {
  background: rgba(255, 255, 255, 0.78);
  color: #42697a;
}

#auth h1,
#auth h2 {
    font-size: clamp(2rem, 8vw, 4rem);
    letter-spacing: .22rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #31586a;
    margin: 20px 0 10px;
}

/* Glacier Splash */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #eef8fc, #b8dce8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashFade 3s ease forwards;
}

#splash img {
  width: 150px;
  border-radius: 28px;
  filter: drop-shadow(0 0 28px rgba(120, 200, 230, 0.95));
}

@keyframes splashFade {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

