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

        :root {
          --bg-dark: #0a0a0a;
          --bg-secondary: #1a1a1a;
          --border-color: #333;
          --text-primary: #ffffff;
          --text-secondary: #999;
          --accent-color: #6366f1;
          --accent-hover: #b4b1f5;
          --accent-hover-2: #4f46e5;
          --like-color: #ef4444;
        }

        body {
          font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
          background-color: var(--bg-dark);
          color: var(--text-primary);
          line-height: 1.6;
        }

        /* Header */
        header {
          background-color: var(--bg-secondary);
          border-bottom: 1px solid var(--border-color);
          padding: 0.7rem 0 0 0;
          position: sticky;
          top: 0;
          z-index: 100;
        }

        .header-content {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .logo {
          font-size: 1.5rem;
          font-weight: 700;
          letter-spacing: -0.5px;
        }

        .logo-accent {
          color: var(--accent-color);
        }

        .search-bar {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          background-color: var(--bg-dark);
          border: 1px solid var(--border-color);
          border-radius: 2rem;
          padding: 0.75rem 1.25rem;
          max-width: 300px;
          flex: 1;
          /* margin: 0 2rem; */
        }

        .search-bar input {
          background: none;
          border: none;
          color: var(--text-primary);
          font-size: 0.9rem;
          width: 100%;
          outline: none;
        }

        .search-bar input::placeholder {
          color: var(--text-secondary);
        }

        .filter-btn {
          background-color: var(--accent-color);
          color: white;
          border: none;
          padding: 6px 12px;
          border-radius: 0.5rem;
          cursor: pointer;
          font-weight: 600;
          transition: background-color 0.3s ease;
        }

        .filter-btn:hover {
          background-color: var(--accent-hover);
        }

        /* Main Container */
        main {
          max-width: 1400px;
          margin: 0 auto;
          padding: 2rem 1rem;
          display: flex;
          flex-direction: row;
          justify-content: center;
        }

        .section-title {
          font-size: 1.25rem;
          font-weight: 600;
          margin-bottom: 1.5rem;
          text-transform: uppercase;
          letter-spacing: 0.05em;
          color: var(--text-secondary);
        }

        /* Grid Layout */
        .gallery {
          display: grid;
          grid-template-columns: repeat(auto-fill, 320px);
          gap: 1.5rem;
          margin-bottom: 3rem;
          justify-content: center;
        }

        @media (max-width: 1200px) {
          .gallery {
            grid-template-columns: repeat(2, 1fr);
          }


        }

        @media (max-width: 900px) {
          .header-content {
            flex-direction: column;
            gap: 1rem;
          }
        }

        @media (max-width: 640px) {
          .header-content {
            flex-direction: column;
            gap: 1rem;
          }

          .gallery {
            grid-template-columns: 1fr;
          }

          .header-content {
            gap: 10px;
          }
        }

        @media (max-width: 425px) {

          nav ul li {
            font-size: 14px;
          }
          .header-content {
            flex-direction: column;
            gap: 1rem;
          }

          .limited-offer {
            display: flex;
            flex-direction: row;
            font-size: 14px;
            justify-content: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            padding: 8px 10px;
            background: var(--accent-color);
            margin: 6px auto 0 auto;
            width: 100%;
          }

          .limited-offer-alert {
            display: none;
            text-transform: uppercase;
            font-size: 10px;
            margin: auto 10px;
            font-weight: 700;
            background: #8b8dff;
            padding: 3px 6px;
            border-radius: 3px;
          }

          .limited-offer p {
            font-size: 10px;
          }

          .search-bar {
            max-width: 100%;
            margin: 0;
          }

          .filter-btn {
            padding: 6px 8px;
          }
        }

        /* Card */
        .prompt-card {
          background-color: var(--bg-secondary);
          border: 1px solid var(--border-color);
          border-radius: 0.75rem;
          overflow: hidden;
          transition: all 0.3s ease;
          cursor: pointer;
          display: flex;
          flex-direction: column;
          height: 100%;
        }

        .prompt-card:hover {
          border-color: var(--accent-color);
          transform: translateY(-4px);
          box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
        }

        /* Card Image */
        .card-image {
          width: 100%;
          height: 280px;
          background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
          position: relative;
          overflow: hidden;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 3rem;
        }

        .card-image.gradient-1 {
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .card-image.gradient-2 {
          background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .card-image.gradient-3 {
          background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .card-image.gradient-4 {
          background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .card-image.gradient-5 {
          background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .card-image.gradient-6 {
          background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .emoji {
          animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

          0%,
          100% {
            transform: translateY(0px);
          }

          50% {
            transform: translateY(-10px);
          }
        }

        /* Card Content */
        .card-content {
          padding: 1.25rem;
          display: flex;
          flex-direction: column;
          flex-grow: 1;
        }

        .card-category {
          display: inline-block;
          background-color: var(--accent-color);
          color: white;
          padding: 0.35rem 0.75rem;
          border-radius: 0.35rem;
          font-size: 0.75rem;
          font-weight: 600;
          text-transform: uppercase;
          margin-bottom: 0.75rem;
          width: fit-content;
        }

        .card-reference {
          display: inline-block;
          background-color: #444444;
          color: white;
          padding: 0.35rem 0.75rem;
          border-radius: 0.35rem;
          font-size: 0.75rem;
          font-weight: 600;
          text-transform: uppercase;
          margin-bottom: 0.75rem;
          width: fit-content;
        }

        .nocard-reference {
          display: none;
        }

        .card-title {
          font-size: 0.95rem;
          font-weight: 600;
          margin-bottom: 0.5rem;
          line-height: 1.4;
        }

        .card-date {
          font-size: 0.8rem;
          color: var(--text-secondary);
          margin-bottom: 0.5rem;
        }

        .card-prompt {
          font-size: 0.9rem;
          color: var(--text-secondary);
          margin-bottom: 1rem;
          flex-grow: 1;
          line-height: 1.5;
        }

        /* Card Footer */
        .card-footer {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding-top: 1rem;
          border-top: 1px solid var(--border-color);
        }

        .likes {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-size: 0.9rem;
          color: var(--text-secondary);
        }

        .like-btn {
          background: none;
          border: none;
          cursor: pointer;
          font-size: 1.25rem;
          transition: transform 0.2s ease, color 0.2s ease;
          color: var(--text-secondary);
        }

        .like-btn:hover {
          transform: scale(1.2);
        }

        .like-btn.liked {
          color: var(--like-color);
        }

        .copy-btn {
          background-color: transparent;
          border: 1px solid var(--accent-color);
          color: var(--accent-color);
          padding: 0.5rem 1rem;
          border-radius: 0.35rem;
          cursor: pointer;
          font-size: 0.85rem;
          font-weight: 600;
          transition: all 0.3s ease;
        }

        .copy-btn:hover {
          background-color: var(--accent-color);
          color: white;
        }

        /* Modal */
        .modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0, 0, 0, 0.8);
          z-index: 1000;
          align-items: center;
          justify-content: center;
          animation: fadeIn 0.3s ease;
        }

        .modal.active {
          display: flex;
        }

        @keyframes fadeIn {
          from {
            opacity: 0;
          }

          to {
            opacity: 1;
          }
        }

        .modal-content {
          background-color: var(--bg-dark);
          border: 1px solid var(--border-color);
          border-radius: 1rem;
          padding: 2rem;
          max-width: 600px;
          width: 90%;
          position: relative;
          animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
          from {
            transform: translateY(30px);
            opacity: 0;
          }

          to {
            transform: translateY(0);
            opacity: 1;
          }
        }

        .modal-close {
          position: absolute;
          top: 1rem;
          right: 1rem;
          background: none;
          border: none;
          color: var(--text-secondary);
          font-size: 1.5rem;
          cursor: pointer;
          transition: color 0.2s ease;
        }

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

        .modal-title {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 1rem;
        }

        .modal-prompt {
          background-color: var(--bg-dark);
          padding: 1.5rem;
          border-radius: 0.5rem;
          border: 1px solid var(--border-color);
          margin-bottom: 1rem;
          line-height: 1.6;
          max-height: 60vh;
          overflow-y: auto;
          word-wrap: break-word;
          white-space: pre-wrap;
        }

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

        .modal-actions button {
          flex: 1;
          padding: 0.75rem 1.5rem;
          border: none;
          border-radius: 0.5rem;
          cursor: pointer;
          font-weight: 600;
          transition: all 0.3s ease;
        }

        .modal-copy-btn {
          background-color: var(--accent-color);
          color: white;
        }

        .modal-copy-btn:hover {
          background-color: var(--accent-hover);
        }

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

        .modal-close-btn:hover {
          background-color: var(--bg-dark);
        }

        /* Filter Checkbox */
        .filter-checkbox {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          cursor: pointer;
          padding: 0.5rem;
          border-radius: 0.35rem;
          transition: background-color 0.2s ease;
        }

        .filter-checkbox:hover {
          background-color: var(--bg-dark);
        }

        .filter-checkbox input {
          width: 18px;
          height: 18px;
          cursor: pointer;
          accent-color: var(--accent-color);
        }

        .filter-checkbox label {
          cursor: pointer;
          flex-grow: 1;
        }

        .filter-checkbox.selected {
          background-color: var(--accent-color);
          color: white;
        }

        .filter-checkbox.selected:hover {
          background-color: var(--accent-hover);
        }

        /* Toast */
        .toast {
          position: fixed;
          bottom: 2rem;
          right: 2rem;
          background-color: var(--accent-color);
          color: white;
          padding: 1rem 1.5rem;
          border-radius: 0.5rem;
          box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
          animation: slideInUp 0.3s ease;
          z-index: 2000;
        }

        @keyframes slideInUp {
          from {
            transform: translateY(20px);
            opacity: 0;
          }

          to {
            transform: translateY(0);
            opacity: 1;
          }
        }

        /* Footer */
        footer {
          background-color: var(--bg-secondary);
          border-top: 1px solid var(--border-color);
          padding: 1rem 0;
          text-align: center;
          margin-top: 3rem;
        }

        .footer-content a {
          color: var(--text-secondary);
          text-decoration: none;
          margin: 0 1rem;
          transition: color 0.3s ease;
        }

        .footer-content a:hover {
          color: var(--accent-color);
        }

        /* Sidebar */
        .sidebar {
          display: none;
        }

        @media (min-width: 1024px) {
          .sidebar {
            display: block;
            width: 300px;
            height: auto;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            padding: 2rem 1rem;
            overflow-y: auto;
            flex-shrink: 0;
            position: sticky;
            top: 150px;
          }

          .sidebar h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
          }

          .sidebar .filter-checkbox {
            margin-bottom: 0.5rem;
          }

          .sidebar #clearFilterSidebar {
            background-color: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 0.35rem;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            width: 100%;
          }

          .sidebar #clearFilterSidebar:hover {
            background-color: var(--bg-dark);
          }

          main {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
          }

          .filter-btn {
            display: none;
          }
        }

        @keyframes countdown-pulse {

          0%,
          100% {
            opacity: 1;
          }

          50% {
            opacity: 0.5;
          }
        }

        .countdown {
          animation: countdown-pulse 1.5s infinite;
        }

        /* Banner Styles */
        .cookie-banner {
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          padding: 10px;
          z-index: 50;
          box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
          background-color: var(--bg-secondary);
          color: white;
          display: none;
        }

        .cookie-banner.show {
          display: block;
        }

        .banner-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-between;
          gap: 1rem;
          border-radius: 1.5rem;
          padding: 1rem;
        }

        @media (min-width: 768px) {
          .banner-container {
            flex-direction: row;
          }
        }

        .banner-content {
          flex: 1;
        }

        .banner-content strong {
          display: block;
          margin-bottom: 0.25rem;
        }

        .banner-content p {
          font-size: 0.875rem;
          margin: 0;
        }

        .banner-content a {
          color: blue;
          font-size: 0.875rem;
          text-decoration: underline;
        }

        .banner-buttons {
          display: flex;
          gap: 0.5rem;
          flex-wrap: wrap;
        }

        .btn {
          font-size: 14px;
          padding: 5px 10px;
          width: fit-content;
          position: relative;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          font-weight: normal;
          overflow: hidden;
          cursor: pointer;
          gap: 0.5rem;
          background-color: #404040;
          color: white;
          border-radius: 1.5rem;
          border: none;
          transition: background-color 0.2s;
        }

        .btn:hover {
          background-color: #525252;
        }

        /* Modal Styles */
        .modal-overlay {
          position: fixed;
          inset: 0;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 50;
          display: none;
          align-items: center;
          justify-content: center;
        }

        .modal-overlay.show {
          display: flex;
        }

        .modal-content-ad {
          background-color: var(--bg-secondary);
          border-radius: 0.5rem;
          max-width: 28rem;
          width: 100%;
          margin: 1rem;
          padding: 10px;
        }

        .modal-title {
          font-size: 1.25rem;
          font-weight: bold;
          margin-bottom: 1rem;
        }

        .modal-options {
          display: flex;
          flex-direction: column;
          gap: 1rem;
          margin-bottom: 1.5rem;
        }

        .option-item {
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .option-info h3 {
          font-weight: 600;
          margin-bottom: 0.25rem;
        }

        .option-info p {
          font-size: 0.875rem;
          color: #6b7280;
        }

        /* Toggle Switch Styles */
        .toggle-switch {
          position: relative;
          display: inline-flex;
          align-items: center;
          cursor: pointer;
        }

        .toggle-switch input {
          position: absolute;
          opacity: 0;
          width: 0;
          height: 0;
        }

        .toggle-slider {
          width: 2.75rem;
          height: 1.5rem;
          background-color: #e5e7eb;
          border-radius: 9999px;
          position: relative;
          transition: background-color 0.3s;
        }

        .toggle-slider::after {
          content: '';
          position: absolute;
          top: 2px;
          left: 2px;
          background-color: white;
          border: 1px solid #d1d5db;
          border-radius: 9999px;
          height: 1.25rem;
          width: 1.25rem;
          transition: transform 0.3s;
        }

        .toggle-switch input:checked+.toggle-slider {
          background-color: #2563eb;
        }

        .toggle-switch input:checked+.toggle-slider::after {
          transform: translateX(1.25rem);
          border-color: white;
        }

        .toggle-switch input:focus+.toggle-slider {
          outline: none;
          box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
        }

        .modal-footer {
          display: flex;
          justify-content: flex-end;
          gap: 0.75rem;
        }

        .modal-footer button {
          font-size: 14px;
          padding: 5px 10px;
          width: fit-content;
          cursor: pointer;
          border: 1px solid #d1d5db;
          background-color: white;
          color: black;
          border-radius: 0.25rem;
        }

        .modal-footer button:hover {
          background-color: #3b3b3b;
        }

        .modal-footer button.primary {
          background-color: #2563eb;
          color: white;
          border-color: #2563eb;
        }

        .modal-footer button.primary:hover {
          background-color: #1d4ed8;
        }

        .limited-offer {
          display: flex;
          flex-direction: row;
          justify-content: center;
          gap: 10px;
          color: white;
          text-decoration: none;
          padding: 8px 10px;
          background: var(--accent-color);
          margin: 6px auto 0 auto;
          width: 100%;
        }

        .limited-offer-alert {
            text-transform: uppercase;
            font-size: 10px;
            margin: auto 10px;
            font-weight: 700;
            background: #8b8dff;
            padding: 3px 6px;
            border-radius: 3px;
          }