Changed around line 1
+ :root {
+ --primary: #4CAF50;
+ --background: #1a1a1a;
+ --text: #ffffff;
+ --card: #2d2d2d;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ min-height: 100vh;
+ overflow-x: hidden;
+ }
+
+ header {
+ padding: 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ background: rgba(0,0,0,0.2);
+ backdrop-filter: blur(10px);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ background: linear-gradient(45deg, var(--primary), #2196F3);
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ animation: titleGlow 2s ease-in-out infinite alternate;
+ }
+
+ .glow-button {
+ padding: 0.8rem 1.5rem;
+ border: none;
+ border-radius: 25px;
+ background: var(--primary);
+ color: white;
+ font-weight: bold;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
+ }
+
+ .glow-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 0 25px rgba(76, 175, 80, 0.5);
+ }
+
+ .habits-container {
+ padding: 2rem;
+ }
+
+ .habits-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
+ gap: 1.5rem;
+ animation: fadeIn 0.5s ease-out;
+ }
+
+ .habit-card {
+ background: var(--card);
+ padding: 1.5rem;
+ border-radius: 15px;
+ transition: transform 0.3s ease;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .habit-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .habit-card::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 5px;
+ background: var(--color);
+ }
+
+ .modal {
+ border: none;
+ border-radius: 15px;
+ padding: 2rem;
+ background: var(--card);
+ color: var(--text);
+ }
+
+ .modal::backdrop {
+ background: rgba(0,0,0,0.8);
+ backdrop-filter: blur(5px);
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, select {
+ padding: 0.8rem;
+ border-radius: 8px;
+ border: 1px solid rgba(255,255,255,0.1);
+ background: rgba(255,255,255,0.05);
+ color: var(--text);
+ }
+
+ .button-group {
+ display: flex;
+ gap: 1rem;
+ }
+
+ @keyframes titleGlow {
+ from { filter: drop-shadow(0 0 2px rgba(76, 175, 80, 0.5)); }
+ to { filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.8)); }
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ header {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }