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

    :root {
      --brand: #DD2764;
      --brand-light: #fce8ef;
      --brand-dark: #b01e50;
      --text-primary: #1a1a2e;
      --text-secondary: #6b7280;
      --bg: #f8f5f6;
      --surface: #ffffff;
      --border: #ede8ea;
      --radius: 16px;
      --radius-sm: 10px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    main{
        padding-bottom:66px
    }

    /* ── HEADER ── */
    header {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    header img {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      object-fit: contain;
    }

    header .brand-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.35rem;
      color: var(--brand);
      letter-spacing: -0.01em;
    }

    header .brand-tagline {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 1px;
    }

    /* ── HERO ── */
    .hero {
      text-align: center;
      padding: 3.5rem 2rem 2.5rem;
    }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2rem, 5vw, 2.8rem);
      color: var(--text-primary);
      line-height: 1.15;
      margin-bottom: 0.75rem;
    }

    .hero h1 span {
      color: var(--brand);
    }

    .hero p {
      color: var(--text-secondary);
      font-size: 1.05rem;
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.6;
    }
    footer{
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 1000
    }

    /* ── NOTIFICATIONS (hidden for now) ── */
    /*
    .notifications {
      max-width: 780px;
      margin: 0 auto 2rem;
      padding: 0 1.5rem;
    }

    .notification-banner {
      background: var(--brand-light);
      border: 1px solid #f0afc5;
      border-left: 4px solid var(--brand);
      border-radius: var(--radius-sm);
      padding: 0.85rem 1.2rem;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 0.75rem;
    }

    .notification-banner .notif-icon {
      font-size: 1rem;
      color: var(--brand);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .notification-banner .notif-text {
      font-size: 0.9rem;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .notification-banner .notif-text strong {
      font-weight: 600;
    }

    .notification-banner .notif-date {
      font-size: 0.78rem;
      color: var(--text-secondary);
      margin-top: 2px;
    }
    */

    /* ── APP GRID ── */
    .apps-section {
      flex: 1;
      max-width: 1000px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }

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

    .app-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.4rem 1.5rem;
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      gap: 1.1rem;
      transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
      position: relative;
      overflow: hidden;
    }

    .app-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      background: var(--brand);
      opacity: 0;
      transition: opacity 0.18s ease;
    }

    .app-card:hover {
      border-color: #f0afc5;
      box-shadow: 0 4px 20px rgba(221, 39, 100, 0.10);
      transform: translateY(-2px);
    }

    .app-card:hover::after {
      opacity: 0.03;
    }

    .app-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .app-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--brand);
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .app-info {
      flex: 1;
      min-width: 0;
      position: relative;
      z-index: 1;
    }

    .app-name {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-primary);
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .app-url {
      font-size: 0.78rem;
      color: var(--text-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .app-arrow {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      transition: background 0.15s, border-color 0.15s, color 0.15s;
      position: relative;
      z-index: 1;
    }

    .app-card:hover .app-arrow {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
    }

    .app-arrow svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── FOOTER ── */
    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.8rem;
      color: var(--text-secondary);
      border-top: 1px solid var(--border);
      background: var(--surface);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 500px) {
      .hero { padding: 2.5rem 1.25rem 2rem; }
      .apps-section { padding: 0 1rem 2.5rem; }
      .app-grid { grid-template-columns: 1fr; }
    }