:root {
      --bg: #0a0a0f;
      --surface: #14141c;
      --surface-2: #1c1c28;
      --border: #2a2a3a;
      --text: #f0f0f5;
      --muted: #9a9ab0;
      --accent: #e63946;
      --accent-2: #ff6b35;
      --gold: #f4c430;
      --success: #2ecc71;
      --radius: 12px;
    }

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

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-mark {
      width: auto;
      height: 42px;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
    }

    .logo-mark img {
      height: 36px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .logo-text h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.35rem;
      letter-spacing: 1.5px;
      line-height: 1.1;
    }

    .logo-text span {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    nav {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    nav a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      transition: color 0.2s;
    }

    nav a:hover { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.25rem;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, opacity 0.15s;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 5rem 0 4rem;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(230, 57, 70, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(230, 57, 70, 0.15);
      border: 1px solid rgba(230, 57, 70, 0.3);
      color: #ff8a94;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 4.5rem);
      line-height: 0.95;
      letter-spacing: 2px;
      margin-bottom: 1.25rem;
    }

    .hero h2 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 480px;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
    }

    .hero-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--surface);
    }

    .hero-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 0.85rem;
      text-align: center;
      padding: 2rem;
    }

    .event-card {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .event-card .date {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--accent);
      line-height: 1;
    }

    .event-card .label {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* Promo banner */
    .promo {
      background: linear-gradient(90deg, rgba(244, 196, 48, 0.12), rgba(230, 57, 70, 0.12));
      border-top: 1px solid rgba(244, 196, 48, 0.2);
      border-bottom: 1px solid rgba(244, 196, 48, 0.2);
      padding: 1.25rem 0;
    }

    .promo-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      text-align: center;
    }

    .promo-icon { font-size: 1.5rem; }

    .promo strong { color: var(--gold); }

    /* Sections */
    section { padding: 4.5rem 0; }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    .section-header p {
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto;
    }

    /* Products */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
    }

    .product-card:hover {
      border-color: rgba(230, 57, 70, 0.4);
      transform: translateY(-3px);
    }

    .product-img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      background: var(--surface-2);
    }

    .product-img-placeholder {
      width: 100%;
      aspect-ratio: 1;
      background: var(--surface-2);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 0.8rem;
      border-bottom: 1px solid var(--border);
    }

    .product-info { padding: 1.25rem; }

    .product-info h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .product-info p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .btn-buy {
      width: 100%;
      justify-content: center;
    }

    .btn-soldout {
      width: 100%;
      justify-content: center;
      background: var(--surface-2);
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .btn-soldout:hover { transform: none; color: var(--text); }

    .price {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--accent);
    }

    .price small {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 400;
    }

    .tag-eligible {
      font-size: 0.7rem;
      background: rgba(244, 196, 48, 0.15);
      color: var(--gold);
      border: 1px solid rgba(244, 196, 48, 0.3);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-weight: 600;
    }

    .tag-digital {
      font-size: 0.7rem;
      background: rgba(52, 152, 219, 0.12);
      color: #5dade2;
      border: 1px solid rgba(52, 152, 219, 0.25);
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-weight: 600;
    }

    .product-icon {
      font-size: 2.5rem;
      margin-bottom: 0.25rem;
    }

    /* Event section */
    .event-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .event-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .event-details h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      margin-bottom: 1rem;
    }

    .event-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .event-meta-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .event-meta-icon {
      width: 40px;
      height: 40px;
      background: rgba(230, 57, 70, 0.15);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .event-meta-item strong {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.15rem;
    }

    .event-meta-item span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .gallery-img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--surface-2);
    }

    .gallery-placeholder {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--surface-2);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 0.75rem;
      text-align: center;
      padding: 1rem;
    }

    .gallery-img:first-child,
    .gallery-img-main {
      grid-row: span 2;
      aspect-ratio: auto;
      min-height: 100%;
      object-fit: cover;
    }

    /* Orders table */
    .orders-section { background: var(--bg); }

    .orders-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
    }

    .stat-card .value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--accent);
      line-height: 1;
    }

    .stat-card .label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.35rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .table-wrap {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .table-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .table-header h4 {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .table-header span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    thead { background: var(--surface-2); }

    th {
      text-align: left;
      padding: 0.85rem 1.25rem;
      font-weight: 600;
      color: var(--muted);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    td {
      padding: 0.85rem 1.25rem;
      border-top: 1px solid var(--border);
      vertical-align: middle;
    }

    tr:hover td { background: rgba(255,255,255,0.02); }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.6rem;
      border-radius: 100px;
    }

    .status-paid {
      background: rgba(46, 204, 113, 0.12);
      color: var(--success);
    }

    .status-delivered {
      background: rgba(52, 152, 219, 0.12);
      color: #3498db;
    }

    .status-pending {
      background: rgba(244, 196, 48, 0.12);
      color: var(--gold);
    }

    .prize-yes {
      color: var(--gold);
      font-weight: 600;
    }

    .table-scroll { overflow-x: auto; }

    /* About / payment info */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
    }

    .about-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .about-card p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .about-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .about-card li {
      font-size: 0.875rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .about-card li::before {
      content: '✓';
      color: var(--success);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 0;
      background: var(--surface);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-brand p {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.35rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--surface-2);
      border: 1px solid var(--border);
      padding: 0.6rem 1rem;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      transition: border-color 0.2s;
    }

    .social-link:hover { border-color: var(--accent); }

    .footer-legal {
      width: 100%;
      text-align: center;
      font-size: 0.75rem;
      color: var(--muted);
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      margin-top: 1.5rem;
    }

    /* Countdown */
    .countdown-section {
      background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 107, 53, 0.08));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }

    .countdown-section h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    .countdown-section > .container > p {
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .countdown-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem 1rem;
      min-width: 110px;
    }

    .countdown-item .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      line-height: 1;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .countdown-item .unit {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 0.5rem;
    }

    /* Stats band */
    .stats-band {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-band-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      text-align: center;
    }

    .stat-item .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      line-height: 1;
      color: var(--accent);
    }

    .stat-item .desc {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: 0.35rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Instagram feed */
    .ig-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
    }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 0.75rem;
    }

    .ig-post {
      position: relative;
      display: block;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .ig-post img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .ig-post:hover img { transform: scale(1.08); }

    .ig-post .ig-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 15, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .ig-post:hover .ig-overlay { opacity: 1; }

    .ig-cta { text-align: center; margin-top: 2rem; }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      border-radius: var(--radius);
      padding: 3rem 2rem;
      text-align: center;
      color: #fff;
    }

    .newsletter h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    .newsletter p {
      max-width: 480px;
      margin: 0 auto 2rem;
      opacity: 0.95;
    }

    .newsletter-form {
      display: flex;
      gap: 0.75rem;
      max-width: 480px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .newsletter-form input {
      flex: 1;
      min-width: 200px;
      padding: 0.85rem 1.1rem;
      border-radius: 8px;
      border: none;
      font-size: 0.95rem;
      font-family: inherit;
      background: rgba(255, 255, 255, 0.95);
      color: #14141c;
    }

    .newsletter-form input:focus { outline: 2px solid rgba(255,255,255,0.7); }

    .newsletter-form button {
      background: #14141c;
      color: #fff;
      border: none;
      padding: 0.85rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: transform 0.15s;
    }

    .newsletter-form button:hover { transform: translateY(-1px); }

    .newsletter-msg {
      margin-top: 1rem;
      font-weight: 600;
      min-height: 1.2rem;
    }

    /* FAQ */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 600;
      font-family: inherit;
      text-align: left;
      padding: 1.15rem 1.35rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .faq-question .chevron {
      transition: transform 0.25s;
      color: var(--accent);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .faq-item.open .chevron { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      padding: 0 1.35rem 1.25rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .modal-overlay.open {
      display: flex;
      animation: fadeIn 0.2s ease;
    }

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

    .modal {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      max-width: 420px;
      width: 100%;
      max-height: calc(100vh - 3rem);
      overflow-y: auto;
      overflow-x: hidden;
      margin: auto;
      padding: 2.5rem 2rem 2rem;
      text-align: center;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
      animation: popIn 0.25s ease;
    }

    @keyframes popIn {
      from { transform: scale(0.92); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .modal-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 1.25rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.8rem;
      background: rgba(244, 196, 48, 0.12);
      border: 1px solid rgba(244, 196, 48, 0.3);
    }

    .modal h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .modal p {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 1.75rem;
    }

    .modal .btn { width: 100%; justify-content: center; }
    .btn-block { width: 100%; justify-content: center; }

    .modal-checkout {
      max-width: 480px;
      text-align: left;
      position: relative;
      padding: 2.25rem 2rem 2rem;
    }

    .modal-image {
      display: block;
      width: calc(100% + 4rem);
      height: 160px;
      object-fit: cover;
      margin: -2.25rem -2rem 1.5rem;
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .modal-x {
      position: absolute;
      top: 0.85rem;
      right: 1rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      padding: 0.25rem;
    }

    .modal-x:hover { color: var(--text); }

    .modal-sub {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 1.25rem;
    }

    .modal-icon-success {
      background: rgba(46, 204, 113, 0.12);
      border-color: rgba(46, 204, 113, 0.3);
      color: var(--success);
    }

    .pay-box {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.1rem 1.25rem;
      margin-bottom: 1.5rem;
    }

    .pay-box-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.9rem;
    }

    .pay-badge {
      background: linear-gradient(135deg, #0033a0, #0aa1dd);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .pay-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--accent);
    }

    .pay-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.85rem;
      padding: 0.35rem 0;
      border-top: 1px solid var(--border);
    }

    .pay-row span { color: var(--muted); flex-shrink: 0; }
    .pay-row strong { text-align: right; }

    .pay-note {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 0.75rem;
      line-height: 1.4;
    }

    .pay-alert {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      background: rgba(244, 196, 48, 0.1);
      border: 1px solid rgba(244, 196, 48, 0.35);
      border-radius: 10px;
      padding: 0.85rem 1rem;
      margin-bottom: 1.5rem;
    }

    .pay-alert-icon { font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; }

    .pay-alert p {
      font-size: 0.82rem;
      color: var(--text);
      line-height: 1.45;
    }

    .pay-alert strong { color: var(--gold); }

    .order-form { display: flex; flex-direction: column; gap: 0.9rem; }

    .file-drop {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      text-align: center;
      padding: 1.25rem 1rem;
      border: 1.5px dashed var(--border);
      border-radius: 10px;
      background: var(--bg);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .file-drop:hover { border-color: var(--accent); }

    .file-drop.has-file {
      border-color: var(--success);
      border-style: solid;
    }

    .file-drop input[type="file"] {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      overflow: hidden;
    }

    .file-drop-icon { font-size: 1.5rem; }

    .file-drop-text {
      font-size: 0.82rem;
      color: var(--muted);
      word-break: break-word;
    }

    .file-drop.has-file .file-drop-text { color: var(--success); font-weight: 600; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }

    .form-group { display: flex; flex-direction: column; gap: 0.35rem; }

    .form-group label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--muted);
    }

    .form-group input {
      padding: 0.7rem 0.85rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      font-size: 0.9rem;
      font-family: inherit;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--accent);
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav { display: none; }
      .hero-grid, .event-grid, .about-grid { grid-template-columns: 1fr; }
      .orders-stats { grid-template-columns: 1fr; }
      .event-card { position: static; margin-top: 1rem; }
      .hero { padding: 3rem 0 2rem; }
      .stats-band-grid { grid-template-columns: repeat(2, 1fr); }
      .countdown-item { min-width: 70px; padding: 1rem 0.6rem; }
      .countdown-item .num { font-size: 2.4rem; }
    }
