/* mechanic.party */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #ffffff; color: #1a1a1a; font-family: 'Inter', sans-serif; line-height: 1.7; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; position: relative; overflow: hidden; }
.shape { position: absolute; z-index: 0; }
.circle { width: 80px; height: 80px; border-radius: 50%; }
.triangle { width: 0; height: 0; border-left: 40px solid transparent; border-right: 40px solid transparent; border-bottom: 70px solid; }
.red { background: #ef4444; }
.blue { background: #3b82f6; border-bottom-color: #3b82f6; }
.yellow { background: #fbbf24; }
.pink { background: #ec4899; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 7vw, 4rem); position: relative; z-index: 1; }
.est-circle { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #1a1a1a; display: flex; align-items: center; justify-content: center; margin-top: 1rem; position: relative; z-index: 1; }
.est { font-family: 'Fira Code', monospace; font-size: 0.5rem; }
.events { max-width: 550px; margin: 0 auto; padding: 2rem 1.5rem; }
.event-card { background: #ffffff; padding: 1.5rem; padding-left: 2rem; position: relative; margin-bottom: 1rem; }
.tilt-right { transform: rotate(1.5deg); }
.tilt-left { transform: rotate(-1.5deg); }
.card-border { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.red-border { background: #ef4444; }
.blue-border { background: #3b82f6; }
.yellow-border { background: #fbbf24; }
.card-tag { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: #737373; }
.card-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; margin: 0.25rem 0; }
.card-text { font-size: 0.8rem; color: #525252; margin-bottom: 0.5rem; }
.card-code { font-family: 'Fira Code', monospace; font-size: 0.7rem; color: #3b82f6; }
.shape-divider { display: flex; justify-content: center; gap: 0.5rem; align-items: center; margin: 1rem 0; }
.sd-circle { width: 12px; height: 12px; border-radius: 50%; }
.sd-circle.red { background: #ef4444; }
.sd-circle.yellow { background: #fbbf24; }
.sd-circle.blue { background: #3b82f6; }
.sd-circle.pink { background: #ec4899; }
.sd-tri { width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 10px solid; }
.sd-tri.blue { border-bottom-color: #3b82f6; }
.sd-tri.pink { border-bottom-color: #ec4899; }
.sd-tri.red { border-bottom-color: #ef4444; }
.sd-tri.yellow { border-bottom-color: #fbbf24; }
.exit { text-align: center; padding: 3rem 1.5rem; }
.exit-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
