/**
 * 搖滾 Taichung｜me 專用 CSS
 *
 * 網址：https://taichungclub.pro/me/
 * 類型：固定頁面
 * 標題：關於搖滾taichungclub娛樂
 * 來源：全站備份中尚未外嵌的 <style> 區塊
 *
 * 台中比提網頁設計製作
 * 比提設計黑紫
 */

/* ===== 原頁面第 1 個 style 區塊 ===== */
*{
  box-sizing:border-box;
}
.elements-site-header{
  --elements-purple:#ad55ff;
  --elements-purple-dark:#4d1b73;
  --elements-silver:#eef0f6;
  --elements-bg:#050407;
  position:sticky;
  top:0;
  z-index:9999;
  width:100%;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(173,85,255,.14),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(12,7,18,.98),
      rgba(4,3,6,.98)
    );
  border-bottom:1px solid rgba(173,85,255,.34);
  box-shadow:
    0 14px 38px rgba(0,0,0,.58),
    0 0 24px rgba(173,85,255,.08);
  font-family:
    "Noto Sans TC",
    "Microsoft JhengHei",
    sans-serif;
}
.elements-header-inner{
  width:min(1180px,100%);
  min-height:82px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.elements-header-brand{
  display:flex;
  align-items:center;
  gap:13px;
  color:#fff;
  text-decoration:none;
  min-width:0;
}
.elements-header-logo{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(205,138,255,.65);
  box-shadow:
    0 0 22px rgba(173,85,255,.34),
    inset 0 1px 0 rgba(255,255,255,.08);
  background:#0a0610;
}
.elements-header-logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
.elements-header-name{
  line-height:1.15;
  min-width:0;
}
.elements-header-name strong{
  display:block;
  color:#fff;
  font-size:21px;
  font-weight:1000;
  letter-spacing:.02em;
  white-space:nowrap;
}
.elements-header-name small{
  display:block;
  margin-top:5px;
  color:#bd93df;
  font-size:11px;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.elements-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.elements-header-phone{
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-weight:1000;
  font-size:15px;
  border:1px solid rgba(205,138,255,.66);
  background:
    linear-gradient(
      135deg,
      rgba(133,44,191,.46),
      rgba(27,10,40,.92)
    );
  box-shadow:
    0 0 22px rgba(173,85,255,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition:.2s ease;
}
.elements-header-phone:hover{
  border-color:#dcabff;
  box-shadow:
    0 0 28px rgba(173,85,255,.38);
  transform:translateY(-1px);
}
.elements-menu-button{
  width:50px;
  height:50px;
  padding:0;
  border-radius:16px;
  border:1px solid rgba(188,110,255,.46);
  background:#0c0810;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.elements-menu-button span{
  width:22px;
  height:2px;
  border-radius:99px;
  background:#eee8f5;
  transition:.25s ease;
  box-shadow:
    0 0 7px rgba(173,85,255,.45);
}
.elements-menu-button.is-open span:nth-child(1){
  transform:
    translateY(7px)
    rotate(45deg);
}
.elements-menu-button.is-open span:nth-child(2){
  opacity:0;
}
.elements-menu-button.is-open span:nth-child(3){
  transform:
    translateY(-7px)
    rotate(-45deg);
}
.elements-header-nav{
  display:none;
  width:min(
    1180px,
    calc(100% - 28px)
  );
  margin:0 auto 14px;
  padding:14px;
  border-radius:22px;
  border:
    1px solid
    rgba(183,94,248,.36);
  background:
    linear-gradient(
      180deg,
      rgba(20,10,30,.98),
      rgba(6,4,8,.99)
    );
  box-shadow:
    0 22px 50px rgba(0,0,0,.55),
    inset 0 0 25px rgba(144,48,211,.08);
}
.elements-header-nav.is-open{
  display:grid;
  grid-template-columns:
    repeat(4,1fr);
  gap:10px;
}
.elements-header-nav a{
  min-height:58px;
  padding:10px 12px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#e9ddf5;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  border:
    1px solid
    rgba(178,102,231,.20);
  background:
    rgba(255,255,255,.025);
  transition:.2s ease;
}
.elements-header-nav a:hover{
  color:#fff;
  border-color:
    rgba(201,132,255,.62);
  background:
    rgba(126,42,177,.20);
  transform:
    translateY(-1px);
}
@media(max-width:720px){
  .elements-header-inner{
    min-height:72px;
    padding:
      10px
      13px;
  }
  .elements-header-logo{
    width:48px;
    height:48px;
    flex-basis:48px;
    border-radius:15px;
  }
  .elements-header-name strong{
    font-size:16px;
  }
  .elements-header-name small{
    font-size:9px;
  }
  .elements-header-phone{
    display:none;
  }
  .elements-header-nav.is-open{
    grid-template-columns:1fr;
  }
  .elements-header-nav a{
    min-height:52px;
  }
}

/* ===== 原頁面第 2 個 style 區塊 ===== */
.elements-rock-widget,
.elements-rock-widget *{
  box-sizing:border-box;
}
.elements-rock-widget{
  width:100%;
  margin:0 !important;
  padding:0 !important;
  display:block;
  background:#050407;
  color:#f7f3ff;
  font-family:"Noto Sans TC","Microsoft JhengHei",sans-serif;
}
.elements-rock-widget > .elements-site-header{
  margin-top:0 !important;
}
.elements-about-stage{
  width:100%;
  padding:6px 18px 18px;
  background:#050407;
}
.elements-site-header{
  --elements-purple:#ad55ff;
  --elements-purple-dark:#4d1b73;
  --elements-silver:#eef0f6;
  --elements-bg:#050407;
  /*
   * 改為正常文件流，避免頁首黏在視窗上方遮住內容。
   * 若日後確定要恢復黏性頁首，再改回 position:sticky。
   */
  position:relative;
  top:auto;
  z-index:50;
  width:100%;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(173,85,255,.14),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(12,7,18,.98),
      rgba(4,3,6,.98)
    );
  border-bottom:1px solid rgba(173,85,255,.34);
  box-shadow:
    0 14px 38px rgba(0,0,0,.58),
    0 0 24px rgba(173,85,255,.08);
  font-family:
    "Noto Sans TC",
    "Microsoft JhengHei",
    sans-serif;
}
.elements-header-inner{
  width:min(1180px,100%);
  min-height:82px;
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.elements-header-brand{
  display:flex;
  align-items:center;
  gap:13px;
  color:#fff;
  text-decoration:none;
  min-width:0;
}
.elements-header-logo{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(205,138,255,.65);
  box-shadow:
    0 0 22px rgba(173,85,255,.34),
    inset 0 1px 0 rgba(255,255,255,.08);
  background:#0a0610;
}
.elements-header-logo img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
.elements-header-name{
  line-height:1.15;
  min-width:0;
}
.elements-header-name strong{
  display:block;
  color:#fff;
  font-size:21px;
  font-weight:1000;
  letter-spacing:.02em;
  white-space:nowrap;
}
.elements-header-name small{
  display:block;
  margin-top:5px;
  color:#bd93df;
  font-size:11px;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.elements-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.elements-header-phone{
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
  text-decoration:none;
  font-weight:1000;
  font-size:15px;
  border:1px solid rgba(205,138,255,.66);
  background:
    linear-gradient(
      135deg,
      rgba(133,44,191,.46),
      rgba(27,10,40,.92)
    );
  box-shadow:
    0 0 22px rgba(173,85,255,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition:.2s ease;
}
.elements-header-phone:hover{
  border-color:#dcabff;
  box-shadow:
    0 0 28px rgba(173,85,255,.38);
  transform:translateY(-1px);
}
.elements-menu-button{
  width:50px;
  height:50px;
  padding:0;
  border-radius:16px;
  border:1px solid rgba(188,110,255,.46);
  background:#0c0810;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.elements-menu-button span{
  width:22px;
  height:2px;
  border-radius:99px;
  background:#eee8f5;
  transition:.25s ease;
  box-shadow:
    0 0 7px rgba(173,85,255,.45);
}
.elements-menu-button.is-open span:nth-child(1){
  transform:
    translateY(7px)
    rotate(45deg);
}
.elements-menu-button.is-open span:nth-child(2){
  opacity:0;
}
.elements-menu-button.is-open span:nth-child(3){
  transform:
    translateY(-7px)
    rotate(-45deg);
}
.elements-header-nav{
  display:none;
  width:min(
    1180px,
    calc(100% - 28px)
  );
  margin:0 auto 14px;
  padding:14px;
  border-radius:22px;
  border:
    1px solid
    rgba(183,94,248,.36);
  background:
    linear-gradient(
      180deg,
      rgba(20,10,30,.98),
      rgba(6,4,8,.99)
    );
  box-shadow:
    0 22px 50px rgba(0,0,0,.55),
    inset 0 0 25px rgba(144,48,211,.08);
}
.elements-header-nav.is-open{
  display:grid;
  grid-template-columns:
    repeat(4,1fr);
  gap:10px;
}
.elements-header-nav a{
  min-height:58px;
  padding:10px 12px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#e9ddf5;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  border:
    1px solid
    rgba(178,102,231,.20);
  background:
    rgba(255,255,255,.025);
  transition:.2s ease;
}
.elements-header-nav a:hover{
  color:#fff;
  border-color:
    rgba(201,132,255,.62);
  background:
    rgba(126,42,177,.20);
  transform:
    translateY(-1px);
}
@media(max-width:720px){
  .elements-header-inner{
    min-height:72px;
    padding:
      10px
      13px;
  }
  .elements-header-logo{
    width:48px;
    height:48px;
    flex-basis:48px;
    border-radius:15px;
  }
  .elements-header-name strong{
    font-size:16px;
  }
  .elements-header-name small{
    font-size:9px;
  }
  .elements-header-phone{
    display:none;
  }
  .elements-header-nav.is-open{
    grid-template-columns:1fr;
  }
  .elements-header-nav a{
    min-height:52px;
  }
}
.elements-about-page{
  --purple:#ad55ff;
  --purple-deep:#4b176e;
  --silver:#eef0f6;
  --muted:#c8bbd4;
  --line:rgba(190,106,255,.34);
  width:min(100%,1120px);
  margin:0 auto;
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(203,137,255,.55);
  background:
    radial-gradient(circle at 84% 8%,rgba(151,56,228,.20),transparent 28%),
    radial-gradient(circle at 8% 92%,rgba(93,24,146,.18),transparent 28%),
    linear-gradient(150deg,#050407,#0a0710 48%,#030204);
  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    inset 0 0 70px rgba(139,51,207,.06);
}
.elements-about-page:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,transparent 0 49.8%,rgba(255,255,255,.014) 50%,transparent 50.2%),
    linear-gradient(0deg,transparent 0 49.8%,rgba(255,255,255,.011) 50%,transparent 50.2%);
  background-size:82px 82px;
  opacity:.55;
}
.elements-about-inner{
  position:relative;
  z-index:2;
  padding:clamp(14px,2.4vw,28px) clamp(22px,4vw,48px) clamp(22px,4vw,48px);
}
.elements-about-hero{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:32px;
  align-items:center;
}
.elements-about-image-shell{
  position:relative;
  border-radius:30px;
  padding:12px;
  border:1px solid rgba(205,138,255,.50);
  background:
    radial-gradient(circle at 30% 20%,rgba(188,98,255,.20),transparent 42%),
    linear-gradient(145deg,#17101f,#060408);
  box-shadow:
    0 0 28px rgba(173,85,255,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.elements-about-image-shell:before{
  content:"ROCK TAICHUNG";
  position:absolute;
  left:18px;
  top:18px;
  z-index:2;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(6,4,8,.76);
  border:1px solid rgba(205,138,255,.36);
  color:#dfc7f6;
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
  backdrop-filter:blur(8px);
}
.elements-about-image-shell img{
  width:100%;
  aspect-ratio:1/1;
  display:block;
  object-fit:cover;
  border-radius:22px;
}
.elements-about-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--purple);
  font-size:13px;
  font-weight:1000;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.elements-about-kicker:before{
  content:"";
  width:46px;
  height:2px;
  background:linear-gradient(90deg,var(--purple),transparent);
  box-shadow:0 0 14px var(--purple);
}
.elements-about-title{
  margin:14px 0 0;
  font-size:clamp(36px,6vw,78px);
  line-height:.98;
  letter-spacing:-.045em;
  font-weight:1000;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.94);
  background:linear-gradient(180deg,#fff,#9498a2 44%,#f7f8fb 58%,#737780);
  -webkit-background-clip:text;
  background-clip:text;
  filter:drop-shadow(0 8px 14px rgba(0,0,0,.45));
}
.elements-about-lead{
  margin:18px 0 0;
  color:#d6cce0;
  font-size:clamp(15px,1.4vw,19px);
  line-height:1.9;
}
.elements-about-highlight{
  color:#d9a2ff;
  font-weight:1000;
  text-shadow:0 0 14px rgba(173,85,255,.28);
}
.elements-about-tags{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.elements-about-tag{
  padding:9px 13px;
  border-radius:999px;
  border:1px solid rgba(192,108,255,.28);
  background:rgba(111,38,160,.14);
  color:#dfd1eb;
  font-size:13px;
  font-weight:900;
}
.elements-about-sections{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.elements-about-card{
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(18,10,26,.94),rgba(6,4,8,.96));
  box-shadow:inset 0 0 24px rgba(146,47,223,.06);
}
.elements-about-card.elements-wide{
  grid-column:1/-1;
}
.elements-about-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 11px;
  border-radius:13px;
  color:#efdfff;
  font-weight:1000;
  border:1px solid rgba(205,138,255,.50);
  background:rgba(122,42,176,.22);
  box-shadow:0 0 15px rgba(173,85,255,.16);
}
.elements-about-card h2{
  margin:14px 0 10px;
  color:#f1e6fb;
  font-size:22px;
  line-height:1.35;
}
.elements-about-card p,
.elements-about-card li{
  color:#cbc2d2;
  font-size:15px;
  line-height:1.85;
}
.elements-about-card p{margin:0}
.elements-about-card ul{
  margin:10px 0 0;
  padding-left:1.25em;
}
.elements-about-card li+li{margin-top:6px}
.elements-about-stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.elements-about-stat{
  min-height:104px;
  padding:16px 12px;
  border-radius:16px;
  border:1px solid rgba(190,106,255,.22);
  background:rgba(100,31,145,.12);
  text-align:center;
}
.elements-about-stat b{
  display:block;
  color:#fff;
  font-size:28px;
  line-height:1.1;
}
.elements-about-stat span{
  display:block;
  margin-top:8px;
  color:#bda9cb;
  font-size:13px;
  font-weight:900;
}
.elements-about-contact{
  margin-top:26px;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(205,138,255,.48);
  background:
    radial-gradient(circle at 12% 50%,rgba(173,85,255,.16),transparent 30%),
    linear-gradient(135deg,#130a1d,#07050a);
}
.elements-about-contact h2{
  margin:0;
  color:#fff;
  font-size:24px;
}
.elements-about-contact p{
  margin:9px 0 16px;
  color:#cfc5d8;
  line-height:1.75;
}
.elements-about-actions{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
}
.elements-about-phone,
.elements-about-home{
  min-height:58px;
  padding:0 20px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:1000;
  font-size:17px;
}
.elements-about-phone{
  color:#fff;
  border:1px solid rgba(215,157,255,.72);
  background:linear-gradient(135deg,#7f2fc2,#351249 60%,#14091d);
  box-shadow:0 0 24px rgba(173,85,255,.26),inset 0 1px 0 rgba(255,255,255,.08);
}
.elements-about-home{
  color:#111;
  border:1px solid rgba(255,255,255,.65);
  background:linear-gradient(180deg,#f7f7fa,#aeb2bc);
}
.elements-business-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.elements-business-item{
  min-height:86px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(190,106,255,.22);
  background:rgba(100,31,145,.10);
}
.elements-business-item span{
  display:block;
  color:#a994b8;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
}
.elements-business-item strong{
  display:block;
  margin-top:7px;
  color:#f3e9fb;
  font-size:15px;
  line-height:1.55;
  word-break:break-word;
}
.elements-business-item a{
  color:#ddb5ff;
  text-decoration:none;
}
.elements-business-note{
  margin-top:14px;
  padding:15px 16px;
  border-left:3px solid var(--purple);
  background:rgba(101,33,148,.13);
  color:#d8ccdf;
  line-height:1.8;
  font-size:14px;
}
@media(max-width:760px){
  .elements-about-stage{padding:4px 10px 10px}
  .elements-about-page{border-radius:24px}
  .elements-about-inner{padding:14px 15px 22px}
  .elements-about-hero{grid-template-columns:1fr}
  .elements-about-sections{grid-template-columns:1fr}
  .elements-about-card.elements-wide{grid-column:1}
  .elements-about-stats{grid-template-columns:1fr}
  .elements-about-actions{grid-template-columns:1fr}
  .elements-business-grid{grid-template-columns:1fr}
}
