/* Extracted from coupons.html. Do not edit manually. */

body { box-sizing: border-box; }
    * { font-family: 'DM Sans', sans-serif; }
    
    /* Modern lightweight card design */
    .coupon-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 16px;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    .coupon-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255, 48, 8, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 74, 0.02) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .coupon-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-1px);
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    /* Noise texture overlay */
    .coupon-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.4;
    }
    
    /* Editorial coupon header - single vertical text block */
    .coupon-header {
      margin-bottom: 16px;
    }
    
    .coupon-code {
      font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 4px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .coupon-discount {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 48, 8, 0.9);
      letter-spacing: -0.01em;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    
    /* Restaurant name - secondary prominence */
    .coupon-restaurant {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 8px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    
    /* Minimal metadata - quiet and secondary */
    .coupon-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    .coupon-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .coupon-meta-icon {
      width: 14px;
      height: 14px;
      opacity: 0.7;
      color: rgba(255, 255, 255, 0.6);
    }
    
    /* Description - readable body text */
    .coupon-description {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-clamp: 2;
      font-weight: 400;
      letter-spacing: 0;
    }
    
    /* Success rate indicator - subtle data */
    .success-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 500;
    }
    
    .success-bar {
      width: 48px;
      height: 4px;
      overflow: hidden;
    }

    .success-progress {
      width: 100%;
      height: 100%;
      display: block;
      border: none;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.12);
      appearance: none;
      -webkit-appearance: none;
      overflow: hidden;
    }

    .success-progress::-webkit-progress-bar {
      background: rgba(255, 255, 255, 0.12);
      border-radius: 2px;
    }

    .success-progress::-webkit-progress-value {
      background: linear-gradient(90deg, #ff3d00, #ff6b35);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .success-progress::-moz-progress-bar {
      background: linear-gradient(90deg, #ff3d00, #ff6b35);
      border-radius: 2px;
    }
    
    /* Compact voting actions */
    .coupon-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .vote-group {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .vote-button {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.15s ease;
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
    }
    
    .vote-button:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
    }
    
    .vote-button.voted-up {
      background: rgba(34, 197, 94, 0.15);
      border-color: rgba(34, 197, 94, 0.35);
      color: #22c55e;
    }
    
    .vote-button.voted-down {
      background: rgba(239, 68, 68, 0.15);
      border-color: rgba(239, 68, 68, 0.35);
      color: #ef4444;
    }
    
    .vote-count {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      min-width: 18px;
      text-align: center;
    }
    
    .vote-count.up {
      color: #22c55e;
    }
    
    .vote-count.down {
      color: #ef4444;
    }
    
    /* User attribution - whisper quiet */
    .coupon-user {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 500;
    }
    
    .user-avatar {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Responsive grid */
    @media (max-width: 640px) {
      .coupon-card {
        padding: 14px;
        border-radius: 10px;
      }
      
      .coupon-code {
        font-size: 20px;
      }
      
      .coupon-discount {
        font-size: 13px;
      }
      
      .coupon-restaurant {
        font-size: 14px;
      }
      
      .coupon-description {
        font-size: 13px;
        line-height: 1.45;
      }
      
      .coupon-meta {
        font-size: 11px;
      }
    }
    
    @media (min-width: 1024px) {
      .coupon-card {
        padding: 20px;
        border-radius: 14px;
      }
      
      .coupon-code {
        font-size: 28px;
      }
      
      .coupon-discount {
        font-size: 15px;
      }
    }
    
    /* Enhanced dropdown styles */
    .dropdown-container {
      position: relative;
    }
    
    .dropdown-trigger {
      width: 100%;
      background: #0F0F0F;
      border: 1px solid rgba(255, 48, 8, 0.2);
      border-radius: 8px;
      padding: 10px 12px;
      color: #F5F5F5;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .dropdown-trigger:hover {
      border-color: rgba(255, 48, 8, 0.4);
      background: #141414;
    }
    
    .dropdown-trigger:focus {
      outline: none;
      border-color: rgba(255, 48, 8, 0.6);
      box-shadow: 0 0 0 3px rgba(255, 48, 8, 0.1);
    }
    
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      background: #0F0F0F;
      border: 1px solid rgba(255, 48, 8, 0.15);
      border-radius: 8px;
      box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 48, 8, 0.05),
        0 0 20px rgba(255, 48, 8, 0.02);
      z-index: 1000;
      overflow: hidden;
      max-height: 240px;
      overflow-y: auto;
    }
    
    .dropdown-option {
      padding: 12px 14px;
      color: #F5F5F5;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1.4;
    }
    
    .dropdown-option:hover {
      background: rgba(255, 48, 8, 0.12);
      color: #ffffff;
    }
    
    .dropdown-option.selected {
      background: rgba(255, 48, 8, 0.18);
      color: #ffffff;
    }
    
    .dropdown-option-icon {
      font-size: 16px;
      opacity: 0.8;
      width: 20px;
      text-align: center;
    }
    
    /* Mobile bottom sheet */
    @media (max-width: 640px) {
      .dropdown-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        border: none;
        border-top: 1px solid rgba(255, 48, 8, 0.15);
        max-height: 50vh;
        box-shadow: 
          0 -10px 25px rgba(0, 0, 0, 0.3),
          0 0 0 1px rgba(255, 48, 8, 0.05);
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      .dropdown-menu.show {
        transform: translateY(0);
      }
      
      .dropdown-option {
        padding: 16px 18px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      
      .dropdown-option:last-child {
        border-bottom: none;
      }
      
      .dropdown-option-icon {
        font-size: 18px;
        width: 24px;
      }
    }
    
    /* Custom scrollbar for dropdown */
    .dropdown-menu::-webkit-scrollbar {
      width: 6px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
      background: rgba(255, 48, 8, 0.3);
      border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 48, 8, 0.5);
    }
    .nav-glass {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #FF3008 0%, #FF5533 100%);
      box-shadow: 0 8px 20px -6px rgba(255, 48, 8, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px -4px rgba(255, 48, 8, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    .gradient-blob {
      filter: blur(100px);
      opacity: 0.5;
      animation: blob-float 10s ease-in-out infinite;
    }
    @keyframes blob-float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.9); }
    }

    /* Category pills */
    .category-pill {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    
    .category-pill::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .category-pill:hover::before {
      left: 100%;
    }
    
    .category-pill:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 48, 8, 0.25);
    }
    
    .category-pill.active {
      background: linear-gradient(135deg, #FF3008 0%, #FF5533 100%);
      border-color: #FF3008;
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(255, 48, 8, 0.3);
    }

    /* Modal styles */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(6px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      animation: modalFadeIn 0.2s ease;
    }
    
    @keyframes modalFadeIn {
      from {
        opacity: 0;
        backdrop-filter: blur(0px);
      }
      to {
        opacity: 1;
        backdrop-filter: blur(6px);
      }
    }
    
    .modal-content {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 0.75rem;
      max-width: 400px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      animation: modalSlideIn 0.3s ease;
    }
    
    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    
    .modal-header {
      padding: 1rem 1rem 0.75rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(135deg, rgba(255, 48, 8, 0.05) 0%, transparent 100%);
      border-radius: 0.75rem 0.75rem 0 0;
      position: relative;
    }
    
    .modal-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 1px;
      background: linear-gradient(90deg, #FF3008, transparent, #FF3008);
    }
    
    .modal-body {
      padding: 1rem;
    }
    
    .modal-close {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 0.75rem;
    }
    
    .modal-close:hover {
      background: rgba(255, 48, 8, 0.2);
      border-color: rgba(255, 48, 8, 0.5);
      transform: scale(1.1) rotate(90deg);
    }
    
    .fab-button {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #FF3008 0%, #FF5533 100%);
      border: none;
      box-shadow: 0 4px 12px rgba(255, 48, 8, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 1000;
    }
    
    .fab-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 48, 8, 0.4);
    }
    
    .fab-button:active {
      transform: translateY(0);
    }
    
    @media (max-width: 640px) {
      .modal-content {
        margin: 0.5rem;
        border-radius: 0.5rem;
        max-height: 90vh;
      }
      
      .modal-header,
      .modal-body {
        padding: 0.75rem;
      }
      
      .fab-button {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
      }
    }
    
    [v-cloak] { display: none; }

    @media (max-width: 640px) {
      .mobile-menu-btn {
        display: block;
      }
    }

    .glass-card, .coupon-card, .nav-glass {
      transform: translateZ(0);
    }

    .gradient-blob-delay-4 {
      animation-delay: -4s;
    }