ottocran/ticketmaster-magic-wand
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');2 3body {4 font-family: 'Inter', sans-serif;5}6 7/* Animation for ticket cards */8@keyframes fadeIn {9 from { opacity: 0; transform: translateY(10px); }10 to { opacity: 1; transform: translateY(0); }11}12 13.ticket-card {14 animation: fadeIn 0.3s ease-out forwards;15}16 17/* Timer animation */18@keyframes pulse {19 0% { transform: scale(1); }20 50% { transform: scale(1.05); }21 100% { transform: scale(1); }22}23 24.timer-pulse {25 animation: pulse 1s infinite;26}27 28/* Loading spinner */29.spinner {30 width: 24px;31 height: 24px;32 border: 3px solid rgba(255, 255, 255, 0.3);33 border-radius: 50%;34 border-top-color: #fff;35 animation: spin 1s ease-in-out infinite;36}37 38@keyframes spin {39 to { transform: rotate(360deg); }40}