Changed around line 1
+ :root {
+ --frame-bg: #0F172A;
+ --frame-text: #E2E8F0;
+ --frame-accent: #8B5CF6;
+ --frame-card: #1E293B;
+ --frame-radius: 16px;
+ --frame-glow: 0 0 20px rgba(139, 92, 246, 0.15);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ background: var(--frame-bg);
+ color: var(--frame-text);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .frameContainer {
+ width: 100%;
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 24px;
+ }
+
+ .frameContent {
+ background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
+ border-radius: var(--frame-radius);
+ padding: 32px;
+ box-shadow: var(--frame-glow);
+ backdrop-filter: blur(10px);
+ border: 1px solid rgba(139, 92, 246, 0.1);
+ }
+
+ .frameTitle {
+ font-size: 32px;
+ font-weight: 800;
+ background: linear-gradient(135deg, #A78BFA, #8B5CF6);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ text-align: center;
+ margin-bottom: 8px;
+ }
+
+ .frameSubtitle {
+ text-align: center;
+ color: #94A3B8;
+ margin-bottom: 24px;
+ }
+
+ .statsDisplay {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 16px;
+ margin-bottom: 24px;
+ }
+
+ .statCard {
+ background: var(--frame-card);
+ padding: 20px;
+ border-radius: var(--frame-radius);
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 8px;
+ transition: transform 0.2s ease;
+ }
+
+ .statCard:hover {
+ transform: translateY(-2px);
+ }
+
+ .statLabel {
+ font-size: 14px;
+ color: #94A3B8;
+ font-weight: 500;
+ }
+
+ .statValue {
+ font-size: 24px;
+ font-weight: 700;
+ color: var(--frame-text);
+ }
+
+ .frameActionArea {
+ display: flex;
+ justify-content: center;
+ }
+
+ .frameButton {
+ background: linear-gradient(135deg, #A78BFA, #8B5CF6);
+ color: white;
+ border: none;
+ padding: 14px 28px;
+ border-radius: var(--frame-radius);
+ font-size: 16px;
+ font-weight: 600;
+ cursor: pointer;
+ transition: all 0.2s ease;
+ box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
+ }
+
+ .frameButton:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
+ }
+
+ @media (max-width: 480px) {
+ .frameContainer {
+ padding: 16px;
+ }
+
+ .frameTitle {
+ font-size: 28px;
+ }
+
+ .statsDisplay {
+ grid-template-columns: 1fr;
+ }
+
+ .statCard {
+ padding: 16px;
+ }
+ }