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

    body {
      font-family: 'Cairo', sans-serif;
      background: linear-gradient(135deg, #ff9a56 0%, #ffa726 25%, #ffb74d 50%, #ffc107 75%, #ff8f00 100%);
      min-height: 100vh;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Header */
    .header {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      padding: 0.5rem 1rem;
      border-radius: 25px;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    .mobile-menu {
      display: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      text-align: center;
      padding: 4rem 0;
      color: white;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
      background: linear-gradient(45deg, #fff, #ffe0b2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 1.2rem;
      opacity: 0.95;
      max-width: 600px;
      margin: 0 auto 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

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

    .stat-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s;
    }

    .stat-item:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #fff3e0;
    }

    .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Tools Section */
    .tools-section {
      padding: 4rem 0;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      color: white;
      margin-bottom: 3rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .tool-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border: 2px solid transparent;
    }

    .tool-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
      transition: left 0.5s;
    }

    .tool-card:hover::before {
      left: 100%;
    }

    .tool-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(255, 193, 7, 0.5);
    }

    .tool-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #ff9800, #ff6f00);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    }

    .tool-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .tool-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #e65100;
    }

    .tool-description {
      font-size: 0.9rem;
      color: #bf360c;
      line-height: 1.4;
    }

    .soon-label {
      position: absolute;
      top: 15px;
      left: 15px;
      background: linear-gradient(45deg, #ff5722, #d84315);
      color: white;
      font-weight: 600;
      font-size: 0.7rem;
      padding: 4px 8px;
      border-radius: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .tool-card.disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .tool-card.disabled:hover {
      transform: none;
    }

    /* Footer */
    .footer {
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(15px);
      padding: 3rem 0;
      text-align: center;
      color: white;
      margin-top: 4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .footer h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #fff3e0;
    }

    .footer p {
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-links a:hover {
      background: rgba(255, 193, 7, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 2rem;
      opacity: 0.8;
      font-size: 0.9rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-stats {
        flex-direction: column;
        gap: 1rem;
      }
      
      .nav-links {
        display: none;
      }
      
      .mobile-menu {
        display: block;
      }
      
      .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      
      .tool-card {
        padding: 1.5rem 1rem;
      }
      
      .tool-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
      
      .tool-title {
        font-size: 1rem;
      }
      
      .tool-description {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
      }
      
      .tool-card {
        padding: 1.2rem 0.8rem;
      }
      
      .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
      }
      
      .tool-title {
        font-size: 0.9rem;
      }
      
      .tool-description {
        font-size: 0.75rem;
      }
      
      .container {
        padding: 0 10px;
      }
    }

    /* Loading Animation */
    .loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #ff9a56 0%, #ffa726 25%, #ffb74d 50%, #ffc107 75%, #ff8f00 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: opacity 0.5s;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top: 3px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Pulse animation for hero stats */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .stat-item {
      animation: pulse 2s infinite;
    }

    .stat-item:nth-child(2) {
      animation-delay: 0.5s;
    }

    .stat-item:nth-child(3) {
      animation-delay: 1s;
    }