Spaces:
Running
Running
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>VIBE CODING TUTORIAL — Auf Deutsch</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Space+Grotesk:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"> | |
| <style> | |
| *, *::before, *::after { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| :root { | |
| --bg-deep: #0a0a0f; | |
| --bg-surface: #12121a; | |
| --bg-card: #1a1a28; | |
| --bg-card-hover: #222236; | |
| --fg: #e8e6f0; | |
| --fg-muted: #8886a0; | |
| --fg-dim: #5a5878; | |
| --accent: #00ffa3; | |
| --accent-alt: #ff6b9d; | |
| --accent-warm: #ffb347; | |
| --accent-cool: #47b3ff; | |
| --border: rgba(255, 255, 255, 0.06); | |
| --glow-accent: rgba(0, 255, 163, 0.15); | |
| --glow-alt: rgba(255, 107, 157, 0.15); | |
| --radius: 16px; | |
| --radius-sm: 10px; | |
| --radius-xs: 6px; | |
| --font-display: 'Space Grotesk', sans-serif; | |
| --font-mono: 'JetBrains Mono', monospace; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| scrollbar-width: thin; | |
| scrollbar-color: var(--accent) var(--bg-deep); | |
| } | |
| body { | |
| font-family: var(--font-display); | |
| background: var(--bg-deep); | |
| color: var(--fg); | |
| line-height: 1.7; | |
| overflow-x: hidden; | |
| } | |
| /* ===== Scrollbar ===== */ | |
| ::-webkit-scrollbar { width: 6px; } | |
| ::-webkit-scrollbar-track { background: var(--bg-deep); } | |
| ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; } | |
| /* ===== Background Atmosphere ===== */ | |
| .bg-atmosphere { | |
| position: fixed; | |
| inset: 0; | |
| z-index: 0; | |
| pointer-events: none; | |
| overflow: hidden; | |
| } | |
| .bg-blob { | |
| position: absolute; | |
| border-radius: 50%; | |
| filter: blur(120px); | |
| opacity: 0.4; | |
| animation: blobFloat 20s ease-in-out infinite; | |
| } | |
| .bg-blob--1 { | |
| width: 600px; height: 600px; | |
| background: radial-gradient(circle, var(--accent), transparent 70%); | |
| top: -200px; left: -100px; | |
| animation-delay: 0s; | |
| } | |
| .bg-blob--2 { | |
| width: 500px; height: 500px; | |
| background: radial-gradient(circle, var(--accent-alt), transparent 70%); | |
| bottom: -150px; right: -100px; | |
| animation-delay: -7s; | |
| } | |
| .bg-blob--3 { | |
| width: 400px; height: 400px; | |
| background: radial-gradient(circle, var(--accent-cool), transparent 70%); | |
| top: 50%; left: 50%; | |
| transform: translate(-50%, -50%); | |
| animation-delay: -14s; | |
| opacity: 0.2; | |
| } | |
| @keyframes blobFloat { | |
| 0%, 100% { transform: translate(0, 0) scale(1); } | |
| 25% { transform: translate(60px, -40px) scale(1.1); } | |
| 50% { transform: translate(-30px, 60px) scale(0.95); } | |
| 75% { transform: translate(40px, 30px) scale(1.05); } | |
| } | |
| .bg-grid { | |
| position: absolute; | |
| inset: 0; | |
| background-image: | |
| linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); | |
| background-size: 60px 60px; | |
| } | |
| /* ===== Noise Overlay ===== */ | |
| .noise-overlay { | |
| position: fixed; | |
| inset: 0; | |
| z-index: 1; | |
| pointer-events: none; | |
| opacity: 0.03; | |
| background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); | |
| background-repeat: repeat; | |
| } | |
| /* ===== Main Container ===== */ | |
| .main-container { | |
| position: relative; | |
| z-index: 2; | |
| } | |
| /* ===== Navigation ===== */ | |
| .nav { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| z-index: 100; | |
| padding: 16px 32px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| backdrop-filter: blur(20px) saturate(1.5); | |
| -webkit-backdrop-filter: blur(20px) saturate(1.5); | |
| background: rgba(10, 10, 15, 0.7); | |
| border-bottom: 1px solid var(--border); | |
| transition: all 0.4s ease; | |
| } | |
| .nav.scrolled { | |
| padding: 10px 32px; | |
| background: rgba(10, 10, 15, 0.9); | |
| } | |
| .nav-brand { | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| text-decoration: none; | |
| } | |
| .nav-logo { | |
| width: 36px; height: 36px; | |
| background: linear-gradient(135deg, var(--accent), var(--accent-alt)); | |
| border-radius: var(--radius-xs); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-weight: 800; | |
| font-size: 18px; | |
| color: var(--bg-deep); | |
| flex-shrink: 0; | |
| } | |
| .nav-title { | |
| font-weight: 700; | |
| font-size: 18px; | |
| color: var(--fg); | |
| letter-spacing: -0.5px; | |
| } | |
| .nav-title span { | |
| color: var(--accent); | |
| } | |
| .nav-built { | |
| font-size: 12px; | |
| color: var(--fg-muted); | |
| text-decoration: none; | |
| opacity: 0.7; | |
| transition: opacity 0.3s; | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| } | |
| .nav-built:hover { | |
| opacity: 1; | |
| color: var(--accent); | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 8px; | |
| list-style: none; | |
| } | |
| .nav-links a { | |
| color: var(--fg-muted); | |
| text-decoration: none; | |
| font-size: 14px; | |
| font-weight: 500; | |
| padding: 6px 14px; | |
| border-radius: var(--radius-xs); | |
| transition: all 0.3s; | |
| } | |
| .nav-links a:hover { | |
| color: var(--accent); | |
| background: var(--glow-accent); | |
| } | |
| .nav-hamburger { | |
| display: none; | |
| background: none; | |
| border: none; | |
| color: var(--fg); | |
| font-size: 22px; | |
| cursor: pointer; | |
| padding: 6px; | |
| } | |
| /* ===== Hero Section ===== */ | |
| .hero { | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 120px 24px 80px; | |
| position: relative; | |
| } | |
| .hero-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 8px 20px; | |
| border-radius: 100px; | |
| background: rgba(0, 255, 163, 0.08); | |
| border: 1px solid rgba(0, 255, 163, 0.2); | |
| color: var(--accent); | |
| font-size: 13px; | |
| font-weight: 600; | |
| margin-bottom: 32px; | |
| animation: fadeInUp 0.8s ease both; | |
| } | |
| .hero-badge i { | |
| font-size: 10px; | |
| animation: pulse 2s ease-in-out infinite; | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.3; } | |
| } | |
| .hero-heading { | |
| font-size: clamp(42px, 8vw, 96px); | |
| font-weight: 800; | |
| line-height: 1.05; | |
| letter-spacing: -3px; | |
| margin-bottom: 24px; | |
| animation: fadeInUp 0.8s ease 0.15s both; | |
| } | |
| .hero-heading .line1 { | |
| display: block; | |
| background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .hero-heading .line2 { | |
| display: block; | |
| background: linear-gradient(135deg, var(--accent) 0%, var(--accent-cool) 50%, var(--accent-alt) 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| .hero-sub { | |
| font-size: clamp(16px, 2.2vw, 22px); | |
| color: var(--fg-muted); | |
| max-width: 640px; | |
| font-weight: 300; | |
| line-height: 1.7; | |
| margin-bottom: 48px; | |
| animation: fadeInUp 0.8s ease 0.3s both; | |
| } | |
| .hero-actions { | |
| display: flex; | |
| gap: 16px; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| animation: fadeInUp 0.8s ease 0.45s both; | |
| } | |
| .btn { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 10px; | |
| padding: 14px 32px; | |
| border-radius: var(--radius-sm); | |
| font-family: var(--font-display); | |
| font-size: 15px; | |
| font-weight: 600; | |
| text-decoration: none; | |
| cursor: pointer; | |
| border: none; | |
| transition: all 0.3s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .btn::before { | |
| content: ''; | |
| position: absolute; | |
| inset: 0; | |
| background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); | |
| opacity: 0; | |
| transition: opacity 0.3s; | |
| } | |
| .btn:hover::before { opacity: 1; } | |
| .btn-primary { | |
| background: linear-gradient(135deg, var(--accent), #00cc82); | |
| color: var(--bg-deep); | |
| box-shadow: 0 4px 24px var(--glow-accent), 0 0 0 1px rgba(0,255,163,0.2); | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 8px 40px var(--glow-accent), 0 0 0 1px rgba(0,255,163,0.4); | |
| } | |
| .btn-secondary { | |
| background: var(--bg-card); | |
| color: var(--fg); | |
| border: 1px solid var(--border); | |
| } | |
| .btn-secondary:hover { | |
| background: var(--bg-card-hover); | |
| border-color: rgba(255,255,255,0.12); | |
| transform: translateY(-2px); | |
| } | |
| .hero-scroll-indicator { | |
| position: absolute; | |
| bottom: 32px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 8px; | |
| color: var(--fg-dim); | |
| font-size: 12px; | |
| animation: fadeInUp 0.8s ease 0.6s both; | |
| } | |
| .scroll-line { | |
| width: 1px; | |
| height: 40px; | |
| background: linear-gradient(to bottom, var(--accent), transparent); | |
| animation: scrollPulse 2s ease-in-out infinite; | |
| } | |
| @keyframes scrollPulse { | |
| 0%, 100% { opacity: 1; transform: scaleY(1); } | |
| 50% { opacity: 0.3; transform: scaleY(0.5); } | |
| } | |
| @keyframes fadeInUp { | |
| from { opacity: 0; transform: translateY(30px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| /* ===== Section Base ===== */ | |
| .section { | |
| padding: 100px 24px; | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| .section-label { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| font-size: 13px; | |
| font-weight: 600; | |
| color: var(--accent); | |
| text-transform: uppercase; | |
| letter-spacing: 2px; | |
| margin-bottom: 16px; | |
| } | |
| .section-label i { | |
| font-size: 14px; | |
| } | |
| .section-title { | |
| font-size: clamp(28px, 4vw, 48px); | |
| font-weight: 800; | |
| letter-spacing: -1.5px; | |
| line-height: 1.15; | |
| margin-bottom: 16px; | |
| } | |
| .section-desc { | |
| font-size: 17px; | |
| color: var(--fg-muted); | |
| max-width: 600px; | |
| line-height: 1.7; | |
| font-weight: 300; | |
| } | |
| /* ===== Was ist Vibe Coding ===== */ | |
| .intro-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 48px; | |
| margin-top: 56px; | |
| align-items: center; | |
| } | |
| .intro-text h3 { | |
| font-size: 22px; | |
| font-weight: 700; | |
| margin-bottom: 16px; | |
| color: var(--fg); | |
| } | |
| .intro-text p { | |
| color: var(--fg-muted); | |
| font-size: 16px; | |
| line-height: 1.8; | |
| margin-bottom: 20px; | |
| } | |
| .intro-highlight { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 14px; | |
| padding: 20px; | |
| background: var(--bg-card); | |
| border-radius: var(--radius-sm); | |
| border: 1px solid var(--border); | |
| margin-bottom: 16px; | |
| transition: all 0.3s; | |
| } | |
| .intro-highlight:hover { | |
| border-color: rgba(0,255,163,0.2); | |
| background: var(--bg-card-hover); | |
| } | |
| .intro-highlight .icon-box { | |
| width: 42px; height: 42px; | |
| border-radius: var(--radius-xs); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 18px; | |
| flex-shrink: 0; | |
| } | |
| .icon-box--green { background: rgba(0,255,163,0.1); color: var(--accent); } | |
| .icon-box--pink { background: var(--glow-alt); color: var(--accent-alt); } | |
| .icon-box--blue { background: rgba(71,179,255,0.1); color: var(--accent-cool); } | |
| .icon-box--warm { background: rgba(255,179,71,0.1); color: var(--accent-warm); } | |
| .intro-highlight h4 { | |
| font-size: 15px; | |
| font-weight: 600; | |
| margin-bottom: 4px; | |
| } | |
| .intro-highlight p { | |
| font-size: 13px; | |
| color: var(--fg-muted); | |
| margin: 0; | |
| line-height: 1.6; | |
| } | |
| /* ===== Vibe Visual ===== */ | |
| .vibe-visual { | |
| position: relative; | |
| background: var(--bg-card); | |
| border-radius: var(--radius); | |
| border: 1px solid var(--border); | |
| overflow: hidden; | |
| padding: 32px; | |
| min-height: 420px; | |
| } | |
| .vibe-visual::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: conic-gradient(from 0deg, transparent, var(--accent), transparent, var(--accent-alt), transparent); | |
| animation: rotateBg 10s linear infinite; | |
| opacity: 0.05; | |
| } | |
| @keyframes rotateBg { | |
| to { transform: rotate(360deg); } | |
| } | |
| .vibe-terminal { | |
| background: rgba(0,0,0,0.5); | |
| border-radius: var(--radius-sm); | |
| border: 1px solid var(--border); | |
| overflow: hidden; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .terminal-bar { | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 12px 16px; | |
| background: rgba(0,0,0,0.4); | |
| border-bottom: 1px solid var(--border); | |
| } | |
| .terminal-dot { | |
| width: 10px; height: 10px; | |
| border-radius: 50%; | |
| } | |
| .terminal-dot--red { background: #ff5f57; } | |
| .terminal-dot--yellow { background: #ffbd2e; } | |
| .terminal-dot--green { background: #28ca41; } | |
| .terminal-title { | |
| font-size: 12px; | |
| color: var(--fg-dim); | |
| margin-left: 8px; | |
| font-family: var(--font-mono); | |
| } | |
| .terminal-body { | |
| padding: 20px; | |
| font-family: var(--font-mono); | |
| font-size: 13px; | |
| line-height: 1.9; | |
| min-height: 260px; | |
| } | |
| .terminal-line { | |
| opacity: 0; | |
| animation: typeLine 0.5s ease forwards; | |
| } | |
| .terminal-prompt { | |
| color: var(--accent); | |
| } | |
| .terminal-cmd { | |
| color: var(--fg); | |
| } | |
| .terminal-comment { | |
| color: var(--fg-dim); | |
| } | |
| .terminal-output { | |
| color: var(--accent-cool); | |
| } | |
| .terminal-cursor { | |
| display: inline-block; | |
| width: 8px; | |
| height: 16px; | |
| background: var(--accent); | |
| vertical-align: text-bottom; | |
| animation: blink 1s step-end infinite; | |
| } | |
| @keyframes blink { | |
| 50% { opacity: 0; } | |
| } | |
| /* ===== Schritte / Timeline ===== */ | |
| .steps-list { | |
| margin-top: 56px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 0; | |
| position: relative; | |
| } | |
| .steps-list::before { | |
| content: ''; | |
| position: absolute; | |
| left: 28px; | |
| top: 0; | |
| bottom: 0; | |
| width: 2px; | |
| background: linear-gradient(to bottom, var(--accent), var(--accent-alt), var(--accent-cool)); | |
| border-radius: 1px; | |
| } | |
| .step-item { | |
| display: flex; | |
| gap: 28px; | |
| padding: 32px 0; | |
| position: relative; | |
| opacity: 0; | |
| transform: translateX(-20px); | |
| transition: all 0.6s ease; | |
| } | |
| .step-item.visible { | |
| opacity: 1; | |
| transform: translateX(0); | |
| } | |
| .step-number { | |
| width: 58px; height: 58px; | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-weight: 800; | |
| font-size: 20px; | |
| flex-shrink: 0; | |
| position: relative; | |
| z-index: 1; | |
| transition: all 0.3s; | |
| } | |
| .step-item:nth-child(1) .step-number { | |
| background: rgba(0,255,163,0.12); | |
| color: var(--accent); | |
| border: 2px solid rgba(0,255,163,0.3); | |
| } | |
| .step-item:nth-child(2) .step-number { | |
| background: var(--glow-alt); | |
| color: var(--accent-alt); | |
| border: 2px solid rgba(255,107,157,0.3); | |
| } | |
| .step-item:nth-child(3) .step-number { | |
| background: rgba(71,179,255,0.1); | |
| color: var(--accent-cool); | |
| border: 2px solid rgba(71,179,255,0.3); | |
| } | |
| .step-item:nth-child(4) .step-number { | |
| background: rgba(255,179,71,0.1); | |
| color: var(--accent-warm); | |
| border: 2px solid rgba(255,179,71,0.3); | |
| } | |
| .step-item:nth-child(5) .step-number { | |
| background: rgba(0,255,163,0.12); | |
| color: var(--accent); | |
| border: 2px solid rgba(0,255,163,0.3); | |
| } | |
| .step-content { | |
| flex: 1; | |
| } | |
| .step-content h3 { | |
| font-size: 22px; | |
| font-weight: 700; | |
| margin-bottom: 8px; | |
| } | |
| .step-content p { | |
| color: var(--fg-muted); | |
| font-size: 15px; | |
| line-height: 1.7; | |
| margin-bottom: 16px; | |
| } | |
| .step-code { | |
| background: rgba(0,0,0,0.4); | |
| border: 1px solid var(--border); | |
| border-radius: var(--radius-sm); | |
| padding: 20px; | |
| font-family: var(--font-mono); | |
| font-size: 13px; | |
| line-height: 1.8; | |
| overflow-x: auto; | |
| position: relative; | |
| } | |
| .step-code .kw { color: var(--accent-alt); } | |
| .step-code .fn { color: var(--accent-cool); } | |
| .step-code .str { color: var(--accent); } | |
| .step-code .cm { color: var(--fg-dim); } | |
| .step-code .num { color: var(--accent-warm); } | |
| .step-code .copy-btn { | |
| position: absolute; | |
| top: 12px; | |
| right: 12px; | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| color: var(--fg-muted); | |
| padding: 6px 12px; | |
| border-radius: var(--radius-xs); | |
| font-size: 12px; | |
| cursor: pointer; | |
| font-family: var(--font-display); | |
| transition: all 0.3s; | |
| } | |
| .step-code .copy-btn:hover { | |
| background: var(--bg-card-hover); | |
| color: var(--accent); | |
| border-color: rgba(0,255,163,0.2); | |
| } | |
| /* ===== Tools Grid ===== */ | |
| .tools-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |
| gap: 20px; | |
| margin-top: 48px; | |
| } | |
| .tool-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: var(--radius); | |
| padding: 28px; | |
| transition: all 0.4s ease; | |
| position: relative; | |
| overflow: hidden; | |
| cursor: default; | |
| } | |
| .tool-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 3px; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-alt)); | |
| opacity: 0; | |
| transition: opacity 0.3s; | |
| } | |
| .tool-card:hover { | |
| border-color: rgba(255,255,255,0.1); | |
| background: var(--bg-card-hover); | |
| transform: translateY(-4px); | |
| box-shadow: 0 12px 40px rgba(0,0,0,0.3); | |
| } | |
| .tool-card:hover::before { opacity: 1; } | |
| .tool-icon { | |
| width: 52px; height: 52px; | |
| border-radius: var(--radius-sm); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 24px; | |
| margin-bottom: 20px; | |
| } | |
| .tool-card h3 { | |
| font-size: 18px; | |
| font-weight: 700; | |
| margin-bottom: 8px; | |
| } | |
| .tool-card p { | |
| font-size: 14px; | |
| color: var(--fg-muted); | |
| line-height: 1.7; | |
| margin-bottom: 16px; | |
| } | |
| .tool-tag { | |
| display: inline-block; | |
| padding: 4px 12px; | |
| border-radius: 100px; | |
| font-size: 11px; | |
| font-weight: 600; | |
| margin-right: 6px; | |
| margin-bottom: 6px; | |
| } | |
| .tag-green { background: rgba(0,255,163,0.08); color: var(--accent); } | |
| .tag-pink { background: var(--glow-alt); color: var(--accent-alt); } | |
| .tag-blue { background: rgba(71,179,255,0.08); color: var(--accent-cool); } | |
| .tag-warm { background: rgba(255,179,71,0.08); color: var(--accent-warm); } | |
| /* ===== Live Demo ===== */ | |
| .demo-container { | |
| margin-top: 56px; | |
| background: var(--bg-card); | |
| border-radius: var(--radius); | |
| border: 1px solid var(--border); | |
| overflow: hidden; | |
| } | |
| .demo-header { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding: 16px 24px; | |
| border-bottom: 1px solid var(--border); | |
| flex-wrap: wrap; | |
| gap: 12px; | |
| } | |
| .demo-tabs { | |
| display: flex; | |
| gap: 4px; | |
| } | |
| .demo-tab { | |
| padding: 8px 18px; | |
| border-radius: var(--radius-xs); | |
| font-size: 13px; | |
| font-weight: 600; | |
| cursor: pointer; | |
| background: transparent; | |
| border: none; | |
| color: var(--fg-muted); | |
| font-family: var(--font-display); | |
| transition: all 0.3s; | |
| } | |
| .demo-tab.active { | |
| background: var(--accent); | |
| color: var(--bg-deep); | |
| } | |
| .demo-tab:hover:not(.active) { | |
| background: rgba(255,255,255,0.05); | |
| color: var(--fg); | |
| } | |
| .demo-body { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| min-height: 400px; | |
| } | |
| .demo-editor { | |
| padding: 24px; | |
| border-right: 1px solid var(--border); | |
| font-family: var(--font-mono); | |
| font-size: 13px; | |
| line-height: 1.9; | |
| position: relative; | |
| } | |
| .demo-editor textarea { | |
| width: 100%; | |
| height: 100%; | |
| min-height: 350px; | |
| background: transparent; | |
| border: none; | |
| color: var(--fg); | |
| font-family: var(--font-mono); | |
| font-size: 13px; | |
| line-height: 1.9; | |
| resize: none; | |
| outline: none; | |
| } | |
| .demo-preview { | |
| padding: 24px; | |
| background: #fff; | |
| color: #1a1a2e; | |
| overflow: auto; | |
| } | |
| .demo-preview h1 { font-size: 24px; margin-bottom: 8px; } | |
| .demo-preview p { font-size: 14px; line-height: 1.6; } | |
| /* ===== Tipps Section ===== */ | |
| .tipps-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); | |
| gap: 20px; | |
| margin-top: 48px; | |
| } | |
| .tipp-card { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: var(--radius); | |
| padding: 28px; | |
| transition: all 0.3s; | |
| } | |
| .tipp-card:hover { | |
| border-color: rgba(255,255,255,0.1); | |
| transform: translateY(-2px); | |
| } | |
| .tipp-number { | |
| font-size: 48px; | |
| font-weight: 800; | |
| background: linear-gradient(135deg, var(--accent), var(--accent-alt)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| line-height: 1; | |
| margin-bottom: 16px; | |
| } | |
| .tipp-card h3 { | |
| font-size: 18px; | |
| font-weight: 700; | |
| margin-bottom: 10px; | |
| } | |
| .tipp-card p { | |
| font-size: 14px; | |
| color: var(--fg-muted); | |
| line-height: 1.7; | |
| } | |
| /* ===== Vibe Meter ===== */ | |
| .vibe-meter-section { | |
| margin-top: 56px; | |
| background: var(--bg-card); | |
| border-radius: var(--radius); | |
| border: 1px solid var(--border); | |
| padding: 40px; | |
| text-align: center; | |
| } | |
| .vibe-meter-section h3 { | |
| font-size: 24px; | |
| font-weight: 700; | |
| margin-bottom: 8px; | |
| } | |
| .vibe-meter-section p { | |
| color: var(--fg-muted); | |
| margin-bottom: 32px; | |
| font-size: 15px; | |
| } | |
| .vibe-meter { | |
| width: 100%; | |
| max-width: 500px; | |
| margin: 0 auto 24px; | |
| } | |
| .vibe-slider { | |
| -webkit-appearance: none; | |
| width: 100%; | |
| height: 12px; | |
| border-radius: 6px; | |
| background: linear-gradient(90deg, var(--accent-alt), var(--accent-warm), var(--accent), var(--accent-cool)); | |
| outline: none; | |
| cursor: pointer; | |
| } | |
| .vibe-slider::-webkit-slider-thumb { | |
| -webkit-appearance: none; | |
| width: 28px; | |
| height: 28px; | |
| border-radius: 50%; | |
| background: var(--fg); | |
| border: 3px solid var(--bg-deep); | |
| box-shadow: 0 2px 12px rgba(0,0,0,0.4); | |
| cursor: pointer; | |
| } | |
| .vibe-slider::-moz-range-thumb { | |
| width: 28px; | |
| height: 28px; | |
| border-radius: 50%; | |
| background: var(--fg); | |
| border: 3px solid var(--bg-deep); | |
| box-shadow: 0 2px 12px rgba(0,0,0,0.4); | |
| cursor: pointer; | |
| } | |
| .vibe-result { | |
| font-size: 28px; | |
| font-weight: 800; | |
| margin-top: 16px; | |
| transition: all 0.3s; | |
| } | |
| .vibe-desc { | |
| font-size: 14px; | |
| color: var(--fg-muted); | |
| margin-top: 8px; | |
| } | |
| /* ===== FAQ ===== */ | |
| .faq-list { | |
| margin-top: 48px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| } | |
| .faq-item { | |
| background: var(--bg-card); | |
| border: 1px solid var(--border); | |
| border-radius: var(--radius-sm); | |
| overflow: hidden; | |
| transition: all 0.3s; | |
| } | |
| .faq-item.open { | |
| border-color: rgba(0,255,163,0.15); | |
| } | |
| .faq-question { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| padding: 20px 24px; | |
| cursor: pointer; | |
| font-weight: 600; | |
| font-size: 16px; | |
| background: none; | |
| border: none; | |
| color: var(--fg); | |
| width: 100%; | |
| text-align: left; | |
| font-family: var(--font-display); | |
| transition: all 0.3s; | |
| } | |
| .faq-question:hover { | |
| color: var(--accent); | |
| } | |
| .faq-question i { | |
| transition: transform 0.3s; | |
| font-size: 14px; | |
| color: var(--fg-dim); | |
| } | |
| .faq-item.open .faq-question i { | |
| transform: rotate(180deg); | |
| color: var(--accent); | |
| } | |
| .faq-answer { | |
| max-height: 0; | |
| overflow: hidden; | |
| transition: max-height 0.4s ease, padding 0.4s ease; | |
| } | |
| .faq-item.open .faq-answer { | |
| max-height: 300px; | |
| } | |
| .faq-answer-inner { | |
| padding: 0 24px 20px; | |
| color: var(--fg-muted); | |
| font-size: 15px; | |
| line-height: 1.7; | |
| } | |
| /* ===== Footer ===== */ | |
| .footer { | |
| padding: 60px 24px 32px; | |
| text-align: center; | |
| border-top: 1px solid var(--border); | |
| margin-top: 80px; | |
| } | |
| .footer-brand { | |
| font-size: 20px; | |
| font-weight: 700; | |
| margin-bottom: 12px; | |
| } | |
| .footer-brand span { color: var(--accent); } | |
| .footer-text { | |
| color: var(--fg-dim); | |
| font-size: 14px; | |
| margin-bottom: 20px; | |
| } | |
| .footer-links { | |
| display: flex; | |
| justify-content: center; | |
| gap: 24px; | |
| flex-wrap: wrap; | |
| } | |
| .footer-links a { | |
| color: var(--fg-muted); | |
| text-decoration: none; | |
| font-size: 14px; | |
| transition: color 0.3s; | |
| } | |
| .footer-links a:hover { color: var(--accent); } | |
| /* ===== Toast ===== */ | |
| .toast { | |
| position: fixed; | |
| bottom: 32px; | |
| right: 32px; | |
| background: var(--bg-card); | |
| border: 1px solid rgba(0,255,163,0.2); | |
| color: var(--accent); | |
| padding: 14px 24px; | |
| border-radius: var(--radius-sm); | |
| font-size: 14px; | |
| font-weight: 600; | |
| z-index: 200; | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| transform: translateY(100px); | |
| opacity: 0; | |
| transition: all 0.4s ease; | |
| backdrop-filter: blur(12px); | |
| } | |
| .toast.show { | |
| transform: translateY(0); | |
| opacity: 1; | |
| } | |
| /* ===== Reveal Animation ===== */ | |
| .reveal { | |
| opacity: 0; | |
| transform: translateY(40px); | |
| transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); | |
| } | |
| .reveal.visible { | |
| opacity: 1; | |
| transform: translateY(0); | |
| } | |
| /* ===== Mobile Nav Overlay ===== */ | |
| .mobile-nav { | |
| display: none; | |
| position: fixed; | |
| inset: 0; | |
| z-index: 99; | |
| background: rgba(10,10,15,0.95); | |
| backdrop-filter: blur(20px); | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 24px; | |
| } | |
| .mobile-nav.open { display: flex; } | |
| .mobile-nav a { | |
| color: var(--fg); | |
| text-decoration: none; | |
| font-size: 24px; | |
| font-weight: 600; | |
| transition: color 0.3s; | |
| } | |
| .mobile-nav a:hover { color: var(--accent); } | |
| .mobile-nav-close { | |
| position: absolute; | |
| top: 20px; | |
| right: 24px; | |
| background: none; | |
| border: none; | |
| color: var(--fg); | |
| font-size: 28px; | |
| cursor: pointer; | |
| } | |
| /* ===== Responsive ===== */ | |
| @media (max-width: 900px) { | |
| .intro-grid { grid-template-columns: 1fr; } | |
| .demo-body { grid-template-columns: 1fr; } | |
| .demo-editor { border-right: none; border-bottom: 1px solid var(--border); } | |
| .nav-links { display: none; } | |
| .nav-hamburger { display: block; } | |
| .tipps-grid { grid-template-columns: 1fr; } | |
| } | |
| @media (max-width: 600px) { | |
| .hero-heading { letter-spacing: -1.5px; } | |
| .section { padding: 60px 16px; } | |
| .vibe-meter-section { padding: 24px; } | |
| .steps-list::before { left: 18px; } | |
| .step-number { width: 40px; height: 40px; font-size: 16px; } | |
| .step-item { gap: 16px; } | |
| } | |
| /* ===== Particle Canvas ===== */ | |
| #particle-canvas { | |
| position: fixed; | |
| inset: 0; | |
| z-index: 0; | |
| pointer-events: none; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Atmosphere --> | |
| <div class="bg-atmosphere"> | |
| <div class="bg-blob bg-blob--1"></div> | |
| <div class="bg-blob bg-blob--2"></div> | |
| <div class="bg-blob bg-blob--3"></div> | |
| <div class="bg-grid"></div> | |
| </div> | |
| <canvas id="particle-canvas"></canvas> | |
| <div class="noise-overlay"></div> | |
| <!-- Navigation --> | |
| <nav class="nav" id="navbar"> | |
| <a href="#" class="nav-brand"> | |
| <div class="nav-logo">V</div> | |
| <span class="nav-title">VIBE<span>CODE</span></span> | |
| </a> | |
| <ul class="nav-links"> | |
| <li><a href="#intro">Was ist es?</a></li> | |
| <li><a href="#schritte">Schritte</a></li> | |
| <li><a href="#tools">Tools</a></li> | |
| <li><a href="#demo">Live Demo</a></li> | |
| <li><a href="#tipps">Tipps</a></li> | |
| <li><a href="#faq">FAQ</a></li> | |
| </ul> | |
| <a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" class="nav-built"> | |
| <i class="fa-solid fa-cube"></i> Built with anycoder | |
| </a> | |
| <button class="nav-hamburger" id="hamburgerBtn" aria-label="Menu"> | |
| <i class="fa-solid fa-bars"></i> | |
| </button> | |
| </nav> | |
| <!-- Mobile Nav --> | |
| <div class="mobile-nav" id="mobileNav"> | |
| <button class="mobile-nav-close" id="mobileNavClose" aria-label="Close"><i class="fa-solid fa-xmark"></i></button> | |
| <a href="#intro" onclick="closeMobileNav()">Was ist es?</a> | |
| <a href="#schritte" onclick="closeMobileNav()">Schritte</a> | |
| <a href="#tools" onclick="closeMobileNav()">Tools</a> | |
| <a href="#demo" onclick="closeMobileNav()">Live Demo</a> | |
| <a href="#tipps" onclick="closeMobileNav()">Tipps</a> | |
| <a href="#faq" onclick="closeMobileNav()">FAQ</a> | |
| </div> | |
| <!-- Main Content --> | |
| <div class="main-container"> | |
| <!-- Hero --> | |
| <section class="hero" id="hero"> | |
| <div class="hero-badge"><i class="fa-solid fa-circle"></i> Tutorial 2025 — Auf Deutsch</div> | |
| <h1 class="hero-heading"> | |
| <span class="line1">VIBE</span> | |
| <span class="line2">CODING</span> | |
| </h1> | |
| <p class="hero-sub">Programmieren mit Intuition statt mit Anleitung. Lerne, wie du mit KI-Tools Software erstellst — ganz nach deinem Vibe.</p> | |
| <div class="hero-actions"> | |
| <a href="#schritte" class="btn btn-primary"><i class="fa-solid fa-rocket"></i> Jetzt starten</a> | |
| <a href="#intro" class="btn btn-secondary"><i class="fa-solid fa-play"></i> Was ist Vibe Coding?</a> | |
| </div> | |
| <div class="hero-scroll-indicator"> | |
| <div class="scroll-line"></div> | |
| <span>Scroll</span> | |
| </div> | |
| </section> | |
| <!-- Intro Section --> | |
| <section class="section" id="intro"> | |
| <div class="reveal"> | |
| <span class="section-label"><i class="fa-solid fa-lightbulb"></i> Grundlagen</span> | |
| <h2 class="section-title">Was ist Vibe Coding?</h2> | |
| <p class="section-desc">Vibe Coding ist ein neuer Ansatz zur Softwareentwicklung, bei dem du natürliche Sprache, Intuition und KI verwendest, um Code zu erzeugen — statt alles manuell zu tippen.</p> | |
| </div> | |
| <div class="intro-grid"> | |
| <div class="intro-text reveal"> | |
| <h3>Der Kerngedanke</h3> | |
| <p>Stell dir vor, du beschreibst einer KI, was du bauen möchtest — und sie generiert den Code dafür. Du steuerst mit deinem "Vibe", deiner Vision und Intuition, während die KI die Umsetzung übernimmt.</p> | |
| <p>Der Begriff wurde von Andrej Karpathy geprägt, der beschrieb, dass er Code mittlerweile "by vibe" schreibt — also durch Gefühl und natürliche Beschreibung statt durch präzise Syntax.</p> | |
| <div class="intro-highlight"> | |
| <div class="icon-box icon-box--green"><i class="fa-solid fa-language"></i></div> | |
| <div> | |
| <h4>Natürliche Sprache</h4> | |
| <p>Beschreibe, was du willst — auf Deutsch oder Englisch.</p> | |
| </div> | |
| </div> | |
| <div class="intro-highlight"> | |
| <div class="icon-box icon-box--pink"><i class="fa-solid fa-wand-magic-sparkles"></i></div> | |
| <div> | |
| <h4>KI-generierter Code</h4> | |
| <p>Die KI übersetzt deine Beschreibung in funktionierenden Code.</p> | |
| </div> | |
| </div> | |
| <div class="intro-highlight"> |