Edmilsontec/blaze-double-bot-automator
0
1/* Custom Scrollbar */2::-webkit-scrollbar {3 width: 8px;4}5 6::-webkit-scrollbar-track {7 background: #1f2937;8}9 10::-webkit-scrollbar-thumb {11 background: #4f46e5;12 border-radius: 4px;13}14 15::-webkit-scrollbar-thumb:hover {16 background: #4338ca;17}18 19/* Animations */20@keyframes pulse-glow {21 0%, 100% {22 box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);23 }24 50% {25 box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);26 }27}28 29.pulse-glow {30 animation: pulse-glow 2s infinite;31}32 33/* Game History Styles */34.game-entry {35 transition: all 0.3s ease;36}37 38.game-entry:hover {39 transform: translateX(4px);40}41 42/* Status Indicators */43.status-ready {44 color: #10b981;45}46 47.status-working {48 color: #f59e0b;49}50 51.status-error {52 color: #ef4444;53}54 55/* Responsive Design Enhancements */56@media (max-width: 768px) {57 .container {58 padding-left: 1rem;59 padding-right: 1rem;60 }61}62 63/* Custom Button Styles */64.btn-primary {65 background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);66 transition: all 0.3s ease;67}68 69.btn-primary:hover {70 transform: translateY(-2px);71 box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);72}73/* Loading Animation */74.loading-dots {75 display: inline-block;76}77 78.loading-dots::after {79 content: '...';80 animation: dots 1.5s steps(4, end) infinite;81}82 83@keyframes dots {84 0%, 20% {85 color: rgba(255,255,255,0);86 text-shadow: .25em 0 0 rgba(255,255,255,0),87 .5em 0 0 rgba(255,255,255,0);88 }89 40% {90 color: white;91 text-shadow: .25em 0 0 rgba(255,255,255,0),92 .5em 0 0 rgba(255,255,255,0);93 }94 60% {95 text-shadow: .25em 0 0 white,96 .5em 0 0 rgba(255,255,255,0);97 }98 80%, 100% {99 text-shadow: .25em 0 0 white,100 .5em 0 0 white;101 }102}103 104/* Modal Styles */105.modal-overlay {106 position: fixed;107 top: 0;108 left: 0;109 width: 100%;110 height: 100%;111 background: rgba(0, 0, 0, 0.8);112 display: flex;113 justify-content: center;114 align-items: center;115 z-index: 1000;116 }117 118.modal-content {119 background: #1f2937;120 border-radius: 12px;121 padding: 2rem;122 width: 90%;123 max-width: 400px;124 border: 1px solid #374151;125}126 