        body {
          font-family: 'Inter', sans-serif;
          background: #fefefe;
          color: #111827;
        }

        :root {
          --primary: #FF5A5F;
          --primary-dark: #e0484d;
        }

        .btn-primary-custom {
          background-color: var(--primary);
          color: #fff;
          border: none;
        }

        .btn-primary-custom:hover {
          background-color: var(--primary-dark);
        }

        .hero {
          background: linear-gradient(to right, #e0e7ff, #f3f4f6);
          padding: 5rem 2rem;
          text-align: center;
        }

        .brand-color {
          color: var(--primary) !important;
        }

        .features .card {
          transition: 0.3s ease;
        }

        .features .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }

        .modal-content {
          border-radius: 1rem;
          padding: 2rem;
        }

        .modal-header .icon-circle {
          background: #f3f4f6;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          margin: 0 auto 1rem;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .app-links img {
          height: 48px;
          margin: 0 0.5rem;
          transition: transform 0.3s ease;
        }

        .app-links img:hover {
          transform: scale(1.05);
        }

        .features .card {
          border: none;
          border-radius: 1rem;
          padding: 2rem 1.5rem;
          text-align: center;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }

        .features .card:hover {
          transform: translateY(-6px);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }

        .features .card i {
          font-size: 2.5rem;
          background: linear-gradient(45deg, #ff5a5f, #ff8084);
          color: white;
          border-radius: 50%;
          padding: 15px;
          box-shadow: 0 4px 10px rgba(255, 90, 95, 0.4);
          margin-bottom: 1rem;
          display: inline-block;
          width: 60px;
          height: 60px;
          line-height: 30px;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .features .card h5 {
          font-weight: 600;
          margin-bottom: 0.5rem;
        }

        .features .card p {
          color: #6b7280;
          font-size: 0.95rem;
        }

        .pricing-card {
          border-radius: 1rem;
          border: 2px solid transparent;
          transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .pricing-card:hover {
          transform: translateY(-5px);
          border-color: var(--primary);
        }

        .price {
          font-size: 2rem;
        }


        /* Update all check icons and price text to use brand color */
        .pricing-card ul li i,
        .price {
          color: var(--primary) !important;
        }

        /* Update pricing buttons to use brand style */
        .pricing-card .btn {
          background-color: var(--primary);
          color: #fff;
          border: none;
          border-radius: 999px;
          transition: background-color 0.3s ease;
        }

        .pricing-card .btn:hover {
          background-color: var(--primary-dark);
        }

        /* Recommended card with brand border */
        .pricing-card.recommended {
          border-color: var(--primary);
          box-shadow: 0 12px 32px rgba(255, 90, 95, 0.2);
        }

        /* Tag on top of recommended card */
        .pricing-card.recommended::before {
          content: "Most Popular";
          position: absolute;
          top: -12px;
          left: 50%;
          transform: translateX(-50%);
          background-color: var(--primary);
          color: #fff;
          padding: 0.25rem 0.75rem;
          font-size: 0.75rem;
          font-weight: 600;
          border-radius: 999px;
          box-shadow: 0 4px 10px rgba(255, 90, 95, 0.2);
        }

        /* Optional: icon color override if using <i> inside a shape */
        .pricing-card .plan-icon {
          color: var(--primary);
        }


        /* feature page */
        .features-wrapper h1 {
          font-size: 2.5rem;
        }

        .feature-box {
          background: #fff;
          padding: 2rem;
          border-radius: 1rem;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          animation: fadeInUp 0.6s ease forwards;
          opacity: 0;
        }

        .feature-box:hover {
          transform: translateY(-5px);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .feature-box i {
          font-size: 2rem;
          color: var(--primary);
          margin-bottom: 1rem;
        }

        .feature-box h3 {
          font-size: 1.25rem;
          margin-bottom: 0.5rem;
        }

        .feature-box p {
          color: var(--text-light);
          font-size: 0.95rem;
        }

        @keyframes fadeInUp {
          0% {
            opacity: 0;
            transform: translateY(20px);
          }

          100% {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* Brand Evolution Section */
        .brand-evolution {
          background: linear-gradient(135deg, #fff0f0, #ffeaea);
          font-family: 'Inter', sans-serif;
        }

        .brand-tagline {
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 1rem;
          display: inline-block;
        }

        .tagline-line {
          display: block;
          opacity: 0;
          transform: translateY(30px);
          animation: fadeUp 0.8s ease-out forwards;
        }

        .tagline-line.old-brand {
          color: #9ca3af;
          animation-delay: 0.2s;
        }

        .tagline-line.new-brand {
          color: var(--primary);
          animation-delay: 0.7s;
        }

        .subline {
          font-size: 1.1rem;
          color: #6b7280;
          margin-top: 1rem;
          opacity: 0;
          transform: translateY(20px);
          animation: fadeUp 0.8s ease-out forwards;
          animation-delay: 1.2s;
        }

        @keyframes fadeUp {
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }


        /* end of feature page */

        /* event page */


        .text-primary {
          color: var(--primary) !important;
        }

        .btn-primary {
          background-color: var(--primary);
          border: none;
        }

        .btn-primary:hover {
          background-color: var(--primary-dark);
        }

        .avatars img {
          border-radius: 50%;
          width: 36px;
          height: 36px;
          border: 2px solid white;
          margin-left: -10px;
          display: inline-block;
        }

        /* end of event page */

        /* create event page */
        .sidebar {
          width: 260px;
          background: #fff;
          min-height: 100vh;
        }

        /* Responsive sidebar container */
        .createsidebar {
          height: 100%;
          background-color: #f8f9fa;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          transition: transform 0.3s ease;
        }

        /* Logo styling */
        .logo {
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--primary);
        }

        .logo .dot {
          color: var(--primary);
        }

        /* Sidebar link styles */
        .menu a {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          text-decoration: none;
          color: var(--text);
          font-weight: 500;
          transition: color 0.2s;
        }

        .menu a:hover {
          color: var(--primary);
        }

        /* User card */
        .user-card img {
          width: 60px;
          height: 60px;
        }

        /* Input icons */
        .input-wrapper {
          position: relative;
        }

        .input-wrapper i {
          position: absolute;
          top: 50%;
          left: 0.75rem;
          transform: translateY(-50%);
          color: var(--muted);
        }

        .input-wrapper input,
        .input-wrapper textarea,
        .input-wrapper select {
          padding-left: 2.2rem;
        }

        /* Form step sections */
        .form-section {
          display: none;
        }

        .form-section.active {
          display: block;
        }

        /* Dot indicators */
        .dot {
          height: 10px;
          width: 10px;
          background-color: var(--primary);
          border-radius: 50%;
          display: inline-block;
          margin-right: 0.5rem;
        }

        .dot.empty {
          background-color: transparent;
          border: 2px solid var(--muted);
        }

        /* Toggle sidebar button */
        .toggle-sidebar {
          position: fixed;
          /* fixed position for consistent placement */
          top: 1rem;
          left: 1rem;
          background: none;
          border: none;
          font-size: 24px;
          z-index: 1100;
          /* higher than sidebar */
        }

        /* BACK LINK COLOR */
        .back-link {
          color: #444;
          font-size: 1.25rem;
        }

        /* Responsive mobile styles */
        @media (max-width: 768px) {
          .createsidebar {
            position: fixed;
            top: 0;
            left: 0;
            transform: translateX(-100%);
            z-index: 1040;
            width: 260px;
            height: 100vh;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
          }

          .createsidebar.open {
            transform: translateX(0);
            padding-left: 2rem;
          }

          .content {
            margin-left: 0 !important;
          }
        }


        /* end create event */

        /* my event */

        .sidebar .logo img {
          height: 36px;
        }

        .menu a {
          text-decoration: none;
          color: #333;
          padding: 0.5rem 0;
          display: flex;
          gap: 10px;
          align-items: center;
        }

        .menu a:hover {
          color: var(--primary);
        }

        .user-card img {
          width: 60px;
          height: 60px;
          border-radius: 50%;
        }

        .event-card {
          background: #fff;
          border: 1px solid #eee;
          border-radius: 1rem;
          padding: 1rem;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
          display: flex;
          flex-direction: row;
          gap: 1rem;
          align-items: flex-start;
        }

        .event-photo {
          flex-shrink: 0;
          width: 250px;
          height: 250px;
        }

        .event-photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 0.5rem;
        }

        .event-details {
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }

        .event-title {
          font-size: 1.25rem;
          font-weight: 600;
          color: #333;
        }

        .event-date {
          color: var(--primary);
          font-weight: 500;
        }

        .location-warning {
          color: #f39c12;
          font-weight: 600;
        }

        .card-actions .btn {
          border-radius: 0.5rem;
          font-weight: 500;
        }

        @media (max-width: 768px) {
          .event-card {
            flex-direction: column;
          }
        }

        /* end of my event */

        /* Explore page */
 
        .explore-event-card {
          border: none;
          border-radius: 1rem;
          overflow: hidden;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          transition: transform 0.2s;
          background-color: white;
        }

        .explore-event-card:hover {
          transform: translateY(-5px);
        }

        .event-thumb {
          height: 180px;
          object-fit: cover;
          width: 100%;
        }

        .event-info {
          padding: 1rem;
        }

        .event-title {
          font-size: 1.1rem;
          font-weight: 600;
          color: var(--text);
        }

        .event-meta {
          color: var(--muted);
          font-size: 0.9rem;
        }

        .badge-primary {
          background-color: var(--primary);
        }

        footer {
          margin-top: 3rem;
          padding: 2rem 0;
          text-align: center;
          background-color: #fff;
          border-top: 1px solid var(--border);
        }

        .city-select-btn {
          border-radius: 2rem;
        }

        .city-option {
          cursor: pointer;
          padding: 6px 10px;
          border-radius: 4px;
        }

        .city-option:hover {
          background-color: #f0f0f0;
        }

        .event-price {
          font-weight: 500;
          color: #000;
          font-size: larger;
        }
        .event-price-label {
          font-weight: 200;
          color: #6e6e6e;
          font-size: small;
        }

        /* end of explore page */