:root {
      --primary: #7289DA;
      --secondary: #2C2F33;
      --dark: #23272A;
      --light: #99AAB5;
      --success: #43b581;
      --accent: #5865F2;
      --gradient-start: #5865F2;
      --gradient-end: #7289DA;
      --card-radius: 20px;
      --section-gap: 80px;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--dark);
      color: #fff;
      line-height: 1.6;
      text-align: center;
      scroll-behavior: smooth;
    }
    
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    header {
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      padding: 20px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 100;
    }
    
    .nav-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    
    .logo {
      font-size: 32px;
      font-weight: bold;
      color: #fff;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .logo span {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.2);
      padding: 0 8px;
      border-radius: 4px;
    }
    
    nav ul {
      display: flex;
      list-style: none;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    nav ul li {
      margin: 0 15px;
    }
    
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      position: relative;
      padding: 5px 0;
      font-size: 18px;
    }
    
    nav ul li a:hover {
      color: #fff;
    }
    
    nav ul li a::after {
      content: '';
      width: 0;
      height: 3px;
      background: #fff;
      position: absolute;
      left: 0;
      bottom: 0;
      transition: width 0.3s;
      border-radius: 3px;
    }
    
    nav ul li a:hover::after {
      width: 100%;
    }
    
    .hero {
      background: linear-gradient(rgba(35, 39, 42, 0.85), rgba(35, 39, 42, 0.9));
      padding: 120px 40px;
      text-align: center;
      border-radius: var(--card-radius);
      margin-top: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      position: relative;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    }
    
    .hero h1 {
      font-size: 52px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero p {
      font-size: 20px;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #fff;
      font-weight: 300;
    }
    
    .btn {
      display: inline-block;
      padding: 14px 34px;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
    }
    
    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .btn-block {
      display: block;
      width: 100%;
      box-sizing: border-box;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      align-items: center;
    }
    
    .stats {
      display: flex;
      justify-content: center;
      margin: var(--section-gap) 0;
      flex-wrap: wrap;
      gap: 40px;
    }
    
    .stat-box {
      background: linear-gradient(145deg, #2C2F33, #23272A);
      padding: 40px;
      border-radius: var(--card-radius);
      text-align: center;
      flex: 1 1 280px;
      max-width: 420px;
      min-width: 250px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .stat-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    }
    
    .stat-box:hover {
      transform: translateY(-5px);
    }
    
    .stat-number {
      font-size: 48px;
      font-weight: bold;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
    }
    
    .stat-title {
      font-size: 20px;
      font-weight: 600;
    }
    
    .services {
      margin: var(--section-gap) 0;
      padding-top: 20px;
    }

    .section-subtitle {
      color: var(--light);
      max-width: 700px;
      margin: -40px auto 40px;
      font-size: 18px;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }
    
    .section-title h2 {
      font-size: 40px;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: var(--section-gap);
      align-items: stretch;
    }
    
    .service-card {
      background: linear-gradient(145deg, #2C2F33, #23272A);
      border-radius: var(--card-radius);
      overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    }
    
    .service-image {
      height: 200px;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .service-image--bots {
      background-image: url('../img/services/discordbots.png');
    }

    .service-image--web {
      background-image: url('../img/services/website.png');
    }

    .service-image--design {
      background-image: url('../img/graphic.png');
    }
    
    .service-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100px;
      background: linear-gradient(to top, rgba(35, 39, 42, 1), transparent);
    }
    
    .service-content {
      padding: 28px 24px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    
    .service-content h3 {
      margin-bottom: 12px;
      font-size: 24px;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service-content > p {
      color: var(--light);
      font-size: 15px;
      line-height: 1.6;
      min-height: 4.8em;
      margin-bottom: 0;
    }
    
    .service-features {
      margin: 20px 0;
      text-align: left;
      flex: 1;
      min-height: 210px;
    }
    
    .service-features ul {
      list-style: none;
    }
    
    .service-features ul li {
      padding: 6px 0;
      position: relative;
      padding-left: 25px;
      font-size: 15px;
      color: #e3e5e8;
    }
    
    .service-features ul li::before {
      content: '✓';
      color: var(--success);
      position: absolute;
      left: 0;
    }
    
    .price-tag {
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      margin: 16px 0 12px;
      flex-shrink: 0;
      margin-top: auto;
    }
    
    .price-tag span {
      font-size: 32px;
      color: var(--success);
    }

    .service-card .btn-block {
      flex-shrink: 0;
    }
    
    .order-form {
      background: linear-gradient(145deg, #2C2F33, #23272A);
      padding: 50px;
      border-radius: var(--card-radius);
      margin: var(--section-gap) auto;
      max-width: 800px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .order-steps {
      text-align: left;
      margin-bottom: 30px;
      color: var(--light);
      padding-left: 20px;
    }

    .order-steps li {
      margin-bottom: 10px;
    }

    .order-intro {
      margin-bottom: 25px;
      color: var(--light);
    }
    
    .order-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    }
    
    .form-group {
      margin-bottom: 25px;
      text-align: left;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    
    .form-control {
      width: 100%;
      padding: 15px;
      background-color: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      color: #ffffff;
      font-size: 16px;
      transition: all 0.3s;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(114, 137, 218, 0.25);
    }
    
    select.form-control {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      appearance: none;
    }
    
    textarea.form-control {
      min-height: 180px;
      resize: vertical;
    }
    
    footer {
      background: linear-gradient(to bottom, #2C2F33, #23272A);
      padding: 80px 0 20px;
      margin-top: 120px;
      position: relative;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      margin-bottom: 70px;
      text-align: center;
    }
    
    .footer-column h3 {
      font-size: 24px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
      display: inline-block;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 1.5px;
    }
    
    .footer-column p {
      color: var(--light);
      margin-bottom: 20px;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 15px;
    }
    
    .footer-column ul li a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
      padding: 5px 10px;
      border-radius: 5px;
    }
    
    .footer-column ul li a:hover {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.1);
    }
    
    .social-links {
      display: flex;
      gap: 20px;
      justify-content: center;
    }
    
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      border-radius: 50%;
      color: #fff;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .social-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .legal-info {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 12px;
    color: #99AAB5;
    line-height: 1.6;
    text-align: center;
  }

  .dmca-badge img {
    display: block;
    margin: 0 auto;
  }

    @media (max-width: 1024px) {
      .service-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
      }
      
      nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      nav ul li {
        margin: 0 10px 10px;
      }
      
      .hero {
        padding: 80px 0;
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
      }
      
      .btn-secondary {
        margin-left: 0;
      }

      .service-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .service-features {
        min-height: auto;
      }

      .service-content > p {
        min-height: auto;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 80%;
        margin: 0 auto;
      }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .animate {
      animation: fadeIn 0.8s ease-out forwards;
    }
    
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }