
    /* -------- Global -------- */
        /* -------- Base -------- */
        body {
            background: #f8fafc;
            color: #0f172a;
            font-family: 'Inter', sans-serif;
        }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Hero Section */
    .hero {
      background: url("https://images.pexels.com/photos/434337/pexels-photo-434337.jpeg")
        no-repeat center center/cover;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-content {
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      padding: 40px;
      border-radius: 8px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }


    .big-btn,
    .big-btn-outline {
      display: inline-block;
      margin: 0 10px;
      padding: 12px 30px;
      border-radius: 6px;
      font-size: 16px;
      text-decoration: none;
      transition: 0.3s;
    }

    .big-btn {
      background: #27ae60;
      color: #fff;
    }

    .big-btn:hover {
      background: #1e8449;
    }

    .big-btn-outline {
      border: 2px solid #ffffff;
      background: #27ae60;
      color: #fff;
    }

    .big-btn-outline:hover {
      background: #fff;
      color: #333;
    }

    /* Sections */
    .form-section,
    .placeholder {
      padding: 60px 20px;
      text-align: center;
    }

    .form-section input {
      display: block;
      margin: 10px auto;
      padding: 10px;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .form-section button {
      padding: 10px 20px;
      background: #3498db;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .form-section button:hover {
      background: #2980b9;
    }


    /* Overlay background */

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      z-index: 998;
    }

    /* Slide panels (login left, signup right) */

    .slide-panel {
      display: none;
      background: #fff;
      padding: 2rem;
      max-width: 400px;
      margin: 5% auto;
      border-radius: 10px;
      position: relative;
      z-index: 1001;
    }

    .slide-panel.active {
      display: block;
    }

    .slide-panel h2 {
      margin-bottom: 20px;
      font-size: 22px;
    }

    .slide-panel input {
      width: 100%;
      margin: 8px 0;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .slide-panel button {
      width: 100%;
      padding: 10px;
      margin-top: 12px;
      background: #3498db;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .slide-panel button:hover {
      background: #2980b9;
    }


    /* -------- Hero -------- */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 30%, #00f5ff22, transparent 40%),
        radial-gradient(circle at 70% 70%, #7c7cff22, transparent 40%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
    }

    .hero h1 {
      font-size: 3.5rem;
      line-height: 1.2;
    }

    .neon {
      color: #00f5ff;
      text-shadow: 0 0 20px #00f5ff55;
    }

    .subtitle {
      margin-top: 1rem;
      color: #9ca3af;
    }

    .badge {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 6px 14px;
      border: 1px solid #00f5ff55;
      border-radius: 999px;
      color: #00f5ff;
      font-size: 0.9rem;
    }

    /* -------- Buttons -------- */
    .btn-primary {
      background: linear-gradient(135deg, #00f5ff, #7c7cff);
      color: #000;
      padding: 12px 26px;
      border-radius: 8px;
      font-weight: 600;
    }

    .btn-secondary {
      border: 1px solid #00f5ff;
      padding: 12px 26px;
      border-radius: 8px;
      color: #00f5ff;
      background: transparent;
    }

    .btn-primary.large {
      padding: 16px 40px;
      font-size: 1.1rem;
    }

    .hero-actions {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
    }

    /* -------- Domains -------- */
    .domains {
      padding: 6rem 2rem;
      text-align: center;
    }

    .domain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .domain-card {
      padding: 2rem;
      border-radius: 12px;
      background: #111827;
      border: 1px solid #1f2937;
      transition: all 0.3s ease;
    }

    .domain-card:hover {
      transform: translateY(-6px);
      border-color: #00f5ff;
      box-shadow: 0 0 20px #00f5ff22;
    }

    /* -------- Features -------- */
    .features {
      padding: 6rem 2rem;
      background: #0f172a;
      text-align: center;
    }

    .feature-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-top: 3rem;
    }

    .feature-card {
      background: #020617;
      padding: 2rem;
      border-radius: 14px;
      border: 1px solid #1e293b;
    }

    /* -------- CTA -------- */
    .cta {
      padding: 6rem 2rem;
      text-align: center;
    }

    /* ===== Minimal Navbar ===== */

    .nav-minimal {
    position: fixed;
    top: 20px;
    left: 75%;           /* center horizontally */
    transform: translateX(-50%); /* shift back by half width */
    z-index: 1000;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        font-weight: 600;
        color: #0f172a;
        letter-spacing: 0.04em;
        padding: 10px 14px;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        background: linear-gradient(145deg, #3b82f6, #06b6d4); /* gradient button */
        color: white;
        font-size: 1rem;
        box-shadow: 0 6px 18px rgba(59, 130, 246, 0.35);
        transition: all 0.3s ease;
    }

    /* Hover / active effect */
    .nav-brand:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 10px 24px rgba(59, 130, 246, 0.45);
    }

    /* Logo symbol styling */
    .nav-logo {
        font-size: 1.3rem;
    }

    /* Optional: hide text on mobile */
    @media (max-width: 600px) {
        .nav-text {
            display: none;
        }
    }

    .nav-caret {
        font-size: 0.8rem;
        opacity: 0.6;
    }

    /* Dropdown */
    .nav-dropdown {
        position: absolute;
        top: 110%;
        left: 0;
        min-width: 180px;
        background: white;
        border-radius: 14px;
        padding: 10px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: none;
    }

    .nav-dropdown a {
        display: block;
        padding: 10px 12px;
        border-radius: 8px;
        color: #0f172a;
        font-size: 0.95rem;
    }

    .nav-dropdown a:hover {
        background: #f1f5f9;
    }

    .nav-dropdown hr {
        border: none;
        border-top: 1px solid #e5e7eb;
        margin: 8px 0;
    }

    .nav-cta {
        background: #3b82f6;
        color: white !important;
        text-align: center;
    }
    .nav-cta:hover {
        background: #2563eb;
    }

    /* Active state */
    .nav-dropdown.show {
        display: block;
    }