.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: all .2s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  will-change: transform, box-shadow, background, border-color;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(0, 174, 239, 0.05);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.12);
}

.btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 2px 4px rgba(0, 174, 239, 0.1);
}

.btn:focus-visible {
  outline: 2px solid rgba(0, 174, 239, 0.5);
  outline-offset: 2px;
}

.btn.primary {
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.25);
}

.btn.primary:hover {
  background: #009BD6;
  border-color: #009BD6;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.35);
}

.btn.primary:active {
  transform: translateY(1px) scale(.97);
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 4px;
  background: #FFFFFF;
  border: 1px solid var(--stroke);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--cyan);
}

.shots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.shot {
  grid-column: span 4;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: var(--shadow2);
  position: relative;
  transform-style: preserve-3d;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--cyan);
}

@media (max-width: 920px) {
  .shot { grid-column: span 6; }
}

@media (max-width: 520px) {
  .shot { grid-column: span 12; }
}

.shot .media {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid var(--stroke);
}

.shot:nth-child(1) .media { background-image: url("../img/gallery/gallery1.jpg"); }
.shot:nth-child(2) .media { background-image: url("../img/gallery/gallery2.jpg"); }
.shot:nth-child(3) .media { background-image: url("../img/gallery/gallery3.jpg"); }
.shot:nth-child(4) .media { background-image: url("../img/gallery/gallery4.jpg"); }
.shot:nth-child(5) .media { background-image: url("../img/gallery/gallery5.jpg"); }
.shot:nth-child(6) .media { background-image: url("../img/gallery/gallery6.jpg"); }

.shot .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
}

.shot .label {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--cyan);
  background: #FFFFFF;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 174, 239, 0.15);
}

.shot .meta {
  padding: 12px 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  position: relative;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.card {
  grid-column: span 4;
  padding: 24px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .25s var(--ease);
}

@media (max-width: 920px) {
  .card { grid-column: span 6; }
}

@media (max-width: 520px) {
  .card { grid-column: span 12; }
}

.card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 16px;
}

.icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.stats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--max);
  margin: 16px auto 0;
}

.stat {
  grid-column: span 3;
  padding: 20px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease);
}

.stat:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .stat { grid-column: span 6; }
}

@media (max-width: 520px) {
  .stat { grid-column: span 12; }
}

.k {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v {
  margin-top: 8px;
  font-weight: 900;
  font-size: 28px;
  color: var(--cyan);
  letter-spacing: -0.02em;
}

.v span {
  font-family: var(--font-mono);
}

.hint {
  margin-top: 6px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.panel {
  padding: 24px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease);
}

.panel:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 12px;
  position: relative;
}

.step {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
}

.num {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 auto;
}

.step b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.step span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.rules {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
  font-weight: 500;
}

.rules li { margin: 6px 0; }
.rules li strong { color: var(--cyan); font-weight: 700; }

.events-grid { margin-top: 16px; }

.event-main {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
}

.event-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--cyan);
}

.event-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}

.event-desc {
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
}

.event-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.event-count {
  min-width: 72px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.event-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.event-unit {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.event-main.event-live {
  border-color: var(--cyan);
  background: rgba(0, 174, 239, 0.02);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.1);
}

.event-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-side-head {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 2px solid var(--stroke);
  padding-bottom: 8px;
}

.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--stroke);
}

.event-list li:last-child { border-bottom: none; }

.event-list-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.event-list-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .events-grid { margin-top: 12px; }
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.feedback-input,
.feedback-textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s var(--ease);
  outline: none;
}

.feedback-textarea {
  min-height: 100px;
  resize: vertical;
}

.feedback-input::placeholder,
.feedback-textarea::placeholder {
  color: var(--soft);
}

.feedback-input:focus,
.feedback-textarea:focus {
  border-color: var(--cyan);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.feedback-row-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feedback-row-inline .feedback-field { flex: 1 1 180px; }

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.feedback-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.feedback-status {
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
  margin-top: 4px;
}

.feedback-status.ok { color: var(--cyan); }
.feedback-status.err { color: #FF6B6B; }

.feedback-select { position: relative; }

.feedback-select-display {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all .2s var(--ease);
}

.feedback-select-display.open,
.feedback-select-display:focus {
  border-color: var(--cyan);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.feedback-select-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feedback-select-arrow {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 174, 239, 0.1);
  color: var(--cyan);
}

.feedback-select-arrow::before {
  content: "";
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: var(--cyan) transparent transparent transparent;
  transform: translateY(1px);
}

.feedback-select-display.open .feedback-select-arrow::before {
  transform: translateY(-1px) rotate(180deg);
}

.feedback-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
  list-style: none;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 20;
}

.feedback-select-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.feedback-select-option {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: background .15s;
}

.feedback-select-option:hover {
  background: var(--panel2);
}

.feedback-select-option.active {
  background: rgba(0, 174, 239, 0.08);
  color: var(--cyan);
  font-weight: 700;
}

.feedback-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 680px) {
  #feedback .panel { padding: 16px; }
  .feedback-form { gap: 12px; }
  .feedback-row-inline { flex-direction: column; gap: 12px; }
  .feedback-row-inline .feedback-field { flex: 0 0 auto; }
  .feedback-input, .feedback-textarea, .feedback-select-display { padding: 10px 12px; }
  .feedback-textarea { min-height: 80px; }
  .feedback-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .feedback-note { font-size: 11px; }
}

.guide-panel {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
}

.guide-tab {
  flex: 1;
  border-radius: 4px;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.guide-tab.active {
  color: var(--cyan);
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.guide-steps { margin-top: 8px; }
.guide-steps .step { display: none; }

.guide-footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.guide-progress {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.guide-footer .btn[disabled] {
  opacity: .5;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 768px) {
  .guide-panel { gap: 12px; }
}

.community-layout { margin-top: 16px; }

.community-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 0;
}

.community-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.community-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.community-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--panel2);
}

.community-link-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.community-link-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

.community-link-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 220px;
}

.btn.subtle {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  color: var(--text);
}

.btn.subtle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 174, 239, 0.05);
}

.community-footnote {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 8px;
}

.community-feed-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.community-feed-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 2px solid var(--stroke);
  padding-bottom: 8px;
}

.community-feed-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.community-feed-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.community-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
}

.community-feed-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  opacity: 0;
  transform: translateY(8px);
  animation: communityFadeIn .4s var(--ease) forwards;
}

.community-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
  background: var(--cyan);
}

.community-msg {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.community-msg-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.community-name { font-size: 14px; font-weight: 700; color: var(--text); }
.community-meta { font-size: 11px; font-weight: 600; color: var(--muted); }

.community-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .community-layout { margin-top: 12px; }
  .community-link-value { max-width: 160px; }
}

@keyframes communityFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.faq { display: grid; gap: 12px; }

details {
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: #FFFFFF;
  padding: 14px 16px;
  overflow: hidden;
  transition: all .2s var(--ease);
}

details[open] {
  border-color: var(--cyan);
  background: rgba(0, 174, 239, 0.02);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.08);
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

summary::-webkit-details-marker { display: none; }

.caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}

details[open] .caret { transform: rotate(225deg); }

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
}