* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
      color: #ffffff;
      overflow-x: hidden;
      width: 100%;
    }

    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-bottom: 2px solid rgba(132, 255, 71, 0.2);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      width: 100%;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: lowercase;
      letter-spacing: -1px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: #84ff47;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #84ff47;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .login-btn {
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      padding: 0.7rem 1.5rem;
      border-radius: 25px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(132, 255, 71, 0.4);
    }

    .login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(132, 255, 71, 0.6);
    }

    .logout-btn {
      background: linear-gradient(135deg, #ff4757, #ff6348);
      color: #ffffff;
      padding: 0.7rem 1.5rem;
      border-radius: 25px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }

    .logout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(255, 71, 87, 0.6);
    }

    /* Hero Section */
    .hero {
      padding: 6rem 2rem;
      text-align: center;
      background: radial-gradient(ellipse at top, rgba(132, 255, 71, 0.15), transparent 70%);
      position: relative;
      overflow: hidden;
      width: 100%;
      min-height: 100vh;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(132, 255, 71, 0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
      opacity: 0.3;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(135deg, #84ff47, #00d4ff, #ff6b9d);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 3s ease infinite;
      position: relative;
      z-index: 1;
    }

    @keyframes gradientShift {
      0%, 100% { filter: hue-rotate(0deg); }
      50% { filter: hue-rotate(20deg); }
    }

    .hero p {
      font-size: 1.3rem;
      color: #b8c5d6;
      margin-bottom: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .cta-btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .cta-primary {
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      box-shadow: 0 4px 20px rgba(132, 255, 71, 0.4);
    }

    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(132, 255, 71, 0.6);
    }

    .cta-secondary {
      background: rgba(255, 107, 157, 0.2);
      color: #ff6b9d;
      border: 2px solid #ff6b9d;
    }

    .cta-secondary:hover {
      background: #ff6b9d;
      color: #0a0e27;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .section {
      padding: 5rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Coupon Cards Grid */
    .coupons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .coupon-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 20px;
      padding: 1.8rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .coupon-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, #84ff47, #00d4ff, #ff6b9d);
      border-radius: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .coupon-card:hover::before {
      opacity: 0.3;
    }

    .coupon-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 40px rgba(132, 255, 71, 0.3);
    }

    .brand-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
    }

    .brand-logo {
      width: 50px;
      height: 50px;
      background: #ffffff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #0a0e27;
      font-size: 1.2rem;
      overflow: hidden;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 5px;
    }

    .verified-badge {
      background: rgba(132, 255, 71, 0.2);
      color: #84ff47;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .discount-info {
      font-size: 2rem;
      font-weight: 900;
      color: #84ff47;
      margin-bottom: 0.8rem;
    }

    .coupon-description {
      color: #b8c5d6;
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
    }

    .promo-code-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border: none;
      border-radius: 12px;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
    }

    .promo-code-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 20px rgba(132, 255, 71, 0.5);
    }

    .expiry-timer {
      text-align: center;
      color: #ff6b9d;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Categories Grid */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .category-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .category-card:hover {
      transform: translateY(-5px);
      border-color: #84ff47;
      box-shadow: 0 10px 30px rgba(132, 255, 71, 0.3);
    }

    .category-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      width: 80px;
      height: 80px;
      margin: 0 auto 1rem;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .category-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .category-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
    }

    /* Brand Cards */
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
    }

    .brand-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.1);
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .brand-card:hover {
      border-color: #84ff47;
      transform: scale(1.05);
    }

    .brand-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 0.8rem;
      border-radius: 8px;
    }

    .brand-name {
      font-weight: 700;
      color: #ffffff;
      font-size: 1rem;
    }

    /* Blog Cards */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .blog-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(132, 255, 71, 0.3);
    }

    .blog-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(132, 255, 71, 0.3), rgba(0, 212, 255, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      overflow: hidden;
      position: relative;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-content {
      padding: 1.5rem;
    }

    .blog-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      color: #ffffff;
    }

    .blog-excerpt {
      color: #b8c5d6;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .read-more {
      color: #84ff47;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .read-more:hover {
      gap: 1rem;
    }

    /* Newsletter Section */
    .newsletter {
      background: radial-gradient(ellipse at center, rgba(132, 255, 71, 0.15), transparent 70%);
      padding: 5rem 2rem;
      text-align: center;
      width: 100%;
    }

    .newsletter h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .newsletter p {
      color: #b8c5d6;
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .newsletter-form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .newsletter-form input {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      border-radius: 50px;
      border: 2px solid rgba(132, 255, 71, 0.3);
      background: rgba(26, 31, 58, 0.8);
      color: #ffffff;
      font-size: 1rem;
      outline: none;
    }

    .newsletter-form input:focus {
      border-color: #84ff47;
    }

    .newsletter-form button {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border: none;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(132, 255, 71, 0.5);
    }

    .newsletter-form button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .newsletter-message {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 10px;
      font-weight: 600;
    }

    .newsletter-message.success {
      background: rgba(132, 255, 71, 0.2);
      color: #84ff47;
      border: 1px solid #84ff47;
    }

    .newsletter-message.error {
      background: rgba(255, 71, 87, 0.2);
      color: #ff4757;
      border: 1px solid #ff4757;
    }

    /* Footer */
    .footer {
      background: rgba(10, 14, 39, 0.95);
      padding: 4rem 2rem 2rem;
      border-top: 2px solid rgba(132, 255, 71, 0.2);
      width: 100%;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      color: #84ff47;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      font-weight: 800;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #b8c5d6;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: #84ff47;
      padding-left: 0.5rem;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(132, 255, 71, 0.1);
      color: #6b7a94;
    }

    .verified-badge-footer {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(132, 255, 71, 0.1);
      padding: 0.8rem 1.5rem;
      border-radius: 30px;
      margin-top: 1rem;
      color: #84ff47;
      font-weight: 700;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: linear-gradient(135deg, #1a1f3a, #0a0e27);
      border: 2px solid rgba(132, 255, 71, 0.3);
      border-radius: 20px;
      padding: 3rem;
      max-width: 500px;
      width: 100%;
      position: relative;
      max-height: 90%;
      overflow-y: auto;
      animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 71, 87, 0.2);
      color: #ff4757;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: #ff4757;
      color: #ffffff;
      transform: rotate(90deg);
    }

    .modal h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .modal p {
      color: #b8c5d6;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .modal h3 {
      color: #84ff47;
      font-size: 1.3rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .modal ul {
      color: #b8c5d6;
      margin-left: 1.5rem;
      line-height: 1.8;
    }

    /* Login/Signup Form Styles */
    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      color: #b8c5d6;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .form-group input {
      padding: 1rem;
      border-radius: 12px;
      border: 2px solid rgba(132, 255, 71, 0.2);
      background: rgba(26, 31, 58, 0.6);
      color: #ffffff;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input:focus {
      border-color: #84ff47;
      box-shadow: 0 0 15px rgba(132, 255, 71, 0.2);
    }

    .submit-btn {
      padding: 1rem;
      border-radius: 12px;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border: none;
      font-weight: 800;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(132, 255, 71, 0.5);
    }

    .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .form-switch {
      text-align: center;
      margin-top: 1.5rem;
      color: #b8c5d6;
    }

    .form-switch a {
      color: #84ff47;
      text-decoration: none;
      font-weight: 700;
      cursor: pointer;
    }

    .form-switch a:hover {
      text-decoration: underline;
    }

    .auth-message {
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      font-weight: 600;
      text-align: center;
    }

    .auth-message.error {
      background: rgba(255, 71, 87, 0.2);
      color: #ff4757;
      border: 1px solid #ff4757;
    }

    .auth-message.success {
      background: rgba(132, 255, 71, 0.2);
      color: #84ff47;
      border: 1px solid #84ff47;
    }

    /* Coupon Details Modal */
    .coupon-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      padding: 1rem;
      background: rgba(26, 31, 58, 0.4);
      border-radius: 10px;
    }

    .detail-label {
      color: #b8c5d6;
      font-weight: 600;
    }

    .detail-value {
      color: #ffffff;
      font-weight: 700;
    }

    .copy-code-big {
      padding: 1.5rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border: none;
      border-radius: 12px;
      font-weight: 900;
      font-size: 1.3rem;
      cursor: pointer;
      letter-spacing: 2px;
      transition: all 0.3s ease;
    }

    .copy-code-big:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 25px rgba(132, 255, 71, 0.6);
    }

    /* Deal Finder Tools */
    .filter-section {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 3rem;
    }

    .filter-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .filter-group label {
      color: #b8c5d6;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .filter-group select {
      padding: 0.8rem;
      border-radius: 10px;
      border: 2px solid rgba(132, 255, 71, 0.2);
      background: rgba(26, 31, 58, 0.6);
      color: #ffffff;
      font-size: 0.95rem;
      outline: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-group select:focus {
      border-color: #84ff47;
    }

    /* Tools Section */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .tool-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .tool-card:hover {
      transform: translateY(-5px);
      border-color: #84ff47;
      box-shadow: 0 10px 30px rgba(132, 255, 71, 0.3);
    }

    .tool-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .tool-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1rem;
    }

    .tool-description {
      color: #b8c5d6;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .tool-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border: none;
      border-radius: 12px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tool-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 4px 20px rgba(132, 255, 71, 0.5);
    }

    /* Events Section */
    .events-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .event-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(132, 255, 71, 0.2);
      border-radius: 16px;
      padding: 2rem;
      display: grid;
      grid-template-columns: 120px 1fr auto;
      gap: 2rem;
      align-items: center;
      transition: all 0.3s ease;
    }

    .event-card:hover {
      border-color: #84ff47;
      box-shadow: 0 10px 30px rgba(132, 255, 71, 0.3);
    }

    .event-date {
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: center;
    }

    .event-day {
      font-size: 2.5rem;
      font-weight: 900;
      line-height: 1;
    }

    .event-month {
      font-size: 1.1rem;
      font-weight: 700;
      margin-top: 0.3rem;
    }

    .event-info h3 {
      font-size: 1.5rem;
      color: #ffffff;
      margin-bottom: 0.5rem;
    }

    .event-info p {
      color: #b8c5d6;
      line-height: 1.6;
    }

    .event-btn {
      padding: 1rem 2rem;
      background: rgba(132, 255, 71, 0.2);
      color: #84ff47;
      border: 2px solid #84ff47;
      border-radius: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .event-btn:hover {
      background: #84ff47;
      color: #0a0e27;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem;
      }

      .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .coupons-grid {
        grid-template-columns: 1fr;
      }

      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .event-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .event-date {
        margin: 0 auto;
      }

      .event-btn {
        width: 100%;
      }

      .modal-content {
        padding: 2rem 1.5rem;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form input {
        min-width: 100%;
      }
    }

    /* Loading State */
    .loading {
      opacity: 0.6;
      pointer-events: none;
    }

    /* Hidden class */
    .hidden {
      display: none;
    }

    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Toast Message */
    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: linear-gradient(135deg, #84ff47, #00d4ff);
      color: #0a0e27;
      padding: 1rem 2rem;
      border-radius: 12px;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(132, 255, 71, 0.5);
      animation: toastSlideIn 0.3s ease;
      z-index: 3000;
    }

    @keyframes toastSlideIn {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Welcome Banner (After Login) */
    .welcome-banner {
      background: linear-gradient(135deg, rgba(132, 255, 71, 0.2), rgba(0, 212, 255, 0.2));
      border: 2px solid #84ff47;
      border-radius: 16px;
      padding: 2rem;
      margin: 2rem auto;
      max-width: 1400px;
      text-align: center;
    }

    .welcome-banner h2 {
      font-size: 2rem;
      color: #84ff47;
      margin-bottom: 0.5rem;
    }

    .welcome-banner p {
      color: #b8c5d6;
      font-size: 1.1rem;
    }
  /* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

#hero-headline {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

#typewriter {
  border-right: 3px solid #fff;
  padding-right: 5px;
}

.cta-buttons {
  margin-top: 20px;
}

.cta-btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin: 0 8px;
  border-radius: 6px;
}

.cta-primary {
  background: #ff4d4d;
  color: white;
}

.cta-secondary {
  background: #ffffff;
  color: #000;
}
