

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

    /* Header */
    header {
      background-color: var(--surface);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
  padding-top: env(safe-area-inset-top, 0px);
      z-index: 100;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .back-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      padding: 0.5rem;
      border-radius: var(--radius-sm);
    }

    .back-link:hover {
      color: var(--primary);
      background-color: var(--background);
    }

    /* Main Content */
    .support-container {
      padding: 3rem 0;
      min-height: calc(100vh - 80px);
    }

    /* Page Header */
    .page-header {
      text-align: center;
      margin-bottom: 4rem;
      animation: fadeInDown 0.8s ease-out;
    }

    .page-title {
      font-size: clamp(1.8rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-subtitle {
      font-size: clamp(0.9rem, 3vw, 1.2rem);
      color: var(--text-secondary);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .help-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--surface);
      padding: 1rem 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .stat-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .stat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .stat-content {
      text-align: left;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    /* ==========================================
       PRIMARY ACTION BANNER (Report Competition)
       ========================================== */
    .primary-action-banner {
      background: linear-gradient(135deg, #C53030 0%, var(--error) 60%, #E53E3E 100%);
      border-radius: var(--radius-lg);
      padding: 1.5rem 2rem;
      margin-bottom: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: 0 4px 20px rgba(229, 62, 62, 0.35);
      transition: var(--transition);
      animation: fadeInUp 0.6s ease-out both;
      text-decoration: none;
    }

    .primary-action-banner:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(229, 62, 62, 0.45);
    }

    .primary-action-content {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex: 1;
      min-width: 0;
    }

    .primary-action-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: white;
      flex-shrink: 0;
    }

    .primary-action-text {
      color: white;
      min-width: 0;
    }

    .primary-action-text h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .primary-action-text p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .primary-action-button {
      background: white;
      color: var(--error);
      border: none;
      padding: 0.75rem 1.25rem;
      border-radius: var(--radius-md);
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
      font-size: 0.95rem;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .primary-action-button:hover {
      background: rgba(255, 255, 255, 0.9);
    }

    .primary-action-arrow {
      font-size: 0.8rem;
    }

    /* Quick Actions */
    .quick-actions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .action-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
      border: 2px solid transparent;
      transition: var(--transition);
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .action-card:hover {
      border-color: var(--primary-light);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .action-card.urgent {
      border-color: var(--error);
      background: linear-gradient(135deg, rgba(229, 62, 62, 0.05) 0%, rgba(245, 101, 101, 0.05) 100%);
    }

    .action-card.urgent:hover {
      border-color: var(--error);
      background: linear-gradient(135deg, rgba(229, 62, 62, 0.1) 0%, rgba(245, 101, 101, 0.1) 100%);
    }

    .action-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
    }

    .action-icon.help {
      background: linear-gradient(135deg, var(--info) 0%, #3182CE 100%);
    }

    .action-icon.contact {
      background: linear-gradient(135deg, var(--success) 0%, #38A169 100%);
    }

    .action-icon.report {
      background: linear-gradient(135deg, var(--error) 0%, #C53030 100%);
    }

    .action-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--text-primary);
    }

    .action-description {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .action-button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius-md);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .action-button:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .action-button.danger {
      background: var(--error);
    }

    .action-button.danger:hover {
      background: #C53030;
    }

    /* Main Content Grid */
    .content-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    /* FAQ Section */
    .faq-section {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-md);
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--background);
    }

    .section-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--info) 0%, #3182CE 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* Search Bar */
    .faq-search {
      position: relative;
      margin-bottom: 2rem;
    }

    .search-input {
      width: 100%;
      padding: 1rem 1rem 1rem 3rem;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: var(--radius-md);
      font-size: 1rem;
      transition: var(--transition);
      background: var(--background);
    }

    .search-input:focus {
      outline: none;
      border-color: var(--primary);
      background: var(--surface);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

    .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-tertiary);
      font-size: 1.1rem;
    }

    /* Category Filters */
    .category-filters {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .category-filter {
      padding: 0.5rem 1rem;
      border-radius: 50px;
      border: 2px solid var(--primary-light);
      background: transparent;
      color: var(--primary);
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
      font-size: 0.9rem;
    }

    .category-filter:hover,
    .category-filter.active {
      background: var(--primary);
      color: white;
      transform: translateY(-1px);
    }

    /* FAQ Items */
    .faq-container {
      display: grid;
      gap: 1rem;
    }

    .faq-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      background: var(--background);
    }

    .faq-item:hover {
      box-shadow: var(--shadow-md);
    }

    .faq-item.hidden {
      display: none;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem;
      background: var(--surface);
      cursor: pointer;
      font-weight: 500;
      transition: var(--transition);
    }

    .faq-question:hover {
      background: var(--background);
    }

    .faq-category {
      display: inline-block;
      background: var(--primary-light);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-right: 1rem;
    }

    .faq-question-text {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .faq-icon {
      transition: var(--transition);
      color: var(--primary);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: var(--background);
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .faq-answer-content {
      padding: 0 1.5rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 1.5rem 0;
    }

    .faq-item.active .faq-question {
      background: var(--primary-light);
      color: white;
    }

    .faq-item.active .faq-category {
      background: rgba(255,255,255,0.2);
    }

    /* ==========================================
       COMPETITION REPORT CARD ENHANCEMENTS
       ========================================== */
    .competition-report-card {
      border: 2px solid rgba(229, 62, 62, 0.2);
      background: linear-gradient(135deg, rgba(229, 62, 62, 0.03) 0%, var(--surface) 60%);
    }

    .card-subtitle {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 0.15rem;
    }

    /* Form label with icon */
    .form-label-icon {
      color: var(--primary);
      margin-right: 0.4rem;
      font-size: 0.85rem;
    }

    /* Issue Type Grid */
    .issue-type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }

    .issue-type-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      padding: 0.75rem 0.5rem;
      border: 2px solid rgba(0, 0, 0, 0.1);
      border-radius: var(--radius-md);
      background: var(--background);
      cursor: pointer;
      transition: var(--transition);
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-align: center;
      line-height: 1.2;
    }

    .issue-type-btn i {
      font-size: 1.2rem;
      color: var(--text-tertiary);
      transition: var(--transition);
    }

    .issue-type-btn:hover {
      border-color: var(--error);
      color: var(--error);
    }

    .issue-type-btn:hover i {
      color: var(--error);
    }

    .issue-type-btn.selected {
      border-color: var(--error);
      background: rgba(229, 62, 62, 0.08);
      color: var(--error);
    }

    .issue-type-btn.selected i {
      color: var(--error);
    }

    /* Severity Selector */
    .severity-selector {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }

    .severity-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      padding: 0.65rem 0.25rem;
      border: 2px solid transparent;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: var(--transition);
      font-size: 0.75rem;
      font-weight: 600;
      text-align: center;
      background: var(--background);
    }

    .severity-btn i {
      font-size: 0.7rem;
    }

    .severity-btn.low {
      border-color: var(--success);
      color: var(--success);
    }

    .severity-btn.low.active,
    .severity-btn.low:hover {
      background: var(--success);
      color: white;
    }

    .severity-btn.medium {
      border-color: var(--warning);
      color: var(--warning);
    }

    .severity-btn.medium.active,
    .severity-btn.medium:hover {
      background: var(--warning);
      color: white;
    }

    .severity-btn.high {
      border-color: var(--error);
      color: var(--error);
    }

    .severity-btn.high.active,
    .severity-btn.high:hover {
      background: var(--error);
      color: white;
    }

    .severity-btn.emergency {
      border-color: #7B2D8B;
      color: #7B2D8B;
    }

    .severity-btn.emergency.active,
    .severity-btn.emergency:hover {
      background: #7B2D8B;
      color: white;
    }

    /* Emergency note */
    .emergency-note {
      background: rgba(123, 45, 139, 0.08);
      border: 1px solid rgba(123, 45, 139, 0.25);
      border-radius: var(--radius-sm);
      padding: 0.6rem 0.85rem;
      color: #7B2D8B;
      font-weight: 500;
    }

    .report-note i {
      margin-right: 0.4rem;
    }

    /* Visually hidden (accessible) */
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ==========================================
       MOBILE STICKY REPORT BUTTON
       ========================================== */
    .mobile-sticky-report {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
      background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
    }

    .mobile-sticky-btn {
      width: 100%;
      background: linear-gradient(135deg, #C53030 0%, var(--error) 100%);
      color: white;
      border: none;
      padding: 1rem 1.5rem;
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      box-shadow: 0 4px 20px rgba(229, 62, 62, 0.45);
      transition: var(--transition);
    }

    .mobile-sticky-btn:active {
      transform: scale(0.98);
    }

    /* Contact & Report Sidebar */
    .sidebar {
      display: grid;
      gap: 2rem;
    }

    .sidebar-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-md);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--background);
    }

    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: white;
    }

    .card-icon.contact {
      background: linear-gradient(135deg, var(--success) 0%, #38A169 100%);
    }

    .card-icon.report {
      background: linear-gradient(135deg, var(--error) 0%, #C53030 100%);
    }

    .card-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    /* Contact Form */
    .contact-form {
      display: grid;
      gap: 1.5rem;
    }

    .form-group {
      display: grid;
      gap: 0.5rem;
    }

    .form-label {
      font-weight: 500;
      color: var(--text-primary);
    }

    .form-input,
    .form-select,
    .form-textarea {
      padding: 0.75rem;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: var(--radius-md);
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .priority-selector {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }

    .priority-option {
      padding: 0.75rem;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: var(--radius-md);
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
    }

    .priority-option.low {
      color: var(--success);
      border-color: var(--success);
    }

    .priority-option.medium {
      color: var(--warning);
      border-color: var(--warning);
    }

    .priority-option.high {
      color: var(--error);
      border-color: var(--error);
    }

    .priority-option.low.active {
      background: var(--success);
      color: white;
    }

    .priority-option.medium.active {
      background: var(--warning);
      color: white;
    }

    .priority-option.high.active {
      background: var(--error);
      color: white;
    }

    .submit-button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: var(--radius-md);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 1rem;
    }

    .submit-button:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    .submit-button.danger {
      background: var(--error);
    }

    .submit-button.danger:hover {
      background: #C53030;
    }

    .submit-button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .report-note {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin: -0.25rem 0 1rem;
    }

    /* Report Options */
    .report-options {
      display: grid;
      gap: 1rem;
    }

    .report-option {
      padding: 1rem;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .report-option:hover {
      border-color: var(--error);
      background: rgba(229, 62, 62, 0.05);
    }

    .report-option.selected {
      border-color: var(--error);
      background: rgba(229, 62, 62, 0.1);
    }

    .report-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      background: var(--error);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .report-content h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--text-primary);
    }

    .report-content p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    /* Emergency Contact */
    .emergency-contact {
      background: linear-gradient(135deg, var(--error) 0%, #C53030 100%);
      color: white;
      border-radius: var(--radius-md);
      padding: 1.5rem;
      text-align: center;
      margin-top: 1rem;
    }

    .emergency-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .emergency-text {
      color: rgba(255,255,255,0.9);
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .emergency-button {
      background: white;
      color: var(--error);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius-md);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .emergency-button {
      text-decoration: none;
      display: inline-flex;
    }

    .emergency-button:hover {
      background: rgba(255,255,255,0.9);
      transform: translateY(-1px);
    }

    .emergency-note {
      color: rgba(255,255,255,0.8);
      font-size: 0.8rem;
      margin-top: 0.75rem;
      line-height: 1.4;
    }

    /* FAQ Link Card */
    .faq-link-section {
      margin-bottom: 2rem;
    }

    .faq-link-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 2px solid var(--border);
      text-decoration: none;
      color: var(--text-primary);
      transition: var(--transition);
    }

    .faq-link-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .faq-link-card .section-title {
      margin: 0;
      font-size: 1.1rem;
    }

    .faq-link-card p {
      margin: 0.25rem 0 0;
      font-size: 0.875rem;
      color: var(--text-secondary);
    }

    .faq-link-card .fa-chevron-right {
      margin-left: auto;
      color: var(--text-secondary);
    }

    /* Toast Notification */
    .toast {
      display: none;
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--success);
      color: white;
      padding: 1rem 1.5rem;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      z-index: 1000;
      transform: translateX(100%);
      transition: var(--transition);
      max-width: 400px;
    }

    .toast.show {
      display: block;
      transform: translateX(0);
    }

    .toast.error {
      background: var(--error);
    }

    .toast.warning {
      background: var(--warning);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Footer */
    footer {
      background-color: var(--text-primary);
      color: white;
      padding: 3rem 0 1.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-logo {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-logo i { font-size: 1.5rem; color: var(--primary); }

    .footer-about p {
      color: rgba(255,255,255,0.7);
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .footer-links h3 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }

    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.9rem;
    }

    .footer-links a:hover { color: var(--primary); }

    .footer-social { display: flex; gap: 0.75rem; }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.1);
      color: white;
      transition: var(--transition);
    }

    .footer-social a:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      text-align: center;
      color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .quick-actions {
        grid-template-columns: repeat(3, 1fr);
      }

      /* On tablet, show sidebar before FAQ */
      .sidebar {
        order: -1;
      }

      /* On tablet, show only the competition report card first */
      .sidebar > .competition-report-card {
        order: -1;
      }
    }

    /* ==========================================
       MOBILE — 768px (tablet/large phone)
       ========================================== */
    @media (max-width: 768px) {
      .container {
        padding: 0 1rem;
      }

      .support-container {
        padding: 1.25rem 0 5.5rem; /* bottom padding for sticky btn */
      }

      .page-header {
        margin-bottom: 1.75rem;
      }

      /* Primary banner: horizontal, compact */
      .primary-action-banner {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
      }

      .primary-action-button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
      }

      /* Quick actions: 3 columns compact */
      .quick-actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
      }

      .action-card {
        padding: 1.1rem 0.6rem;
      }

      .action-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
      }

      .action-title {
        font-size: 0.82rem;
        margin-bottom: 0;
      }

      .action-description,
      .action-button {
        display: none;
      }

      .faq-section,
      .sidebar-card {
        padding: 1.25rem;
      }

      .contact-form {
        gap: 1rem;
      }

      .form-textarea {
        min-height: 100px;
      }

      /* Stats: row, scrollable if needed */
      .help-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.6rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .help-stats::-webkit-scrollbar {
        display: none;
      }

      .stat-item {
        padding: 0.7rem 1rem;
        flex: 0 0 auto;
        min-width: 0;
      }

      .stat-number {
        font-size: 1.1rem;
      }

      .stat-label {
        font-size: 0.75rem;
        white-space: nowrap;
      }

      /* FAQ filters: horizontal scroll */
      .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .category-filters::-webkit-scrollbar {
        display: none;
      }

      .category-filter {
        flex-shrink: 0;
      }

      .priority-selector {
        grid-template-columns: repeat(3, 1fr);
      }

      /* Issue type: 3 cols */
      .issue-type-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      /* Severity: 4 cols */
      .severity-selector {
        grid-template-columns: repeat(4, 1fr);
      }

      .severity-btn {
        font-size: 0.68rem;
        padding: 0.55rem 0.1rem;
      }

      /* Show sticky mobile report button */
      .mobile-sticky-report {
        display: block;
      }

      /* Content grid reorder: competition report first on mobile */
      .content-grid {
        display: flex;
        flex-direction: column;
      }

      .sidebar {
        order: -1;
        display: flex;
        flex-direction: column;
      }

      .competition-report-card {
        order: -10;
      }

      /* Footer mobile */
      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 1.25rem;
      }
      .footer-about {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
      }
      .footer-social { justify-content: center; }
      .footer-logo { justify-content: center; }
      .footer-links h3 { font-size: 0.85rem; margin-bottom: 0.5rem; }
      .footer-links li { margin-bottom: 0.25rem; }
      .footer-links a { font-size: 0.8rem; }
    }

    /* ==========================================
       MOBILE — 480px (standard phones)
       ========================================== */
    @media (max-width: 480px) {
      .container {
        padding: 0 0.875rem;
      }

      .support-container {
        padding: 1rem 0 5.5rem;
      }

      .page-header {
        margin-bottom: 1.25rem;
      }

      /* Banner: keep horizontal, tighten */
      .primary-action-banner {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        gap: 0.75rem;
      }

      .primary-action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }

      .primary-action-text h3 {
        font-size: 0.95rem;
      }

      .primary-action-text p {
        font-size: 0.78rem;
      }

      .primary-action-button {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
        gap: 0.35rem;
      }

      /* Quick actions */
      .quick-actions {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
      }

      .action-card {
        padding: 0.875rem 0.4rem;
        border-radius: var(--radius-md);
      }

      .action-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
      }

      .action-title {
        font-size: 0.72rem;
        line-height: 1.2;
      }

      /* Cards */
      .faq-section,
      .sidebar-card {
        padding: 1rem;
        border-radius: var(--radius-md);
      }

      .section-title {
        font-size: 1.3rem;
      }

      .card-title {
        font-size: 1.1rem;
      }

      .contact-form {
        gap: 0.875rem;
      }

      .form-textarea {
        min-height: 90px;
      }

      /* FAQ */
      .faq-question {
        padding: 0.875rem 1rem;
      }

      .faq-question-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
      }

      .faq-answer-content {
        padding: 0 1rem;
        font-size: 0.9rem;
      }

      /* Stats */
      .stat-item {
        padding: 0.6rem 0.75rem;
      }

      .stat-number {
        font-size: 1rem;
      }

      /* Issue type: 3 cols (keep) */
      .issue-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
      }

      .issue-type-btn {
        padding: 0.6rem 0.25rem;
        font-size: 0.72rem;
      }

      .issue-type-btn i {
        font-size: 1rem;
      }

      /* Severity: 4 cols (keep, tighter) */
      .severity-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
      }

      .severity-btn {
        font-size: 0.65rem;
        padding: 0.5rem 0.1rem;
      }

      /* Submit button */
      .submit-button {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
      }

      .faq-link-card {
        padding: 1rem;
        gap: 0.75rem;
      }

      .faq-link-card .section-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
      }

      .faq-link-card .section-title {
        font-size: 0.95rem;
      }

      .faq-link-card p {
        font-size: 0.8rem;
      }
    }

    /* ==========================================
       MOBILE — 390px (iPhone 14/15 Pro)
       ========================================== */
    @media (max-width: 390px) {
      .container {
        padding: 0 0.75rem;
      }

      /* Banner: tighten further, allow text wrap */
      .primary-action-banner {
        padding: 0.875rem;
        gap: 0.6rem;
      }

      .primary-action-text h3 {
        font-size: 0.9rem;
        white-space: normal; /* allow wrap on very small screens */
      }

      .primary-action-text p {
        display: none; /* hide subtitle, save vertical space */
      }

      .primary-action-button {
        padding: 0.55rem 0.75rem;
        font-size: 0.82rem;
      }

      /* Quick actions: tighter */
      .quick-actions {
        gap: 0.4rem;
      }

      .action-card {
        padding: 0.75rem 0.3rem;
      }

      .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.35rem;
      }

      .action-title {
        font-size: 0.68rem;
      }

      /* Report card */
      .sidebar-card {
        padding: 0.875rem;
      }

      .card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
      }

      .card-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
      }

      .contact-form {
        gap: 0.75rem;
      }

      /* Issue type: 2 cols at 390px */
      .issue-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
      }

      .issue-type-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.75rem;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.5rem;
      }

      .issue-type-btn i {
        font-size: 0.95rem;
      }

      /* Severity: 2x2 */
      .severity-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
      }

      .severity-btn {
        flex-direction: row;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.65rem 0.5rem;
        font-size: 0.78rem;
      }

      .severity-btn i {
        font-size: 0.6rem;
      }
    }

    /* ==========================================
       MOBILE — 375px (iPhone SE / mini)
       ========================================== */
    @media (max-width: 375px) {
      .container {
        padding: 0 0.65rem;
      }

      .support-container {
        padding: 0.875rem 0 5.5rem;
      }

      .page-header {
        margin-bottom: 1rem;
      }

      /* Banner: minimal, single line */
      .primary-action-banner {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 10px;
      }

      .primary-action-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }

      .primary-action-text h3 {
        font-size: 0.85rem;
      }

      .primary-action-button {
        padding: 0.5rem 0.65rem;
        font-size: 0.78rem;
        gap: 0.25rem;
      }

      .primary-action-arrow {
        display: none;
      }

      /* Quick actions */
      .action-card {
        padding: 0.65rem 0.2rem;
      }

      .action-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
      }

      .action-title {
        font-size: 0.62rem;
      }

      /* Sticky button */
      .mobile-sticky-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
      }

      /* FAQ */
      .faq-section {
        padding: 0.875rem;
      }

      .faq-question {
        padding: 0.75rem;
        font-size: 0.9rem;
      }

      .section-title {
        font-size: 1.15rem;
      }

      .section-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
      }

      /* Search */
      .search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
      }

      .search-icon {
        left: 0.75rem;
        font-size: 0.9rem;
      }

      /* Category filters */
      .category-filter {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
      }

      /* Report form */
      .sidebar-card {
        padding: 0.75rem;
      }

      .card-title {
        font-size: 1rem;
      }

      .card-subtitle {
        font-size: 0.72rem;
      }

      .form-label {
        font-size: 0.85rem;
      }

      .form-input,
      .form-select,
      .form-textarea {
        padding: 0.65rem 0.7rem;
        font-size: 0.9rem;
      }

      .form-textarea {
        min-height: 80px;
      }

      .report-note {
        font-size: 0.78rem;
      }

      .submit-button {
        padding: 0.75rem;
        font-size: 0.88rem;
      }
    }

    /* ========== DARK MODE ========== */
    @media (prefers-color-scheme: dark) {
      .search-input,
      .form-input,
      .form-select,
      .form-textarea {
        border-color: rgba(255, 255, 255, 0.15);
      }

      .issue-type-btn,
      .priority-option,
      .report-option {
        border-color: rgba(255, 255, 255, 0.15);
      }

      .mobile-sticky-report {
        background: linear-gradient(to top, rgba(26, 32, 44, 1) 70%, rgba(26, 32, 44, 0));
      }

      .competition-report-card {
        border-color: rgba(229, 62, 62, 0.3);
        background: linear-gradient(135deg, rgba(229, 62, 62, 0.08) 0%, var(--surface) 60%);
      }

      .severity-btn.emergency {
        border-color: #9B4DCA;
        color: #B794F4;
      }

      .severity-btn.emergency.active,
      .severity-btn.emergency:hover {
        background: #7B2D8B;
        color: white;
      }

      .emergency-note {
        background: rgba(123, 45, 139, 0.15);
        border-color: rgba(123, 45, 139, 0.35);
        color: #B794F4;
      }

      .booking-status-badge.pending {
        color: #F6AD55;
      }

      .booking-status-badge.confirmed,
      .booking-status-badge.paid,
      .booking-status-badge.completed {
        color: #68D391;
      }

      .booking-status-badge.cancelled {
        color: #FC8181;
      }

      .booking-message.info {
        background: rgba(66, 153, 225, 0.12);
        border-color: rgba(66, 153, 225, 0.3);
        color: #90CDF4;
      }

      .booking-message.success {
        background: rgba(72, 187, 120, 0.12);
        border-color: rgba(72, 187, 120, 0.3);
        color: #68D391;
      }

      .booking-message.error {
        background: rgba(245, 101, 101, 0.12);
        border-color: rgba(245, 101, 101, 0.3);
        color: #FC8181;
      }
    }
