.container { padding: 3rem 4rem; max-width: 1200px; margin: 0 auto; } .header { margin-bottom: 3rem; border-bottom: 2px solid #1a1a1a; padding-bottom: 1.5rem; } .title { font-size: 2.25rem; text-transform: uppercase; color: #ffffff; letter-spacing: 0.05em; margin: 0 0 0.5rem 0; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); } .subtitle { font-size: 0.9rem; color: #777777; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; } .statsGrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 3rem; } .statCard { background: #0d0d0d; border: 1px solid #1a1a1a; border-top: 3px solid #330000; padding: 1.5rem; transition: all 0.2s ease; } .statCard:hover { border-color: #a30000; box-shadow: 0 0 15px rgba(163, 0, 0, 0.15); } .statLabel { font-size: 0.75rem; text-transform: uppercase; color: #555555; font-weight: bold; letter-spacing: 0.1em; margin-bottom: 0.5rem; } .statValue { font-size: 1.25rem; font-weight: bold; color: #ffffff; font-family: 'Oswald', sans-serif; line-height: 1; } .panelGrid { display: grid; grid-template-columns: 1fr; gap: 2rem; } .card { background: #0d0d0d; border: 1px solid #1a1a1a; border-top: 3px solid #630000; padding: 2rem; } .cardTitle { font-size: 1.25rem; text-transform: uppercase; color: #ffffff; margin: 0 0 1.5rem 0; letter-spacing: 0.05em; } .formatBtnActive { background: #a30000; border-color: #ff0000; color: #ffffff; } .textarea { width: 100%; height: 200px; background: #050505; border: 1px solid #1a1a1a; color: #999999; font-family: monospace; font-size: 0.8rem; padding: 1rem; resize: none; margin-bottom: 1.5rem; } .textarea:focus { outline: none; border-color: #a30000; } .btnRow { display: flex; gap: 1rem; flex-wrap: wrap; } .primaryBtn { background: #a30000; border: 1px solid #ff0000; color: #ffffff; padding: 0.8rem 1.5rem; font-size: 0.8rem; text-transform: uppercase; font-weight: bold; cursor: pointer; transition: all 0.2s ease; } .primaryBtn:hover { background: #ff0000; box-shadow: 0 0 10px rgba(255, 0, 0, 0.4); } .secondaryBtn { background: #121212; border: 1px solid #333333; color: #c9c9c9; padding: 0.8rem 1.5rem; font-size: 0.8rem; text-transform: uppercase; font-weight: bold; cursor: pointer; transition: all 0.2s ease; } .secondaryBtn:hover { background: #1a1a1a; color: #ffffff; } .toast { position: fixed; bottom: 2rem; right: 2rem; background: #0d0d0d; border: 1px solid #00ff66; color: #00ff66; padding: 1rem 1.5rem; font-size: 0.8rem; text-transform: uppercase; font-weight: bold; animation: slideIn 0.3s ease-out forwards; } .toastError { border-color: #ff0000; color: #ff0000; } @keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }