*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
  }

  :root {
    --accent: #e63946;
    --white: #ffffff;
    --dark: #0a0e1a;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* HERO */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  /* Background image simulation with dark overlay + grid */
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,14,26,0.7) 50%, rgba(0,0,0,0.9) 100%),
      radial-gradient(ellipse at 20% 50%, rgba(0, 60, 120, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 30%, rgba(0, 30, 80, 0.3) 0%, transparent 50%);
    background-color: #0d1520;
  }

  /* Animated grid dots */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridPulse 8s ease-in-out infinite;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent 40%, rgba(0,80,160,0.15) 50%, transparent 60%),
      linear-gradient(180deg, transparent 20%, rgba(0,40,100,0.1) 50%, transparent 80%);
    animation: scanline 6s linear infinite;
  }

  /* Simulated trading screens on the left */
  .screen-left {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 300px;
    background: rgba(0,20,50,0.6);
    border: 1px solid rgba(0,100,200,0.2);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.5;
  }

  .screen-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(0,100,200,0.08) 18px,
      rgba(0,100,200,0.08) 19px
    );
  }

  /* Ticker bars */
  .ticker-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff6b6b 50%, var(--accent) 100%);
    background-size: 200% 100%;
    animation: tickerAnim 3s linear infinite;
  }

  @keyframes tickerAnim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  @keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  @keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 100%);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .social-links {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .social-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
  }

  .social-links a:hover { color: #fff; }

  /* CONTENT */
  .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 20px;
    animation: fadeUp 1s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Telegram icon */
  .telegram-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .telegram-icon i {
    font-size: 60px;
    color: white;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 12vw, 140px);
    letter-spacing: 12px;
    line-height: 1;
    text-shadow: 0 0 60px rgba(255,255,255,0.1);
    color: var(--white);
  }

  .subtitle {
    max-width: 560px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    text-align: center;
  }

  /* BUTTONS */
  .btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }

  .btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--white);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
  }

  .btn-outline svg {
    opacity: 0.7;
  }

  /* BOTTOM NAV */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px 28px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  }

  .nav-arrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
    text-decoration: none;
  }

  .nav-arrow:hover { color: #fff; }

  /* Scroll indicator */
  .scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
  }

  .mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
  }

  @keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(6px); opacity: 0; }
  }

  .chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
  }

  .chevrons span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid rgba(255,255,255,0.3);
    border-bottom: 1.5px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: chevronAnim 1.5s ease-in-out infinite;
  }

  .chevrons span:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }

  @keyframes chevronAnim {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  /* Red progress bar at bottom */
  .progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: var(--accent);
    z-index: 200;
  }

  /* Floating data elements */
  .float-data {
    position: absolute;
    font-family: monospace;
    font-size: 10px;
    color: rgba(0, 150, 255, 0.3);
    pointer-events: none;
    animation: floatAnim 10s ease-in-out infinite;
  }

  @keyframes floatAnim {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-10px); opacity: 0.6; }
  }

  /* DDOS SECTION */
  .ddos-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 40px;
  }

  .ddos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .ddos-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ddos-label {
    color: #e63946;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ddos-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-shadow: none;
  }

  .ddos-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 450px;
  }

  .ddos-desc strong {
    color: #1a1a2e;
    font-weight: 600;
  }

  .ddos-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 3px solid #e63946;
  }

  .info-item i {
    color: #e63946;
    font-size: 22px;
  }

  .info-label {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 600;
  }

  .info-desc {
    display: block;
    font-size: 12px;
    color: #666;
  }

  .ddos-btn {
    display: inline-block;
    background: #1a1a2e;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.2s;
  }

  .ddos-btn:hover {
    background: #2d2d44;
  }

  /* Visualization */
  .ddos-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .attack-diagram {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }

  /* BotNet layer */
  .botnet-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .bot-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .bot {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    animation: botPulse 1.5s ease-in-out infinite;
    box-shadow: 0 3px 8px rgba(230,57,70,0.3);
    border: 2px solid rgba(255,255,255,0.3);
  }

  @keyframes botPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(230,57,70,0.35); }
    50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(230,57,70,0.5); }
  }

  .botnet-label {
    background: linear-gradient(135deg, #e63946 0%, #c62828 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(230,57,70,0.3);
  }

  /* Traffic flow */
  .traffic-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
    padding: 10px;
    background: rgba(230,57,70,0.05);
    border-radius: 10px;
    border: 1px dashed rgba(230,57,70,0.3);
  }

  .flow-arrows {
    display: flex;
    gap: 15px;
  }

  .arrow {
    color: #e63946;
    font-size: 16px;
    animation: arrowBounce 0.8s ease-in-out infinite;
  }

  @keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
  }

  .flow-label {
    font-size: 10px;
    color: #e63946;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .flow-packets {
    display: flex;
    gap: 6px;
    margin-top: 3px;
  }

  .packet {
    width: 6px;
    height: 6px;
    background: #e63946;
    border-radius: 50%;
    animation: packetMove 0.6s ease-in-out infinite;
  }

  @keyframes packetMove {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
  }

  /* Target server */
  .target-server {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    border: 2px solid #e63946;
    box-shadow: 0 8px 30px rgba(230,57,70,0.15);
    animation: serverPulse 2s ease-in-out infinite;
    margin-bottom: 15px;
  }

  @keyframes serverPulse {
    0%, 100% { border-color: #e63946; box-shadow: 0 10px 40px rgba(230,57,70,0.2); }
    50% { border-color: #ff6b6b; box-shadow: 0 10px 50px rgba(230,57,70,0.4); }
  }

  .server-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
  }

  .server-header i {
    font-size: 18px;
    color: #ff6b6b;
    animation: serverShake 0.4s ease-in-out infinite;
  }

  @keyframes serverShake {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-2px) rotate(-2deg); }
    75% { transform: translateX(2px) rotate(2deg); }
  }

  .server-load {
    margin-bottom: 12px;
  }

  .load-label {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .load-bar-container {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
    border: 1px solid rgba(230,57,70,0.3);
  }

  .load-bar {
    height: 100%;
    width: 98%;
    background: linear-gradient(90deg, #ff9800 0%, #e63946 50%, #ff1744 100%);
    border-radius: 5px;
    animation: loadFill 2s ease-in-out infinite;
    position: relative;
  }

  .load-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 1.5s infinite;
  }

  @keyframes loadFill {
    0%, 100% { width: 92%; }
    50% { width: 98%; }
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  .load-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b6b;
    font-family: monospace;
  }

  .server-alerts {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .alert {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
  }

  .alert.warning {
    background: rgba(255,152,0,0.15);
    color: #ff9800;
    border: 1px solid rgba(255,152,0,0.3);
  }

  .alert.danger {
    background: rgba(230,57,70,0.15);
    color: #ff6b6b;
    border: 1px solid rgba(230,57,70,0.3);
  }

  .alert i {
    font-size: 12px;
  }

  /* Connection status */
  .connection-status {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
  }

  .status-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .status-line > i:first-child,
  .status-line > i:last-child {
    font-size: 16px;
    color: #666;
  }

  .connection-path {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 120px;
  }

  .path-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg, #e63946 0px, #e63946 5px, transparent 5px, transparent 10px);
    animation: dashMove 0.5s linear infinite;
  }

  @keyframes dashMove {
    0% { background-position: 0px 0; }
    100% { background-position: 10px 0; }
  }

  .connection-path i {
    color: #e63946;
    font-size: 18px;
  }

  .status-text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
  }

  .status-text-block i {
    color: #e63946;
  }

  /* Legend */
  .attack-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 18px 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
  }

  .legend-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e63946;
    color: white;
    font-size: 14px;
  }

  .legend-icon.red {
    background: linear-gradient(135deg, #ff6b6b 0%, #e63946 100%);
    box-shadow: 0 3px 10px rgba(230,57,70,0.3);
  }

  .legend-icon.gray {
    background: linear-gradient(135deg, #999 0%, #666 100%);
  }

  @media (max-width: 900px) {
    .ddos-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .ddos-title {
      font-size: 32px;
    }

    .attack-diagram {
      padding: 25px;
    }

    .bot {
      width: 42px;
      height: 42px;
      font-size: 16px;
    }

    .attack-legend {
      gap: 15px;
      padding: 15px 20px;
    }

    .legend-item {
      font-size: 12px;
    }
  }

  /* PROJECTS TITLE SECTION */
  .projects-title-section {
    background: #f8f9fa;
    padding: 60px 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
  }

  .projects-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 8px;
    color: #1a1a2e;
    text-transform: uppercase;
    font-weight: 400;
  }

  @media (max-width: 600px) {
    .projects-title {
      font-size: 36px;
      letter-spacing: 4px;
    }
  }

  /* WEB SCRAPING SECTION */
  .webscraping-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    border-top: 2px solid #e0e0e0;
  }

  .webscraping-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .webscraping-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .webscraping-label {
    color: #764ba2;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .webscraping-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-shadow: none;
  }

  .webscraping-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 450px;
  }

  .webscraping-desc strong {
    color: #1a1a2e;
    font-weight: 600;
  }

  .webscraping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .info-item.scraping {
    background: #f8f9fa;
    border-left: 3px solid #764ba2;
  }

  .info-item.scraping i {
    color: #764ba2;
  }

  .webscraping-btn {
    display: inline-block;
    background: #1a1a2e;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.2s;
  }

  .webscraping-btn:hover {
    background: #2d2d44;
  }

  /* Web Scraping Visualization */
  .webscraping-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .scraping-diagram {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }

  /* Website Layer */
  .website-layer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
  }

  .website-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
  }

  .website-header i {
    font-size: 14px;
  }

  .website-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .content-block {
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    width: 80%;
    animation: pulseBlock 2s ease-in-out infinite;
  }

  .content-block.short {
    width: 60%;
  }

  .content-row {
    display: flex;
    gap: 8px;
    margin-top: 5px;
  }

  .content-box {
    flex: 1;
    height: 30px;
    background: rgba(255,255,255,0.25);
    border-radius: 6px;
    animation: pulseBlock 2s ease-in-out infinite;
  }

  @keyframes pulseBlock {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }

  /* Scraping Process */
  .scraping-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    padding: 12px;
    background: rgba(118,75,162,0.06);
    border-radius: 10px;
    border: 1px dashed rgba(118,75,162,0.3);
  }

  .spider-bot {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: spiderMove 1.5s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(155,89,182,0.35);
  }

  @keyframes spiderMove {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
  }

  .scraping-arrows {
    display: flex;
    gap: 15px;
  }

  .arrow-scrape {
    color: #764ba2;
    font-size: 16px;
    animation: arrowBounce 0.8s ease-in-out infinite;
  }

  .process-label {
    font-size: 10px;
    color: #764ba2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Data Extracted */
  .data-extracted {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #27ae60;
    box-shadow: 0 8px 30px rgba(39,174,96,0.15);
  }

  .data-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .data-table {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .table-row:last-child {
    border-bottom: none;
  }

  .table-row.header {
    background: rgba(39,174,96,0.2);
    color: #27ae60;
    font-weight: 600;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .table-row .url {
    color: #64b5f6;
    font-family: monospace;
    font-size: 9px;
  }

  .data-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(39,174,96,0.1);
    border-radius: 6px;
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
  }

  .data-counter i {
    font-size: 14px;
  }

  /* Scraping Legend */
  .scraping-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }

  .scraping-legend .legend-item {
    color: #555;
  }

  .legend-icon.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 3px 10px rgba(102,126,234,0.3);
  }

  .legend-icon.purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 3px 10px rgba(155,89,182,0.3);
  }

  .legend-icon.green {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    box-shadow: 0 3px 10px rgba(39,174,96,0.3);
  }

  @media (max-width: 900px) {
    .webscraping-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .webscraping-title {
      font-size: 32px;
    }

    .scraping-diagram {
      padding: 18px;
    }

    .scraping-legend {
      gap: 12px;
      padding: 12px 18px;
    }
  }

  /* IP EXTRACT SECTION */
  .ip-extract-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    border-top: 2px solid #e0e0e0;
  }

  .ip-extract-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .ip-extract-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ip-extract-label {
    color: #e67e22;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .ip-extract-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-shadow: none;
  }

  .ip-extract-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 450px;
  }

  .ip-extract-desc strong {
    color: #1a1a2e;
    font-weight: 600;
  }

  .ip-extract-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .info-item.ip {
    background: #f8f9fa;
    border-left: 3px solid #e67e22;
  }

  .info-item.ip i {
    color: #e67e22;
  }

  .ip-extract-btn {
    display: inline-block;
    background: #1a1a2e;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.2s;
  }

  .ip-extract-btn:hover {
    background: #2d2d44;
  }

  /* IP Extract Visualization */
  .ip-extract-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ip-diagram {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }

  /* User Visitor */
  .user-visitor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .visitor-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    animation: visitorPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(230,126,34,0.35);
  }

  @keyframes visitorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .visitor-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
  }

  .visitor-ip {
    font-size: 11px;
    color: #e67e22;
    font-family: monospace;
    background: rgba(230,126,34,0.1);
    padding: 4px 10px;
    border-radius: 12px;
  }

  /* Connection Flow */
  .connection-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
    padding: 10px;
    background: rgba(230,126,34,0.05);
    border-radius: 10px;
    border: 1px dashed rgba(230,126,34,0.3);
  }

  .flow-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #e67e22 0%, transparent 100%);
  }

  .flow-arrow {
    color: #e67e22;
    font-size: 16px;
    animation: arrowBounce 0.8s ease-in-out infinite;
  }

  .connection-status {
    font-size: 10px;
    color: #e67e22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Webpage Box */
  .webpage-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
  }

  .webpage-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: white;
    font-size: 12px;
    font-weight: 600;
  }

  .webpage-header i {
    font-size: 16px;
  }

  .webpage-content {
    display: flex;
    justify-content: center;
  }

  .detecting-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    color: white;
    animation: detectPulse 1.5s ease-in-out infinite;
  }

  @keyframes detectPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
  }

  .detecting-badge i {
    font-size: 14px;
  }

  /* API Request */
  .api-request {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    padding: 12px;
    background: rgba(52,152,219,0.06);
    border-radius: 10px;
    border: 1px dashed rgba(52,152,219,0.3);
  }

  .api-line {
    width: 2px;
    height: 15px;
    background: linear-gradient(180deg, #3498db 0%, transparent 100%);
  }

  .api-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    animation: apiPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(52,152,219,0.35);
  }

  @keyframes apiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .api-label {
    font-size: 10px;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Database Box */
  .database-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    padding: 15px;
    border: 2px solid #27ae60;
    box-shadow: 0 8px 30px rgba(39,174,96,0.15);
  }

  .db-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .db-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .db-record {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
  }

  .db-record.new {
    border: 1px solid #27ae60;
    animation: newRecord 1.5s ease-in-out infinite;
  }

  @keyframes newRecord {
    0%, 100% { box-shadow: 0 0 0 rgba(39,174,96,0); }
    50% { box-shadow: 0 0 10px rgba(39,174,96,0.3); }
  }

  .db-field {
    color: #888;
    font-family: monospace;
  }

  .db-value {
    color: rgba(255,255,255,0.9);
    font-family: monospace;
  }

  .db-value.highlight {
    color: #27ae60;
    font-weight: 600;
  }

  .db-time {
    color: #666;
    font-size: 9px;
  }

  .db-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(39,174,96,0.1);
    border-radius: 6px;
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    margin-top: 5px;
  }

  .db-status i {
    font-size: 14px;
  }

  /* IP Legend */
  .ip-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }

  .ip-legend .legend-item {
    color: #555;
  }

  .legend-icon.orange {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 3px 10px rgba(230,126,34,0.3);
  }

  @media (max-width: 900px) {
    .ip-extract-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .ip-extract-title {
      font-size: 32px;
    }

    .ip-diagram {
      padding: 18px;
    }

    .ip-legend {
      gap: 12px;
      padding: 12px 18px;
    }
  }

  /* YAPE FAKE SECTION */
  .yape-fake-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    border-top: 2px solid #e0e0e0;
  }

  .yape-fake-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  .yape-fake-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .yape-fake-label {
    color: #7b1fa2;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .yape-fake-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-shadow: none;
  }

  .yape-fake-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 450px;
  }

  .yape-fake-desc strong {
    color: #1a1a2e;
    font-weight: 600;
  }

  .yape-fake-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .info-item.yape {
    background: #f8f9fa;
    border-left: 3px solid #7b1fa2;
  }

  .info-item.yape i {
    color: #7b1fa2;
  }

  .yape-fake-btn {
    display: inline-block;
    background: #7b1fa2;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.2s;
  }

  .yape-fake-btn:hover {
    background: #9c27b0;
  }

  /* Yape Fake Visualization */
  .yape-fake-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .yape-image-container {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1.5 / 1;
    border: 2px solid #e0e0e0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .yape-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 50%, #e1bee7 100%);
  }

  /* Phone Mockup */
  .phone-mockup {
    background: #1a1a2e;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }

  .phone-header {
    display: flex;
    justify-content: center;
    padding: 8px 0;
  }

  .phone-notch {
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 10px;
  }

  .phone-screen {
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
  }

  /* Yape App Styles */
  .yape-app {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #7b1fa2 0%, #9c27b0 100%);
    min-height: 450px;
    display: flex;
    flex-direction: column;
  }

  .yape-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
  }

  .yape-header i {
    font-size: 18px;
    cursor: pointer;
  }

  .yape-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
  }

  .yape-icon {
    background: white;
    color: #7b1fa2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 2px;
  }

  .yape-balance {
    background: white;
    margin: 0 20px;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .balance-label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .balance-amount {
    display: block;
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
  }

  .yape-actions {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    gap: 10px;
  }

  .action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 15px 12px;
    border-radius: 12px;
    color: white;
    font-size: 11px;
    flex: 1;
    cursor: pointer;
    transition: background 0.2s;
  }

  .action-btn:hover {
    background: rgba(255,255,255,0.25);
  }

  .action-btn i {
    font-size: 24px;
  }

  .action-btn.highlight {
    background: white;
    color: #7b1fa2;
  }

  /* Voucher Card */
  .voucher-card {
    background: white;
    margin: 0 20px 20px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: voucherPulse 2s ease-in-out infinite;
  }

  @keyframes voucherPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    50% { transform: scale(1.02); box-shadow: 0 8px 30px rgba(123,31,162,0.2); }
  }

  .voucher-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e0e0e0;
  }

  .voucher-header i {
    font-size: 24px;
  }

  .voucher-amount {
    text-align: center;
    margin-bottom: 20px;
  }

  .voucher-amount .currency {
    font-size: 24px;
    color: #7b1fa2;
    font-weight: 600;
    vertical-align: top;
  }

  .voucher-amount .amount {
    font-size: 42px;
    color: #7b1fa2;
    font-weight: 700;
  }

  .voucher-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }

  .detail-row span:first-child {
    color: #999;
  }

  .detail-row strong {
    color: #333;
    font-weight: 500;
  }

  .detail-row.code {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-top: 5px;
  }

  .detail-row.code strong {
    color: #7b1fa2;
    font-family: monospace;
    font-size: 14px;
  }

  /* Yape Legend */
  .yape-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    background: #f8f9fa;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
  }

  .yape-legend .legend-item {
    color: #555;
  }

  .legend-icon.pink {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    box-shadow: 0 3px 10px rgba(233,30,99,0.3);
  }

  @media (max-width: 900px) {
    .yape-fake-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .yape-fake-title {
      font-size: 32px;
    }

    .yape-image-container {
      padding: 18px;
      max-width: 100%;
    }

    .yape-legend {
      gap: 12px;
      padding: 12px 18px;
    }
  }

  /* MODAL STYLES */
  .modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease;
  }

  @keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .modal-box {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
  }

  .modal-close-btn:hover {
    color: #e74c3c;
  }