*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* ── SCROLLBAR GLOBAL ─────────────────────────── */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(139,92,246,0.6) rgba(255,255,255,0.04);
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 100px;
  border-left: 1px solid rgba(255,255,255,0.04);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(139,92,246,0.7) 0%,
    rgba(109,40,217,0.9) 50%,
    rgba(139,92,246,0.7) 100%
  );
  border-radius: 100px;
  border: 1px solid rgba(196,164,255,0.15);
  box-shadow:
    0 0 6px rgba(139,92,246,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(167,139,250,0.9) 0%,
    rgba(139,92,246,1) 50%,
    rgba(167,139,250,0.9) 100%
  );
  box-shadow:
    0 0 12px rgba(167,139,250,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    180deg,
    rgba(196,164,255,1) 0%,
    rgba(167,139,250,1) 100%
  );
  box-shadow: 0 0 18px rgba(196,164,255,0.7);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Panel izquierdo (si necesita scroll propio) */
.panel-left::-webkit-scrollbar {
  width: 4px;
}

.panel-left::-webkit-scrollbar-track {
  background: transparent;
}

.panel-left::-webkit-scrollbar-thumb {
  background: rgba(139,92,246,0.4);
  border-radius: 100px;
}

.panel-left::-webkit-scrollbar-thumb:hover {
  background: rgba(167,139,250,0.7);
}
/* ═══════════════════════════════════════════════
    SPLIT LAYOUT
═══════════════════════════════════════════════ */
html, body {
  height: 100%;
  font-family: 'Sora', sans-serif;
  background: #0a0612;
}

.split {
  display: flex;
  min-height: 100vh;
}

/* ─── LEFT PANEL (form) ─────────────────────── */
.panel-left {
  width: 600px;
  min-width: 340px;
  flex-shrink: 0;
  background: rgba(10, 6, 20, 0.72);
  backdrop-filter: blur(32px) saturate(140%);
  -webkit-backdrop-filter: blur(32px) saturate(140%);
  border-right: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  padding: 44px 36px 60px;
  position: relative;
  z-index: 10;
}

.panel-left::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 100%;
  background: linear-gradient(180deg,
    rgba(120,80,255,0.06) 0%,
    rgba(60,20,120,0.12) 50%,
    rgba(120,80,255,0.06) 100%);
  pointer-events: none;
  z-index: 0;
}

.panel-left > * { position: relative; z-index: 1; }

/* Logo & header */
.left-header {
  text-align: center;
  margin-bottom: 36px;
}

.logo {
  max-width: 140px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(180,140,255,0.4));
}

.left-header h1 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.left-header p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(200,185,255,0.6);
}

/* ─── CARD (glass) ──────────────────────────── */
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 26px;
  margin-bottom: 20px;
  box-shadow:
    0 8px 40px rgba(60,20,120,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(140,100,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.card-subtitle {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(200,185,255,0.6);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* ─── FORM ELEMENTS ─────────────────────────── */
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(220,210,255,0.85);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  color: #ffffffd5;
  transition: all 0.3s ease;
  font-size: 12px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder { 
  color: #ffffffd5;
  font-size: 12px;
 }

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(160,120,255,0.6);
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(140,100,255,0.12);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b09cff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: rgba(255,255,255,0.07);
}

select option { background: #1a0d3d; color: #fff; }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* File upload */
input[type="file"] { display: none; }

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px dashed rgba(160,130,255,0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(180,160,255,0.65);
  gap: 8px;
}

.file-upload-label:hover {
  background: rgba(160,120,255,0.08);
  border-color: rgba(160,130,255,0.75);
  color: #d0c0ff;
}

/* Buttons */
/* .btn {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(110,40,217,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.1px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.55), inset 0 1px 0 rgba(255,255,255,0.28);
} */



.btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,120,255,0.3), transparent);
  margin: 24px 0;
}

.status-form-inline {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.status-form-inline .form-group {
  flex: 1;
  margin-bottom: 0;
}

#sendingMsg {
  color: rgba(200,185,255,0.7);
  font-size: 0.82rem;
  font-weight: 300;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════
    RIGHT PANEL (video + hero text)
═══════════════════════════════════════════════ */
.panel-right {
  flex: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.panel-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,4,18,0.6) 0%, transparent 35%),
    linear-gradient(to top, rgba(8,4,18,0.85) 0%, rgba(8,4,18,0.2) 55%, transparent 100%);
  z-index: 1;
}

/* Hero text block */
.hero-text {
  position: absolute;
  bottom: 72px;
  left: 56px;
  right: 56px;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(196,164,255,0.75);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px) rotate(2.5deg);
  animation: wordUp 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-title .word:nth-child(1)  { animation-delay: 0.55s; }
.hero-title .word:nth-child(2)  { animation-delay: 0.70s; }
.hero-title .word:nth-child(3)  { animation-delay: 0.85s; }
.hero-title .word:nth-child(4)  { animation-delay: 1.00s; }
.hero-title .word:nth-child(5)  { animation-delay: 1.15s; }
.hero-title .word:nth-child(6)  { animation-delay: 1.30s; }
.hero-title .word:nth-child(7)  { animation-delay: 1.45s; }
.hero-title .word:nth-child(8)  { animation-delay: 1.60s; }

.hero-title .accent {
  color: #c4a4ff;
  font-style: italic;
}

.hero-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #ddd6fe, #7c3aed);
  border-radius: 2px;
  margin-bottom: 20px;
  animation: lineExpand 1.1s cubic-bezier(0.22,1,0.36,1) 2s forwards;
}

.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: rgba(220,210,255,0.8);
  letter-spacing: 0.4px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 2.2s forwards;
}

/* Corner badge */
.hero-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 2.4s forwards;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 32px rgba(80,40,160,0.3);
}

.hero-badge span {
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(220,210,255,0.88);
  line-height: 1.5;
  letter-spacing: 0.6px;
}

/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes lineExpand {
  to { width: 72px; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ─── MODAL ─────────────────────────────────── */
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes electricPulse {
  0%, 100% { box-shadow:
    0 0 0 1px rgba(167,139,250,0.5),
    0 0 18px rgba(139,92,246,0.3),
    0 0 48px rgba(109,40,217,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.04); }
  50% { box-shadow:
    0 0 0 1px rgba(196,164,255,0.85),
    0 0 28px rgba(167,139,250,0.55),
    0 0 70px rgba(139,92,246,0.25),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(255,255,255,0.06); }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-box {
  position: relative;
  background: rgba(18, 10, 38, 0.78);
  backdrop-filter: blur(36px) saturate(160%);
  -webkit-backdrop-filter: blur(36px) saturate(160%);
  border: 1px solid rgba(167,139,250,0.5);
  border-radius: 24px;
  padding: 44px 40px 36px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  animation: modalIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards,
              electricPulse 3s ease-in-out 0.45s infinite;
  overflow: hidden;
}

/* Top glow blob */
.modal-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 160px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.28) 0%, transparent 70%);
  pointer-events: none;
}

/* Electric top edge line */
.modal-box::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,164,255,0.9), transparent);
}

.modal-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  position: relative;
}

.modal-box p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(210,200,255,0.75);
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
}

.modal-box p strong {
  color: #c4b5fd;
  font-weight: 600;
}

/* Ver Ticket link */
#modalButton {
  display: inline-block;
  margin-top: 22px;
  padding: 11px 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 20px rgba(110,40,217,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
}

#modalButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.6), inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Cerrar button */
.modal-box > button {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 11px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(200,185,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.2px;
}

.modal-box > button:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.2);
  color: rgba(220,210,255,0.9);
}
.sending-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.sending-box {
  background: #1a1330;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
}

.spinner {
  width: 45px;
  height: 45px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #8b5cf6;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}
.success-banner {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}


@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── TICKET RESULT ────────────────────────────── */
#ticketResult.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: 20px;
  padding: 28px 26px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(60,20,120,0.3),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 1px rgba(109,40,217,0.1);
}

/* Glow orb top-right */
#ticketResult.card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(109,40,217,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Electric top edge */
#ticketResult.card::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(196,164,255,0.85) 50%,
    transparent);
}

.ticket-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}

/* Info rows (Estado, Prioridad, Fecha) */
.ticket-box > p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(210,200,255,0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}
div#ticketResult {
    color: rgba(210,200,255,0.7);
}

.ticket-box > p strong {
  font-weight: 600;
  color: rgba(196,164,255,0.85);
  letter-spacing: 0.2px;
  margin-right: 4px;
}

/* Divider */
.ticket-box hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3), transparent);
  margin: 20px 0;
}

/* Comments section title */
.ticket-box h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(196,164,255,0.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Comment bubble */
.comment {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid rgba(139,92,246,0.7);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: border-left-color 0.3s ease;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment:hover {
  border-left-color: rgba(196,164,255,0.95);
  background: rgba(255,255,255,0.06);
}

.comment strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.comment p {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(225,220,255,0.75);
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}
/* BTN */
form#ticketForm .btn {
    width: 100%;
}
button#sendCommentBtn {
    margin-top: 10px;
}
#sendCommentBtn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow:
    0 4px 20px rgba(109,40,217,0.45),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 1px rgba(139,92,246,0.3);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
#sendCommentBtn::before, .btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  transition: left 0.5s ease;
}

#sendCommentBtn:hover, .btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  border-color: rgba(196,164,255,0.5);
  box-shadow:
    0 8px 32px rgba(139,92,246,0.6),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 0 1px rgba(196,164,255,0.45),
    0 0 20px rgba(167,139,250,0.2);
}

#sendCommentBtn:hover::before, .btn:hover::before {
  left: 160%;
}

#sendCommentBtn:active, .btn:active {
  transform: translateY(0);
  box-shadow:
    0 4px 16px rgba(109,40,217,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition-duration: 0.1s;
}

#sendCommentBtn:disabled, .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}



/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .split { flex-direction: column; }

  .panel-right {
    position: relative;
    height: 65vw;
    min-height: 320px;
  }

  .panel-left {
    width: 100%;
    min-width: unset;
    padding: 32px 20px 48px;
  }

  .panel-left::before { width: 100%; }

  .hero-text {
    bottom: 32px;
    left: 24px;
    right: 24px;
  }

  .hero-badge {
    top: 18px;
    right: 18px;
    width: 70px;
    height: 70px;
  }

  .hero-badge span { font-size: 0.58rem; }
}

@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
  .status-form-inline { flex-direction: column; }
  .status-form-inline .form-group,
  .status-form-inline .btn { width: 100%; }
}