
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #667eea;
        }
        .jobs-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #667eea;
    margin: 3rem 0 2rem 0;
    text-transform: uppercase;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

      
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4b5563;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1002;
            transition: right 0.3s ease;
            padding: 2rem;
            overflow-y: auto;    
            max-height: 100vh;    
            display: flex;         
            flex-direction: column;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e5e7eb;
        }

        .sidebar-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4b5563;
            cursor: pointer;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 1rem;
        }

        .sidebar-nav a {
            display: block;
            padding: 1rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .sidebar-nav a:hover {
            background: #667eea;
            color: white;
            transform: translateX(5px);
        }

        .sidebar-cta {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            align-items: center; 
            gap: 1rem;         
        }
        .sidebar-cta .auth-btn {
  width: 100%;
  margin: 0;
  margin-bottom: 10px;
  justify-content: center;
  display: flex;
}
      .sidebar-cta .auth-btn:last-child {
       margin-bottom: 0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
        }

        .overlay.active {
            display: block;
        }

      
        .hero {
            background: linear-gradient(135deg, #6c63ff 0%, #764ba2 100%);
            color: #fff;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #fff;
            text-shadow: 0 2px 8px rgba(44, 0, 80, 0.25);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: white;
            color: #667eea;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

       
        .preview-section {
            padding: 80px 0;
            background: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .pdf-upload-area {
            background: white;
            border: 3px dashed #d1d5db;
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 2rem;
        }

        .pdf-upload-area:hover {
            border-color: #667eea;
            background: #f8fafc;
        }

        .pdf-upload-area.dragover {
            border-color: #667eea;
            background: #eff6ff;
        }

        .upload-icon {
            font-size: 3rem;
            color: #9ca3af;
            margin-bottom: 1rem;
        }

        .pdf-viewer {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            display: none;
        }

        .pdf-viewer.active {
            display: block;
        }

        
        .features {
            padding: 80px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        
        .pricing {
            padding: 80px 0;
            background: #f8fafc;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: #667eea;
            margin: 1rem 0;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .payment-btn {
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .payment-btn:hover {
            border-color: #667eea;
            transform: scale(1.02);
        }

        .payment-btn.selected {
            border-color: #667eea;
            background: #eff6ff;
        }

      
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #374151;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }

        .payment-details {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1rem 0;
            border-left: 4px solid #667eea;
        }

        .crypto-address {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            word-break: break-all;
            background: #f3f4f6;
            padding: 0.5rem;
            border-radius: 6px;
            margin: 0.5rem 0;
            border: 1px solid #d1d5db;
        }

        .copy-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            margin-left: 0.5rem;
        }

        .copy-btn:hover {
            background: #5a6fd8;
        }

        .success-message {
            display: none;
            background: #10b981;
            color: white;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 1rem;
        }

        .success-message.active {
            display: block;
        }

        .auth-btn {
  padding: 10px 28px;
  font-size: 1.1rem;
  border-radius: 6px;
  border: none;
  background: #6c63ff;
  color: #fff;
  cursor: pointer;
  margin: 0 0 0 8px;
  transition: background 0.2s;
}

.auth-btn:hover {
  background: #5548c8;
}

        
        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
            
            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .payment-methods {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .payment-btn {
                padding: 1.25rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
            
            .pricing-card {
                padding: 2rem;
                margin: 0 1rem;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .modal-content {
                width: 95%;
                padding: 1.5rem;
                margin: 1rem;
            }
            
            .pdf-upload-area {
                padding: 2rem 1rem;
            }
            
            .upload-icon {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .pricing-card {
                padding: 1.5rem;
            }
            
            .price {
                font-size: 2.2rem;
            }
            
            .feature-card {
                padding: 1.25rem;
            }
            
            .btn {
                padding: 0.75rem 1.25rem;
                font-size: 0.9rem;
            }
        }
        

       
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }



.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 1.2rem 0 0.7rem 0;
  font-size: 1rem;
  color: #374151;
  margin-top: 2.5rem;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo i {
  color: #764ba2;
  margin-right: 0.3rem;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  border-radius: 4px;
  padding: 2px 6px;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #4f46e5;
  background: #e0e7ff;
  outline: none;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.2rem;
}
.footer-social a {
  color: #764ba2;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: #667eea; }
.footer-copy {
  color: #6b7280;
  font-size: 0.98rem;
  margin-top: 0.2rem;
}
@media (max-width: 600px) {
  .footer-container {
    gap: 0.5rem;
  }
  .footer-links {
    gap: 0.7rem;
    font-size: 0.98rem;
  }
  .footer-social {
    gap: 0.7rem;
  }
}

.welcome-slider {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0.5rem 0 1.5rem 0;
  min-height: 2.5rem;
}
.welcome-slider span {
  display: inline-block;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.6rem 2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  animation: slideWelcome 2.2s cubic-bezier(.77,0,.18,1) forwards;
  box-shadow: 0 4px 20px rgba(102,126,234,0.08);
}
@keyframes slideWelcome {
  from { transform: translateX(100vw); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}


.name-slider {
  position: relative;
  width: 100vw;
  overflow: hidden;
  height: 3.2rem;
  margin: 1.5rem 0;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.name-slider span {
  position: absolute;
  right: -100vw;
  top: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  padding: 0.5rem 2.5rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(102,126,234,0.08);
  animation: slideNameRTL 5s linear infinite;
}
@keyframes slideNameRTL {
  0%   { right: -100vw; }
  100% { right: 100vw; }
}
@media (max-width: 600px) {
  .name-slider span {
    font-size: 1.2rem;
    padding: 0.4rem 1.2rem;
    right: -100vw;
  }
  .slideName {
    animation: slideNameMobileRTL 12s linear infinite;
  }
  @keyframes slideNameMobileRTL {
    0%   { right: -100vw; }
    100% { right: 120vw; }
  }
}


.resource-dropdowns-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem auto 2rem auto;
  max-width: 1100px;
  flex-wrap: wrap;
}
.dropdown-box {
  position: relative;
  min-width: 220px;
  margin-bottom: 1rem;
}
.dropdown-btn {
  width: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102,126,234,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  transition: background 0.2s;
}
.dropdown-btn:hover, .dropdown-btn:focus {
  background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
  outline: none;
}
.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: #fff;
  min-width: 230px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.13);
  border-radius: 12px;
  z-index: 100;
  padding: 1rem 0.5rem;
  animation: fadeInUp 0.3s;
  max-height: 350px;
  overflow-y: auto;
}
.dropdown-box.open .dropdown-content {
  display: block;
}
.dropdown-content a, .dropdown-content ul li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  font-size: 1rem;
}
.dropdown-content a:hover, .dropdown-content ul li a:hover {
  background: #f3f4f6;
  color: #764ba2;
}
.dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-content ul li {
  margin-bottom: 0.2rem;
}
.dropdown-content ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .resource-dropdowns-container {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .dropdown-box {
    width: 100%;
    min-width: 0;
    max-width: 400px;
  }

}

@media (max-width: 600px) {
  .dropdown-content {
    position: relative;
    max-height: 250px;
    overflow-y: auto;
  }
  .scroll-label-indicator {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    padding-bottom: 12px;
  }
  .scroll-label {
    display: inline-block;
    background: rgba(108,99,255,0.08);
    color: #6c63ff;
    font-size: 1em;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 2px;
    padding: 4px 12px;
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.2s;
  }
  .scroll-label:active {
    background: rgba(108,99,255,0.18);
  }
  .scroll-indicator {
    display: block;
    font-size: 1.7em;
    color: #6c63ff;
    opacity: 0.7;
    animation: bounceDown 1.2s infinite;
    pointer-events: none;
  }
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(8px);}
  }
}
.pay-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(102,126,234,0.08);
}

#suggestion-box {
  background: #f8fafc;
  padding: 40px 0;
}

#suggestion-box .container {
  max-width: 500px;
  margin: 0 auto;
}

#suggestion-box .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

#suggestion-box h2 {
  color: #667eea;
}

#suggestion-box p {
  color: #6b7280;
}

#suggestion-box form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(102,126,234,0.08);
  padding: 2rem;
}

#suggestion-box textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#suggestion-box button {
  width: 100%;
}

#commentThanks {
  display: none;
  color: #10b981;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
