 @font-face {
      font-family: 'Default';
      src: url('/fonts/Lufga/Lufga-Regular.ttf');
    }

    @font-face {
      font-family: 'Default';
      src: url('/fonts/Lufga/Lufga-Bold.ttf');
      font-weight: bold;
    }

    @font-face {
      font-family: 'Default';
      src: url('/fonts/Lufga/Lufga-Black.ttf');
      font-weight: 900;
    }

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

    :root {
      --dark-bg: #0a0f1c;
      --darker-bg: #050812;
      --teal-dark: #0d4d4d;
      --teal-accent: #14b8a6;
      --teal-light: #2dd4bf;
      --text-primary: #f8fafc;
      --text-secondary: #94a3b8;
      --gradient-primary: linear-gradient(135deg, #0d4d4d 0%, #14b8a6 100%);
      --gradient-secondary: linear-gradient(45deg, #14b8a6, #2dd4bf);
    }

    body {
      font-family: 'Default', sans-serif;
      background: var(--dark-bg);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated Background */
    .animated-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(-45deg, #0a0f1c, #050812, #140d1c, #190e44);
      background-size: 400% 400%;
      animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Floating particles */
    .particles {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--teal-light);
      border-radius: 50%;
      opacity: 0.3;
      animation: float 6s infinite ease-in-out;
    }

    .particle:nth-child(1) {
      left: 10%;
      animation-delay: 0s;
    }

    .particle:nth-child(2) {
      left: 20%;
      animation-delay: 1s;
    }

    .particle:nth-child(3) {
      left: 30%;
      animation-delay: 2s;
    }

    .particle:nth-child(4) {
      left: 40%;
      animation-delay: 3s;
    }

    .particle:nth-child(5) {
      left: 50%;
      animation-delay: 4s;
    }

    .particle:nth-child(6) {
      left: 60%;
      animation-delay: 5s;
    }

    .particle:nth-child(7) {
      left: 70%;
      animation-delay: 0.5s;
    }

    .particle:nth-child(8) {
      left: 80%;
      animation-delay: 1.5s;
    }

    .particle:nth-child(9) {
      left: 90%;
      animation-delay: 2.5s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(100vh) rotate(0deg);
      }

      50% {
        transform: translateY(-10vh) rotate(180deg);
      }
    }

    /* Buttons */
    .btn {
      position: relative;
      padding: 12px 30px;
      background: var(--gradient-primary);
      color: var(--text-primary);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      overflow: hidden;
      transition: all 0.3s ease;
    }

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

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
    }   

    .btn-secondary {
      background: transparent;
      border: 2px solid var(--teal-accent);
        }

    .btn-secondary:hover {
      background: var(--teal-accent);
      color: var(--darker-bg);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 0 2rem;
    }

    .hero-content {
      max-width: 800px;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1rem;
      line-height: 1;
      background: var(--gradient-secondary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: slideInUp 1s ease-out;
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      animation: slideInUp 1s ease-out 0.3s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: slideInUp 1s ease-out 0.6s both;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Code snippet */
    .code-snippet {
      position: absolute;
      right: 10%;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(5, 8, 18, 0.8);
      border: 1px solid var(--teal-dark);
      border-radius: 10px;
      padding: 1.5rem;
      font-family: 'Courier New', monospace;
      font-size: 0.9rem;
      line-height: 1.4;
      opacity: 0.8;
      animation: codeFloat 4s ease-in-out infinite;
    }

    @keyframes codeFloat {

      0%,
      100% {
        transform: translateY(-50%) translateX(0);
      }

      50% {
        transform: translateY(-60%) translateX(10px);
      }
    }

    .code-line {
      color: var(--text-secondary);
      margin: 0.3rem 0;
    }

    .code-keyword {
      color: var(--teal-light);
    }

    .code-string {
      color: #fbbf24;
    }

    .code-function {
      color: #a78bfa;
    }

    /* Services */
    .services {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      background: var(--gradient-secondary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    .service-card {
      background: rgba(5, 8, 18, 0.8);
      border: 1px solid var(--teal-dark);
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gradient-secondary);
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--teal-accent);
      box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      border-radius: 50%;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .service-card h3 {
      color: var(--teal-light);
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    /* Footer */
    footer {
      background: var(--darker-bg);
      padding: 2rem;
      text-align: center;
      border-top: 1px solid var(--teal-dark);
    }

    /* Responsive */
    @media(max-width:768px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 250px;
      }

      .code-snippet {
        display: none;
      }
    }

    /* Scroll animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }