 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; padding: 20px; } .profile-container { max-width: 600px; margin: 0 auto; } .profile-card { border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden; padding: 40px; text-align: center; margin-bottom: 30px; animation: fadeIn 0.6s ease-out; } /* ============================================ BASE BACKGROUND STYLES ============================================ */ .bg-default, .bg-gradient-blue, .bg-gradient-purple, .bg-gradient-sunset, .bg-gradient-ocean, .bg-gradient-forest, .bg-gradient-pink, .bg-gradient-teal, .bg-gradient-orange, .bg-gradient-red, .bg-gradient-gold, .bg-gradient-space, .bg-gradient-aurora, .bg-gradient-cotton-candy, .bg-gradient-sunrise { background-attachment: fixed; background-size: cover; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; } /* Add subtle animation to all gradient backgrounds */ .bg-gradient-blue:hover, .bg-gradient-purple:hover, .bg-gradient-sunset:hover, .bg-gradient-ocean:hover, .bg-gradient-forest:hover, .bg-gradient-pink:hover, .bg-gradient-teal:hover, .bg-gradient-orange:hover, .bg-gradient-red:hover, .bg-gradient-gold:hover, .bg-gradient-space:hover, .bg-gradient-aurora:hover, .bg-gradient-cotton-candy:hover, .bg-gradient-sunrise:hover { background-size: 110% 110%; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); } /* ============================================ GRADIENTS ============================================ */ /* Default Purple */ .bg-default { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1); } /* Gradient Blue */ .bg-gradient-blue { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); box-shadow: inset 0 0 80px rgba(37, 117, 252, 0.3); } /* Gradient Purple */ .bg-gradient-purple { background: linear-gradient(135deg, #8A2BE2 0%, #DA70D6 50%, #8A2BE2 100%); background-size: 200% 200%; animation: gradientShift 8s ease infinite; } @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Gradient Sunset */ .bg-gradient-sunset { background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 50%, #ff7e5f 100%); background-size: 200% 200%; animation: sunsetGlow 10s ease infinite; } @keyframes sunsetGlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; filter: brightness(1.1); } 100% { background-position: 0% 50%; } } /* Gradient Ocean */ .bg-gradient-ocean { background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); position: relative; } .bg-gradient-ocean::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230072ff" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); background-position: bottom; background-repeat: no-repeat; background-size: cover; animation: waveMove 20s linear infinite; } @keyframes waveMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50px); } } /* Gradient Forest */ .bg-gradient-forest { background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%); position: relative; } .bg-gradient-forest::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.3) 2px, transparent 2px), radial-gradient(circle at 40% 20%, rgba(46, 125, 50, 0.3) 1px, transparent 1px), radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.3) 3px, transparent 3px); background-size: 100px 100px, 150px 150px, 200px 200px; animation: leafFloat 20s linear infinite; } @keyframes leafFloat { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-100px) rotate(360deg); } } /* Gradient Pink */ .bg-gradient-pink { background: linear-gradient(135deg, #ec407a 0%, #ff80ab 100%); box-shadow: inset 0 0 100px rgba(255, 128, 171, 0.4); } /* Gradient Teal */ .bg-gradient-teal { background: linear-gradient(135deg, #00bfa5 0%, #1de9b6 100%); position: relative; } .bg-gradient-teal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); animation: shine 3s infinite; } @keyframes shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } /* Gradient Orange */ .bg-gradient-orange { background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%); background-size: 200% 200%; animation: orangePulse 6s ease-in-out infinite; } @keyframes orangePulse { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } /* Gradient Red */ .bg-gradient-red { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); box-shadow: 0 10px 40px rgba(255, 65, 108, 0.3); } /* Gradient Gold */ .bg-gradient-gold { background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); position: relative; } .bg-gradient-gold::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.2) 50%, transparent 55%); background-size: 200% 200%; animation: goldShimmer 4s infinite; } @keyframes goldShimmer { 0% { background-position: -200% -200%; } 100% { background-position: 200% 200%; } } /* Gradient Space */ .bg-gradient-space { background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%); position: relative; } .bg-gradient-space::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 30%, white 1px, transparent 1px), radial-gradient(circle at 40% 70%, white 2px, transparent 2px), radial-gradient(circle at 60% 20%, white 1px, transparent 1px), radial-gradient(circle at 80% 60%, white 3px, transparent 3px); background-size: 200px 200px; animation: twinkle 3s infinite; } @keyframes twinkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } } /* Gradient Aurora */ .bg-gradient-aurora { background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0, #8a2be2, #ff0080); background-size: 400% 400%; animation: auroraFlow 15s ease infinite; } @keyframes auroraFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Gradient Cotton Candy */ .bg-gradient-cotton-candy { background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%); position: relative; } .bg-gradient-cotton-candy::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 1px, transparent 1px); background-size: 50px 50px; animation: floatBubbles 20s linear infinite; } @keyframes floatBubbles { 0% { transform: translateY(100%) rotate(0deg); } 100% { transform: translateY(-100%) rotate(360deg); } } /* Gradient Sunrise */ .bg-gradient-sunrise { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); position: relative; } .bg-gradient-sunrise::after { content: '☀'; position: absolute; top: 10%; right: 10%; font-size: 80px; color: rgba(255, 165, 0, 0.3); animation: sunriseSpin 20s linear infinite; } @keyframes sunriseSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* ============================================ PATTERNS ============================================ */ .bg-pattern-dots, .bg-pattern-lines, .bg-pattern-grid, .bg-pattern-hexagon, .bg-pattern-diamond, .bg-pattern-zigzag, .bg-pattern-waves, .bg-pattern-confetti, .bg-pattern-bubbles, .bg-pattern-stars, .bg-pattern-triangles { background-size: 50px 50px; background-attachment: fixed; transition: all 0.3s ease; } .bg-pattern-dots:hover, .bg-pattern-lines:hover, .bg-pattern-grid:hover, .bg-pattern-hexagon:hover, .bg-pattern-diamond:hover, .bg-pattern-zigzag:hover, .bg-pattern-waves:hover, .bg-pattern-confetti:hover, .bg-pattern-bubbles:hover, .bg-pattern-stars:hover, .bg-pattern-triangles:hover { background-size: 40px 40px; } /* Pattern Dots */ .bg-pattern-dots { background-color: #f0f4ff; background-image: radial-gradient(circle at 25% 25%, #667eea 2px, transparent 2px), radial-gradient(circle at 75% 75%, #667eea 2px, transparent 2px); background-size: 40px 40px; } /* Pattern Lines */ .bg-pattern-lines { background-color: #ffffff; background-image: linear-gradient(45deg, #e2e8f0 25%, transparent 25%), linear-gradient(-45deg, #e2e8f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e2e8f0 75%), linear-gradient(-45deg, transparent 75%, #e2e8f0 75%); background-size: 20px 20px; } /* Pattern Grid */ .bg-pattern-grid { background-color: #ffffff; background-image: linear-gradient(#e2e8f0 1px, transparent 1px), linear-gradient(90deg, #e2e8f0 1px, transparent 1px); background-size: 20px 20px; } /* Pattern Hexagon */ .bg-pattern-hexagon { background-color: #f8fafc; background-image: radial-gradient(circle at 50% 50%, #c7d2fe 10%, transparent 10%), radial-gradient(circle at 0% 0%, #c7d2fe 10%, transparent 10%), radial-gradient(circle at 100% 0%, #c7d2fe 10%, transparent 10%), radial-gradient(circle at 0% 100%, #c7d2fe 10%, transparent 10%), radial-gradient(circle at 100% 100%, #c7d2fe 10%, transparent 10%); background-size: 60px 60px; } /* Pattern Diamond */ .bg-pattern-diamond { background-color: #ffffff; background-image: linear-gradient(45deg, #a5b4fc 25%, transparent 25%), linear-gradient(-45deg, #a5b4fc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #a5b4fc 75%), linear-gradient(-45deg, transparent 75%, #a5b4fc 75%); background-size: 40px 40px; background-position: 0 0, 0 20px, 20px -20px, -20px 0px; } /* Pattern Zigzag */ .bg-pattern-zigzag { background-color: #ffffff; background-image: linear-gradient(135deg, #667eea 25%, transparent 25%), linear-gradient(225deg, #667eea 25%, transparent 25%), linear-gradient(45deg, #667eea 25%, transparent 25%), linear-gradient(315deg, #667eea 25%, transparent 25%); background-size: 40px 40px; background-position: 0 0, 20px 0, 20px -20px, 0px 20px; } /* Pattern Waves */ .bg-pattern-waves { background-color: #e0f2fe; background-image: radial-gradient(circle at 100% 50%, transparent 20%, #0ea5e9 21%, #0ea5e9 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, transparent 20%, #0ea5e9 21%, #0ea5e9 34%, transparent 35%, transparent); background-size: 60px 60px; } /* Pattern Confetti */ .bg-pattern-confetti { background-color: #fef3c7; background-image: radial-gradient(circle at 20% 80%, #f59e0b 3px, transparent 3px), radial-gradient(circle at 40% 20%, #ef4444 2px, transparent 2px), radial-gradient(circle at 60% 50%, #3b82f6 4px, transparent 4px), radial-gradient(circle at 80% 30%, #10b981 3px, transparent 3px); background-size: 100px 100px; } /* Pattern Bubbles */ .bg-pattern-bubbles { background-color: #dbeafe; background-image: radial-gradient(circle at 25% 25%, #3b82f6 10%, transparent 10%), radial-gradient(circle at 75% 75%, #3b82f6 15%, transparent 15%), radial-gradient(circle at 50% 50%, #3b82f6 20%, transparent 20%); background-size: 100px 100px; } /* Pattern Stars */ .bg-pattern-stars { background-color: #1e293b; background-image: radial-gradient(circle at 10% 20%, white 1px, transparent 1px), radial-gradient(circle at 30% 40%, white 2px, transparent 2px), radial-gradient(circle at 50% 60%, white 1px, transparent 1px), radial-gradient(circle at 70% 80%, white 3px, transparent 3px), radial-gradient(circle at 90% 10%, white 2px, transparent 2px); background-size: 200px 200px; animation: starTwinkle 4s infinite; } @keyframes starTwinkle { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } } /* Pattern Triangles */ .bg-pattern-triangles { background-color: #f1f5f9; background-image: linear-gradient(45deg, #94a3b8 25%, transparent 25%), linear-gradient(135deg, #94a3b8 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #94a3b8 75%), linear-gradient(135deg, transparent 75%, #94a3b8 75%); background-size: 40px 40px; background-position: 0 0, 20px 0, 20px -20px, 0px 20px; } /* ============================================ SOLID COLORS ============================================ */ .bg-solid-light, .bg-solid-dark, .bg-solid-blue, .bg-solid-green, .bg-solid-red, .bg-solid-yellow, .bg-solid-purple, .bg-solid-pink, .bg-solid-teal, .bg-solid-gray { background-size: cover; position: relative; transition: all 0.3s ease; box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1); } .bg-solid-light:hover, .bg-solid-dark:hover, .bg-solid-blue:hover, .bg-solid-green:hover, .bg-solid-red:hover, .bg-solid-yellow:hover, .bg-solid-purple:hover, .bg-solid-pink:hover, .bg-solid-teal:hover, .bg-solid-gray:hover { box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.2); transform: scale(1.01); } .bg-solid-light { background-color: #ffffff; background-image: linear-gradient(45deg, #f8fafc 25%, transparent 25%, transparent 75%, #f8fafc 75%); } .bg-solid-dark { background-color: #1e293b; background-image: linear-gradient(45deg, #0f172a 25%, transparent 25%, transparent 75%, #0f172a 75%); } .bg-solid-blue { background-color: #3b82f6; background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px); background-size: 20px 20px; } .bg-solid-green { background-color: #10b981; position: relative; } .bg-solid-green::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); animation: greenShine 6s infinite; } @keyframes greenShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } .bg-solid-red { background-color: #ef4444; box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3); } .bg-solid-yellow { background-color: #f59e0b; background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%); } .bg-solid-purple { background-color: #8b5cf6; position: relative; } .bg-solid-purple::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 2%, transparent 2%); } .bg-solid-pink { background-color: #ec4899; background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 10%, transparent 10%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 10%, transparent 10%); } .bg-solid-teal { background-color: #14b8a6; animation: tealPulse 4s infinite; } @keyframes tealPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; } } .bg-solid-gray { background-color: #6b7280; background-image: linear-gradient(45deg, #4b5563 25%, transparent 25%), linear-gradient(-45deg, #4b5563 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #4b5563 75%), linear-gradient(-45deg, transparent 75%, #4b5563 75%); background-size: 20px 20px; } /* ============================================ ABSTRACT BACKGROUNDS ============================================ */ .bg-abstract-1, .bg-abstract-2, .bg-abstract-3, .bg-abstract-4, .bg-abstract-5, .bg-abstract-liquid, .bg-abstract-blob, .bg-abstract-mesh, .bg-abstract-fluid, .bg-abstract-neon { background-size: cover; position: relative; transition: all 0.5s ease; } .bg-abstract-1 { background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7); background-size: 400% 400%; animation: abstractMove 20s ease infinite; } .bg-abstract-2 { background: radial-gradient(circle at 20% 80%, #667eea 0%, transparent 50%), radial-gradient(circle at 80% 20%, #ec4899 0%, transparent 50%), radial-gradient(circle at 40% 40%, #f59e0b 0%, transparent 50%); filter: blur(40px); animation: abstractFloat 30s infinite alternate; } @keyframes abstractFloat { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.2) rotate(180deg); } } .bg-abstract-3 { background: conic-gradient(from 0deg at 50% 50%, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #ff6b6b); animation: abstractSpin 20s linear infinite; } @keyframes abstractSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .bg-abstract-4 { background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(102, 126, 234, 0.3) 10px, rgba(102, 126, 234, 0.3) 20px), repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(236, 72, 153, 0.3) 10px, rgba(236, 72, 153, 0.3) 20px); } .bg-abstract-5 { background: radial-gradient(circle at 50% 50%, #3b82f6, transparent 70%), radial-gradient(circle at 20% 80%, #8b5cf6, transparent 50%), radial-gradient(circle at 80% 20%, #ec4899, transparent 50%); animation: abstractPulse 10s infinite; } @keyframes abstractPulse { 0%, 100% { filter: blur(20px); } 50% { filter: blur(40px); } } .bg-abstract-liquid { background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff); background-size: 200% 200%; animation: liquidFlow 8s ease infinite; position: relative; } .bg-abstract-liquid::before { content: ''; position: absolute; top: -50%; left: -50%; right: -50%; bottom: -50%; background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%); animation: liquidBubble 15s infinite; } @keyframes liquidBubble { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } } .bg-abstract-blob { background: radial-gradient(circle at 30% 30%, #ff6b6b 0%, transparent 50%), radial-gradient(circle at 70% 70%, #4ecdc4 0%, transparent 50%), radial-gradient(circle at 50% 20%, #45b7d1 0%, transparent 50%); filter: blur(30px); animation: blobMorph 20s infinite alternate; } @keyframes blobMorph { 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; } 100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; } } .bg-abstract-mesh { background-color: #0f172a; background-image: radial-gradient(at 40% 20%, #3b0764 0px, transparent 50%), radial-gradient(at 80% 0%, #1e40af 0px, transparent 50%), radial-gradient(at 0% 50%, #064e3b 0px, transparent 50%), radial-gradient(at 80% 50%, #701a75 0px, transparent 50%), radial-gradient(at 0% 100%, #075985 0px, transparent 50%); background-size: cover; } .bg-abstract-fluid { background: linear-gradient(45deg, transparent 45%, rgba(59, 130, 246, 0.5) 50%, transparent 55%), linear-gradient(135deg, transparent 45%, rgba(139, 92, 246, 0.5) 50%, transparent 55%); background-size: 100px 100px; animation: fluidMove 20s linear infinite; } @keyframes fluidMove { 0% { background-position: 0 0; } 100% { background-position: 100px 100px; } } .bg-abstract-neon { background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff); background-size: 400% 400%; animation: neonPulse 5s ease infinite; box-shadow: 0 0 50px rgba(255, 0, 255, 0.5); } @keyframes neonPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.5); } } /* ============================================ NATURE BACKGROUNDS ============================================ */ .bg-nature-1, .bg-nature-2, .bg-nature-3, .bg-nature-4, .bg-nature-5, .bg-nature-6, .bg-nature-7, .bg-nature-8, .bg-nature-9, .bg-nature-10, .bg-nature-galaxy, .bg-nature-ocean, .bg-nature-sakura { background-size: cover; background-position: center; position: relative; transition: all 0.5s ease; } .bg-nature-1 { background: linear-gradient(to bottom, #1e3a8a 0%, #2563eb 30%, #38bdf8 60%, #0ea5e9 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%231e3a8a" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); background-position: bottom; background-repeat: no-repeat; } .bg-nature-2 { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 30%, #7dd3fc 60%, #bae6fd 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230ea5e9" fill-opacity="0.5" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,176C672,160,768,160,864,176C960,192,1056,224,1152,224C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); animation: beachWaves 20s linear infinite; } .bg-nature-3 { background: linear-gradient(135deg, #166534 0%, #22c55e 30%, #4ade80 60%, #86efac 100%); position: relative; } .bg-nature-3::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: radial-gradient(ellipse at center, #166534 0%, transparent 70%); animation: forestShadow 10s ease-in-out infinite alternate; } @keyframes forestShadow { 0% { transform: translateY(0); opacity: 0.5; } 100% { transform: translateY(-20px); opacity: 0.8; } } .bg-nature-4 { background: radial-gradient(circle at 20% 80%, #f0abfc 0%, transparent 40%), radial-gradient(circle at 80% 20%, #d946ef 0%, transparent 40%), linear-gradient(135deg, #f0abfc, #d946ef, #a855f7); animation: flowerBloom 15s infinite; } @keyframes flowerBloom { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.3); } } .bg-nature-5 { background: linear-gradient(to bottom, #0c4a6e 0%, #38bdf8 40%, #bae6fd 80%, #ffffff 100%); position: relative; } .bg-nature-5::after { content: '☁'; position: absolute; font-size: 60px; color: white; top: 20%; left: 20%; animation: cloudFloat 30s linear infinite; } .bg-nature-5::before { content: '☁'; position: absolute; font-size: 40px; color: white; top: 30%; right: 30%; animation: cloudFloat 40s linear infinite reverse; } @keyframes cloudFloat { 0% { transform: translateX(-100%); } 100% { transform: translateX(100vw); } } .bg-nature-6 { background: linear-gradient(135deg, #166534 0%, #22c55e 50%, #4ade80 100%); background-image: radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.8) 10%, transparent 10%), radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.8) 15%, transparent 15%), radial-gradient(circle at 80% 20%, rgba(134, 239, 172, 0.8) 12%, transparent 12%); } .bg-nature-7 { background: linear-gradient(135deg, #075985 0%, #0ea5e9 50%, #38bdf8 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230ea5e9" fill-opacity="0.5" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>'); animation: waterfallFlow 10s linear infinite; } .bg-nature-8 { background: linear-gradient(135deg, #d97706 0%, #fbbf24 30%, #fde68a 60%, #fef3c7 100%); position: relative; } .bg-nature-8::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 20% 80%, rgba(217, 119, 6, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 50%); animation: desertHeat 20s infinite alternate; } @keyframes desertHeat { 0% { transform: scale(1); } 100% { transform: scale(1.2); } } .bg-nature-9 { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #bae6fd 60%, #7dd3fc 100%); position: relative; } .bg-nature-9::before { content: '❄'; position: absolute; font-size: 20px; color: white; top: 0; left: 10%; animation: snowfall 20s linear infinite; } .bg-nature-9::after { content: '❄'; position: absolute; font-size: 15px; color: white; top: 0; left: 30%; animation: snowfall 25s linear infinite; } @keyframes snowfall { 0% { transform: translateY(-100px) rotate(0deg); } 100% { transform: translateY(100vh) rotate(360deg); } } .bg-nature-10 { background: linear-gradient(45deg, #0f766e 0%, #14b8a6 20%, #2dd4bf 40%, #5eead4 60%, #99f6e4 80%, #ccfbf1 100%); background-size: 400% 400%; animation: auroraDance 20s ease infinite; } .bg-nature-galaxy { background: radial-gradient(ellipse at center, #0f172a 0%, #1e293b 40%, #334155 100%), radial-gradient(circle at 20% 30%, white 1px, transparent 1px), radial-gradient(circle at 40% 70%, white 2px, transparent 2px), radial-gradient(circle at 60% 20%, #8b5cf6 3px, transparent 3px); animation: galaxyRotate 100s linear infinite; } @keyframes galaxyRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .bg-nature-ocean { background: linear-gradient(to bottom, #0c4a6e 0%, #0891b2 30%, #06b6d4 60%, #22d3ee 100%); position: relative; } .bg-nature-ocean::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.2) 20px, rgba(255, 255, 255, 0.2) 40px); animation: oceanCurrent 10s linear infinite; } .bg-nature-sakura { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%); position: relative; } .bg-nature-sakura::before { content: '🌸'; position: absolute; font-size: 30px; top: 0; left: 10%; animation: sakuraFall 20s linear infinite; } .bg-nature-sakura::after { content: '🌸'; position: absolute; font-size: 25px; top: 0; left: 40%; animation: sakuraFall 25s linear infinite; } @keyframes sakuraFall { 0% { transform: translateY(-100px) rotate(0deg); } 100% { transform: translateY(100vh) rotate(720deg); } } /* ============================================ GEOMETRIC BACKGROUNDS ============================================ */ .bg-geometric, .bg-geometric-2, .bg-geometric-3, .bg-geometric-4, .bg-geometric-circles, .bg-geometric-squares, .bg-geometric-triangles, .bg-geometric-lines, .bg-geometric-waves, .bg-geometric-spiral { background-size: 100px 100px; transition: all 0.3s ease; } .bg-geometric:hover, .bg-geometric-2:hover, .bg-geometric-3:hover, .bg-geometric-4:hover, .bg-geometric-circles:hover, .bg-geometric-squares:hover, .bg-geometric-triangles:hover, .bg-geometric-lines:hover, .bg-geometric-waves:hover, .bg-geometric-spiral:hover { background-size: 80px 80px; } .bg-geometric { background: linear-gradient(45deg, #3b82f6 25%, transparent 25%), linear-gradient(-45deg, #8b5cf6 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ec4899 75%), linear-gradient(-45deg, transparent 75%, #10b981 75%); background-size: 40px 40px; background-position: 0 0, 20px 0, 20px -20px, 0px 20px; } .bg-geometric-2 { background: repeating-linear-gradient(45deg, #3b82f6 0px, #3b82f6 10px, transparent 10px, transparent 20px), repeating-linear-gradient(-45deg, #8b5cf6 0px, #8b5cf6 10px, transparent 10px, transparent 20px); } .bg-geometric-3 { background: radial-gradient(circle at 25% 25%, #3b82f6 10%, transparent 10%), radial-gradient(circle at 75% 75%, #8b5cf6 15%, transparent 15%), radial-gradient(circle at 50% 50%, #ec4899 20%, transparent 20%); background-size: 100px 100px; animation: geometricSpin 20s linear infinite; } @keyframes geometricSpin { 0% { background-position: 0 0; } 100% { background-position: 100px 100px; } } .bg-geometric-4 { background: conic-gradient(from 45deg at 50% 50%, #3b82f6 0deg 90deg, #8b5cf6 90deg 180deg, #ec4899 180deg 270deg, #10b981 270deg 360deg); background-size: 80px 80px; } .bg-geometric-circles { background: radial-gradient(circle at 20% 80%, #3b82f6 5%, transparent 5%), radial-gradient(circle at 40% 20%, #8b5cf6 8%, transparent 8%), radial-gradient(circle at 60% 50%, #ec4899 10%, transparent 10%), radial-gradient(circle at 80% 30%, #10b981 7%, transparent 7%); background-size: 150px 150px; } .bg-geometric-squares { background: linear-gradient(90deg, #3b82f6 25%, transparent 25%), linear-gradient(90deg, transparent 75%, #8b5cf6 75%), linear-gradient(0deg, #ec4899 25%, transparent 25%), linear-gradient(0deg, transparent 75%, #10b981 75%); background-size: 50px 50px; } .bg-geometric-triangles { background: linear-gradient(60deg, #3b82f6 25%, transparent 25%), linear-gradient(-60deg, #8b5cf6 25%, transparent 25%), linear-gradient(60deg, transparent 75%, #ec4899 75%), linear-gradient(-60deg, transparent 75%, #10b981 75%); background-size: 60px 60px; background-position: 0 0, 30px 0, 30px -30px, 0px 30px; } .bg-geometric-lines { background: repeating-linear-gradient(90deg, transparent, transparent 20px, #3b82f6 20px, #3b82f6 40px), repeating-linear-gradient(0deg, transparent, transparent 20px, #8b5cf6 20px, #8b5cf6 40px); background-size: 80px 80px; } .bg-geometric-waves { background: repeating-radial-gradient(circle at 50% 50%, transparent, transparent 10px, #3b82f6 10px, #3b82f6 20px), repeating-radial-gradient(circle at 50% 50%, #8b5cf6, #8b5cf6 10px, transparent 10px, transparent 20px); background-size: 100px 100px; } .bg-geometric-spiral { background: conic-gradient(from 0deg at 50% 50%, #3b82f6 0% 10%, transparent 10% 20%, #8b5cf6 20% 30%, transparent 30% 40%, #ec4899 40% 50%, transparent 50% 60%, #10b981 60% 70%, transparent 70% 80%, #f59e0b 80% 90%, transparent 90% 100%); background-size: 100px 100px; animation: spiralRotate 30s linear infinite; } /* ============================================ SEASONAL/HOLIDAY BACKGROUNDS ============================================ */ .bg-season-summer, .bg-season-winter, .bg-season-spring, .bg-season-autumn, .bg-holiday-christmas, .bg-holiday-halloween, .bg-holiday-valentine, .bg-holiday-newyear { background-size: cover; position: relative; transition: all 0.5s ease; } .bg-season-summer { background: linear-gradient(135deg, #fbbf24 0%, #fde68a 50%, #fef3c7 100%); position: relative; } .bg-season-summer::after { content: '☀'; position: absolute; font-size: 80px; color: #f59e0b; top: 10%; right: 10%; animation: summerSun 20s linear infinite; } .bg-season-winter { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%); position: relative; } .bg-season-winter::before { content: '❄'; position: absolute; font-size: 30px; color: white; top: 0; left: 20%; animation: winterSnow 15s linear infinite; } .bg-season-spring { background: linear-gradient(135deg, #86efac 0%, #4ade80 50%, #22c55e 100%), radial-gradient(circle at 30% 70%, #f0abfc 10%, transparent 10%), radial-gradient(circle at 70% 30%, #d946ef 15%, transparent 15%); } .bg-season-autumn { background: linear-gradient(135deg, #d97706 0%, #f59e0b 33%, #fbbf24 66%, #fde68a 100%); position: relative; } .bg-season-autumn::before { content: '🍂'; position: absolute; font-size: 40px; top: 0; left: 15%; animation: autumnLeaf 25s linear infinite; } @keyframes autumnLeaf { 0% { transform: translateY(-100px) rotate(0deg); } 100% { transform: translateY(100vh) rotate(1080deg); } } .bg-holiday-christmas { background: linear-gradient(135deg, #dc2626 0%, #ffffff 50%, #15803d 100%); position: relative; } .bg-holiday-christmas::before { content: '🎄'; position: absolute; font-size: 60px; bottom: 10%; left: 20%; animation: christmasTree 5s ease-in-out infinite alternate; } .bg-holiday-halloween { background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #f59e0b 100%); position: relative; } .bg-holiday-halloween::before { content: '🎃'; position: absolute; font-size: 50px; top: 20%; right: 20%; animation: halloweenPumpkin 10s infinite; } .bg-holiday-valentine { background: linear-gradient(135deg, #fecaca 0%, #fca5a5 50%, #f87171 100%), radial-gradient(circle at 30% 30%, #ffffff 10%, transparent 10%), radial-gradient(circle at 70% 70%, #ffffff 15%, transparent 15%); } .bg-holiday-newyear { background: linear-gradient(45deg, #1e40af 0%, #1d4ed8 25%, #2563eb 50%, #3b82f6 75%, #60a5fa 100%); background-size: 400% 400%; animation: newyearFireworks 10s ease infinite; } @keyframes newyearFireworks { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; filter: brightness(1.2); } } /* ============================================ MODERN/PROFESSIONAL BACKGROUNDS ============================================ */ .bg-modern-minimal, .bg-modern-tech, .bg-modern-gradient, .bg-modern-dark, .bg-professional-blue, .bg-professional-gray, .bg-corporate { background-size: cover; background-attachment: fixed; position: relative; transition: all 0.3s ease; } .bg-modern-minimal { background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05); } .bg-modern-tech { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%), repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(59, 130, 246, 0.1) 2px, rgba(59, 130, 246, 0.1) 4px); } .bg-modern-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); position: relative; } .bg-modern-gradient::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); animation: modernShine 3s infinite; } .bg-modern-dark { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5), 0 20px 80px rgba(0, 0, 0, 0.3); } .bg-professional-blue { background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%); position: relative; } .bg-professional-blue::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px); } .bg-professional-gray { background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #9ca3af 100%); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.1) 75%); background-size: 40px 40px; } .bg-corporate { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 33%, #1d4ed8 66%, #2563eb 100%); box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.2), 0 10px 50px rgba(30, 64, 175, 0.3); } /* ============================================ FUN/CREATIVE BACKGROUNDS ============================================ */ .bg-fun-rainbow, .bg-fun-confetti, .bg-fun-balloons, .bg-fun-party, .bg-creative-paint, .bg-creative-watercolor, .bg-creative-splatter { background-size: cover; position: relative; transition: all 0.5s ease; } .bg-fun-rainbow { background: linear-gradient(45deg, #ef4444 0% 14.28%, #f59e0b 14.28% 28.56%, #fbbf24 28.56% 42.84%, #22c55e 42.84% 57.12%, #3b82f6 57.12% 71.4%, #8b5cf6 71.4% 85.68%, #ec4899 85.68% 100%); background-size: 200% 200%; animation: rainbowMove 10s ease infinite; } @keyframes rainbowMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .bg-fun-confetti { background-color: #f0f9ff; background-image: radial-gradient(circle at 10% 20%, #ef4444 3%, transparent 3%), radial-gradient(circle at 30% 40%, #f59e0b 4%, transparent 4%), radial-gradient(circle at 50% 60%, #22c55e 5%, transparent 5%), radial-gradient(circle at 70% 80%, #3b82f6 6%, transparent 6%), radial-gradient(circle at 90% 10%, #8b5cf6 4%, transparent 4%); background-size: 150px 150px; animation: confettiFloat 20s linear infinite; } .bg-fun-balloons { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%), radial-gradient(circle at 20% 30%, #ef4444 8%, transparent 8%), radial-gradient(circle at 40% 60%, #3b82f6 10%, transparent 10%), radial-gradient(circle at 60% 40%, #22c55e 9%, transparent 9%), radial-gradient(circle at 80% 70%, #f59e0b 12%, transparent 12%); } .bg-fun-party { background: linear-gradient(45deg, #ec4899 0%, #8b5cf6 25%, #3b82f6 50%, #10b981 75%, #f59e0b 100%); background-size: 400% 400%; animation: partyDance 5s ease infinite; } .bg-creative-paint { background: radial-gradient(circle at 20% 80%, #ef4444 0%, transparent 40%), radial-gradient(circle at 80% 20%, #3b82f6 0%, transparent 40%), radial-gradient(circle at 40% 40%, #22c55e 0%, transparent 40%), linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(59, 130, 246, 0.3), rgba(34, 197, 94, 0.3)); filter: blur(20px); } .bg-creative-watercolor { background: radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.4) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.4) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.4) 0%, transparent 50%); background-blend-mode: multiply; } .bg-creative-splatter { background-color: #ffffff; background-image: radial-gradient(circle at 20% 80%, #ef4444 5%, transparent 5%), radial-gradient(circle at 40% 20%, #3b82f6 8%, transparent 8%), radial-gradient(circle at 60% 60%, #22c55e 6%, transparent 6%), radial-gradient(circle at 80% 40%, #f59e0b 10%, transparent 10%); background-size: 200px 200px; } /* ============================================ TEXTURE BACKGROUNDS ============================================ */ .bg-texture-paper, .bg-texture-wood, .bg-texture-marble, .bg-texture-fabric, .bg-texture-metal, .bg-texture-concrete, .bg-texture-sand, .bg-texture-noise { background-size: cover; background-attachment: fixed; position: relative; transition: all 0.3s ease; } .bg-texture-paper { background-color: #fefce8; background-image: repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(120, 113, 108, 0.1) 25px, rgba(120, 113, 108, 0.1) 26px); } .bg-texture-wood { background: linear-gradient(45deg, #78350f 0%, #92400e 25%, #b45309 50%, #d97706 75%, #f59e0b 100%); background-image: linear-gradient(90deg, rgba(120, 53, 15, 0.3) 1px, transparent 1px), linear-gradient(0deg, rgba(120, 53, 15, 0.3) 1px, transparent 1px); background-size: 20px 20px; } .bg-texture-marble { background: linear-gradient(45deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%); position: relative; } .bg-texture-marble::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 30%, rgba(148, 163, 184, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(148, 163, 184, 0.2) 0%, transparent 50%); filter: blur(10px); } .bg-texture-fabric { background: linear-gradient(45deg, #6366f1 0%, #8b5cf6 100%); background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.1) 4px), repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 4px); } .bg-texture-metal { background: linear-gradient(135deg, #94a3b8 0%, #64748b 50%, #475569 100%); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%); background-size: 40px 40px; } .bg-texture-concrete { background: linear-gradient(45deg, #9ca3af 0%, #6b7280 100%); background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23475569' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E"); } .bg-texture-sand { background: linear-gradient(45deg, #d97706 0%, #fbbf24 100%); background-image: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.3) 2%, transparent 2%), radial-gradient(circle at 70% 70%, rgba(251, 191, 36, 0.3) 3%, transparent 3%); background-size: 100px 100px; } .bg-texture-noise { background-color: #1e293b; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); } /* ============================================ UTILITY CLASSES FOR BETTER VISIBILITY ============================================ */ .bg-overlay { position: relative; } .bg-overlay::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); z-index: 1; } .bg-overlay-light::before { background: rgba(255, 255, 255, 0.3); } .bg-content { position: relative; z-index: 2; } /* ============================================ RESPONSIVE ADJUSTMENTS ============================================ */ @media (max-width: 768px) { .bg-gradient-blue, .bg-gradient-purple, .bg-gradient-sunset, .bg-gradient-ocean, .bg-gradient-forest, .bg-gradient-pink, .bg-gradient-teal, .bg-gradient-orange, .bg-gradient-red, .bg-gradient-gold, .bg-gradient-space, .bg-gradient-aurora, .bg-gradient-cotton-candy, .bg-gradient-sunrise { background-attachment: scroll; } .bg-pattern-dots, .bg-pattern-lines, .bg-pattern-grid, .bg-pattern-hexagon, .bg-pattern-diamond, .bg-pattern-zigzag, .bg-pattern-waves, .bg-pattern-confetti, .bg-pattern-bubbles, .bg-pattern-stars, .bg-pattern-triangles { background-size: 30px 30px; } } /* ============================================ PERFORMANCE OPTIMIZATION ============================================ */ @media (prefers-reduced-motion: reduce) { .bg-gradient-blue, .bg-gradient-purple, .bg-gradient-sunset, .bg-gradient-ocean, .bg-gradient-forest, .bg-gradient-pink, .bg-gradient-teal, .bg-gradient-orange, .bg-gradient-red, .bg-gradient-gold, .bg-gradient-space, .bg-gradient-aurora, .bg-gradient-cotton-candy, .bg-gradient-sunrise, .bg-abstract-1, .bg-abstract-2, .bg-abstract-3, .bg-abstract-4, .bg-abstract-5, .bg-abstract-liquid, .bg-abstract-blob, .bg-abstract-mesh, .bg-abstract-fluid, .bg-abstract-neon, .bg-nature-1, .bg-nature-2, .bg-nature-3, .bg-nature-4, .bg-nature-5, .bg-nature-6, .bg-nature-7, .bg-nature-8, .bg-nature-9, .bg-nature-10, .bg-nature-galaxy, .bg-nature-ocean, .bg-nature-sakura, .bg-geometric, .bg-geometric-2, .bg-geometric-3, .bg-geometric-4, .bg-geometric-circles, .bg-geometric-squares, .bg-geometric-triangles, .bg-geometric-lines, .bg-geometric-waves, .bg-geometric-spiral, .bg-season-summer, .bg-season-winter, .bg-season-spring, .bg-season-autumn, .bg-holiday-christmas, .bg-holiday-halloween, .bg-holiday-valentine, .bg-holiday-newyear, .bg-modern-minimal, .bg-modern-tech, .bg-modern-gradient, .bg-modern-dark, .bg-professional-blue, .bg-professional-gray, .bg-corporate, .bg-fun-rainbow, .bg-fun-confetti, .bg-fun-balloons, .bg-fun-party, .bg-creative-paint, .bg-creative-watercolor, .bg-creative-splatter, .bg-texture-paper, .bg-texture-wood, .bg-texture-marble, .bg-texture-fabric, .bg-texture-metal, .bg-texture-concrete, .bg-texture-sand, .bg-texture-noise { animation: none !important; transition: none !important; } } /* ============================================ PRINT STYLES ============================================ */ @media print { .bg-gradient-blue, .bg-gradient-purple, .bg-gradient-sunset, .bg-gradient-ocean, .bg-gradient-forest, .bg-gradient-pink, .bg-gradient-teal, .bg-gradient-orange, .bg-gradient-red, .bg-gradient-gold, .bg-gradient-space, .bg-gradient-aurora, .bg-gradient-cotton-candy, .bg-gradient-sunrise, .bg-pattern-dots, .bg-pattern-lines, .bg-pattern-grid, .bg-pattern-hexagon, .bg-pattern-diamond, .bg-pattern-zigzag, .bg-pattern-waves, .bg-pattern-confetti, .bg-pattern-bubbles, .bg-pattern-stars, .bg-pattern-triangles, .bg-solid-light, .bg-solid-dark, .bg-solid-blue, .bg-solid-green, .bg-solid-red, .bg-solid-yellow, .bg-solid-purple, .bg-solid-pink, .bg-solid-teal, .bg-solid-gray, .bg-abstract-1, .bg-abstract-2, .bg-abstract-3, .bg-abstract-4, .bg-abstract-5, .bg-abstract-liquid, .bg-abstract-blob, .bg-abstract-mesh, .bg-abstract-fluid, .bg-abstract-neon, .bg-nature-1, .bg-nature-2, .bg-nature-3, .bg-nature-4, .bg-nature-5, .bg-nature-6, .bg-nature-7, .bg-nature-8, .bg-nature-9, .bg-nature-10, .bg-nature-galaxy, .bg-nature-ocean, .bg-nature-sakura, .bg-geometric, .bg-geometric-2, .bg-geometric-3, .bg-geometric-4, .bg-geometric-circles, .bg-geometric-squares, .bg-geometric-triangles, .bg-geometric-lines, .bg-geometric-waves, .bg-geometric-spiral, .bg-season-summer, .bg-season-winter, .bg-season-spring, .bg-season-autumn, .bg-holiday-christmas, .bg-holiday-halloween, .bg-holiday-valentine, .bg-holiday-newyear, .bg-modern-minimal, .bg-modern-tech, .bg-modern-gradient, .bg-modern-dark, .bg-professional-blue, .bg-professional-gray, .bg-corporate, .bg-fun-rainbow, .bg-fun-confetti, .bg-fun-balloons, .bg-fun-party, .bg-creative-paint, .bg-creative-watercolor, .bg-creative-splatter, .bg-texture-paper, .bg-texture-wood, .bg-texture-marble, .bg-texture-fabric, .bg-texture-metal, .bg-texture-concrete, .bg-texture-sand, .bg-texture-noise { background: white !important; color: black !important; } }
/* Additional utility classes */
.bg-white { background: white !important; }
.bg-transparent { background: transparent !important; }
/* ============================================ TEXT COLORS - DARK TEXT FOR LIGHT BACKGROUNDS ============================================ */
/* Background terang - teks gelap untuk kontras tinggi */
.bg-default .text-white,
.bg-gradient-blue .text-white,
.bg-gradient-purple .text-white,
.bg-gradient-sunset .text-white,
.bg-gradient-ocean .text-white,
.bg-gradient-forest .text-white,
.bg-gradient-pink .text-white,
.bg-gradient-teal .text-white,
.bg-gradient-orange .text-white,
.bg-gradient-red .text-white,
.bg-gradient-gold .text-white,
.bg-gradient-space .text-white,
.bg-gradient-aurora .text-white,
.bg-gradient-cotton-candy .text-white,
.bg-gradient-sunrise .text-white,
.bg-solid-light .text-white,
.bg-pattern-dots .text-white,
.bg-pattern-lines .text-white,
.bg-pattern-grid .text-white,
.bg-pattern-hexagon .text-white,
.bg-pattern-diamond .text-white,
.bg-pattern-zigzag .text-white,
.bg-pattern-waves .text-white,
.bg-pattern-confetti .text-white,
.bg-pattern-bubbles .text-white,
.bg-pattern-triangles .text-white,
.bg-solid-blue .text-white,
.bg-solid-green .text-white,
.bg-solid-red .text-white,
.bg-solid-yellow .text-white,
.bg-solid-purple .text-white,
.bg-solid-pink .text-white,
.bg-solid-teal .text-white,
.bg-solid-gray .text-white,
.bg-abstract-1 .text-white,
.bg-abstract-2 .text-white,
.bg-abstract-3 .text-white,
.bg-abstract-4 .text-white,
.bg-abstract-5 .text-white,
.bg-abstract-liquid .text-white,
.bg-abstract-blob .text-white,
.bg-abstract-mesh .text-white,
.bg-abstract-fluid .text-white,
.bg-abstract-neon .text-white,
.bg-nature-1 .text-white,
.bg-nature-2 .text-white,
.bg-nature-3 .text-white,
.bg-nature-4 .text-white,
.bg-nature-5 .text-white,
.bg-nature-6 .text-white,
.bg-nature-7 .text-white,
.bg-nature-8 .text-white,
.bg-nature-9 .text-white,
.bg-nature-10 .text-white,
.bg-nature-sakura .text-white,
.bg-geometric .text-white,
.bg-geometric-2 .text-white,
.bg-geometric-3 .text-white,
.bg-geometric-4 .text-white,
.bg-geometric-circles .text-white,
.bg-geometric-squares .text-white,
.bg-geometric-triangles .text-white,
.bg-geometric-lines .text-white,
.bg-geometric-waves .text-white,
.bg-geometric-spiral .text-white,
.bg-season-summer .text-white,
.bg-season-spring .text-white,
.bg-holiday-christmas .text-white,
.bg-holiday-valentine .text-white,
.bg-modern-minimal .text-white,
.bg-modern-gradient .text-white,
.bg-professional-blue .text-white,
.bg-professional-gray .text-white,
.bg-corporate .text-white,
.bg-fun-rainbow .text-white,
.bg-fun-confetti .text-white,
.bg-fun-balloons .text-white,
.bg-fun-party .text-white,
.bg-creative-paint .text-white,
.bg-creative-watercolor .text-white,
.bg-creative-splatter .text-white,
.bg-texture-paper .text-white,
.bg-texture-marble .text-white,
.bg-texture-fabric .text-white,
.bg-texture-sand .text-white { color: #1a1a1a !important; text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5) !important;
}
/* ============================================ TEXT COLORS - LIGHT TEXT FOR DARK BACKGROUNDS ============================================ */
/* Background gelap - teks putih untuk kontras tinggi */
.bg-solid-dark .text-white,
.bg-pattern-stars .text-white,
.bg-nature-galaxy .text-white,
.bg-nature-ocean .text-white,
.bg-modern-tech .text-white,
.bg-modern-dark .text-white,
.bg-texture-wood .text-white,
.bg-texture-metal .text-white,
.bg-texture-concrete .text-white,
.bg-texture-noise .text-white,
.bg-season-winter .text-white,
.bg-season-autumn .text-white,
.bg-holiday-halloween .text-white,
.bg-holiday-newyear .text-white,
.bg-abstract-mesh .text-white,
.bg-abstract-neon .text-white { color: #ffffff !important; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.5) !important;
}
/* ============================================ TEXT COLORS - SPECIAL CASES ============================================ */
/* Background dengan warna tertentu memerlukan penyesuaian khusus */
/* Background merah dan oranye gelap */
.bg-gradient-red .text-white,
.bg-solid-red .text-white,
.bg-gradient-orange .text-white { color: #fff !important; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}
/* Background gold dengan kontras tinggi */
.bg-gradient-gold .text-white { color: #000 !important; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(255, 255, 255, 0.6) !important;
}
/* Background space/galaxy dengan efek glow */
.bg-gradient-space .text-white,
.bg-nature-galaxy .text-white { color: #ffffff !important; text-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 20px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.4) !important;
}
/* Background neon dengan efek neon text */
.bg-abstract-neon .text-white { color: #ffffff !important; text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff !important;
}
/* Background aurora dengan efek soft glow */
.bg-gradient-aurora .text-white { color: #ffffff !important; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.2) !important;
}
/* Background cotton candy dengan teks lembut */
.bg-gradient-cotton-candy .text-white { color: #5a189a !important; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}
/* Background sunset dengan teks kontras */
.bg-gradient-sunset .text-white { color: #2d3748 !important; text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6) !important;
}
/* ============================================ LINK COLORS ADJUSTMENT ============================================ */
/* Link colors untuk background terang */
.bg-solid-light a,
.bg-pattern-dots a,
.bg-pattern-lines a,
.bg-pattern-grid a,
.bg-pattern-hexagon a,
.bg-pattern-diamond a,
.bg-pattern-zigzag a,
.bg-pattern-waves a,
.bg-pattern-confetti a,
.bg-pattern-bubbles a,
.bg-pattern-triangles a,
.bg-texture-paper a,
.bg-texture-marble a,
.bg-texture-fabric a,
.bg-modern-minimal a { color: #2563eb !important; text-decoration: underline;
}
.bg-solid-light a:hover,
.bg-pattern-dots a:hover,
.bg-pattern-lines a:hover,
.bg-pattern-grid a:hover,
.bg-pattern-hexagon a:hover,
.bg-pattern-diamond a:hover,
.bg-pattern-zigzag a:hover,
.bg-pattern-waves a:hover,
.bg-pattern-confetti a:hover,
.bg-pattern-bubbles a:hover,
.bg-pattern-triangles a:hover,
.bg-texture-paper a:hover,
.bg-texture-marble a:hover,
.bg-texture-fabric a:hover,
.bg-modern-minimal a:hover { color: #1d4ed8 !important; text-decoration: none;
}
/* Link colors untuk background gelap */
.bg-solid-dark a,
.bg-pattern-stars a,
.bg-nature-galaxy a,
.bg-modern-tech a,
.bg-modern-dark a,
.bg-texture-wood a,
.bg-texture-metal a,
.bg-texture-concrete a,
.bg-holiday-halloween a,
.bg-holiday-newyear a { color: #60a5fa !important; text-decoration: underline; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}
.bg-solid-dark a:hover,
.bg-pattern-stars a:hover,
.bg-nature-galaxy a:hover,
.bg-modern-tech a:hover,
.bg-modern-dark a:hover,
.bg-texture-wood a:hover,
.bg-texture-metal a:hover,
.bg-texture-concrete a:hover,
.bg-holiday-halloween a:hover,
.bg-holiday-newyear a:hover { color: #93c5fd !important; text-decoration: none;
}
/* ============================================ HEADING COLORS ADJUSTMENT ============================================ */
/* Heading colors untuk background terang */
.bg-solid-light h1,
.bg-solid-light h2,
.bg-solid-light h3,
.bg-solid-light h4,
.bg-solid-light h5,
.bg-solid-light h6,
.bg-pattern-dots h1,
.bg-pattern-dots h2,
.bg-pattern-dots h3,
.bg-pattern-dots h4,
.bg-pattern-dots h5,
.bg-pattern-dots h6,
.bg-modern-minimal h1,
.bg-modern-minimal h2,
.bg-modern-minimal h3,
.bg-modern-minimal h4,
.bg-modern-minimal h5,
.bg-modern-minimal h6 { color: #1e293b !important; text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5) !important;
}
/* Heading colors untuk background gelap */
.bg-solid-dark h1,
.bg-solid-dark h2,
.bg-solid-dark h3,
.bg-solid-dark h4,
.bg-solid-dark h5,
.bg-solid-dark h6,
.bg-modern-dark h1,
.bg-modern-dark h2,
.bg-modern-dark h3,
.bg-modern-dark h4,
.bg-modern-dark h5,
.bg-modern-dark h6,
.bg-nature-galaxy h1,
.bg-nature-galaxy h2,
.bg-nature-galaxy h3,
.bg-nature-galaxy h4,
.bg-nature-galaxy h5,
.bg-nature-galaxy h6 { color: #f8fafc !important; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}
/* ============================================ BUTTON COLORS ADJUSTMENT ============================================ */
/* Button colors untuk background terang */
.bg-solid-light .btn-primary,
.bg-pattern-dots .btn-primary,
.bg-pattern-lines .btn-primary,
.bg-modern-minimal .btn-primary { background-color: #2563eb !important; color: white !important; border-color: #1d4ed8 !important; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
.bg-solid-light .btn-primary:hover,
.bg-pattern-dots .btn-primary:hover,
.bg-pattern-lines .btn-primary:hover,
.bg-modern-minimal .btn-primary:hover { background-color: #1d4ed8 !important; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}
/* Button colors untuk background gelap */
.bg-solid-dark .btn-primary,
.bg-modern-dark .btn-primary,
.bg-nature-galaxy .btn-primary { background-color: #3b82f6 !important; color: white !important; border-color: #2563eb !important; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}
.bg-solid-dark .btn-primary:hover,
.bg-modern-dark .btn-primary:hover,
.bg-nature-galaxy .btn-primary:hover { background-color: #2563eb !important; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}
/* ============================================ FORM ELEMENTS COLORS ============================================ */
/* Form elements untuk background terang */
.bg-solid-light input,
.bg-solid-light textarea,
.bg-solid-light select,
.bg-pattern-dots input,
.bg-pattern-dots textarea,
.bg-pattern-dots select,
.bg-modern-minimal input,
.bg-modern-minimal textarea,
.bg-modern-minimal select { background-color: rgba(255, 255, 255, 0.9) !important; color: #1a1a1a !important; border-color: #cbd5e1 !important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}
.bg-solid-light input:focus,
.bg-solid-light textarea:focus,
.bg-solid-light select:focus,
.bg-pattern-dots input:focus,
.bg-pattern-dots textarea:focus,
.bg-pattern-dots select:focus,
.bg-modern-minimal input:focus,
.bg-modern-minimal textarea:focus,
.bg-modern-minimal select:focus { border-color: #3b82f6 !important; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
/* Form elements untuk background gelap */
.bg-solid-dark input,
.bg-solid-dark textarea,
.bg-solid-dark select,
.bg-modern-dark input,
.bg-modern-dark textarea,
.bg-modern-dark select { background-color: rgba(255, 255, 255, 0.1) !important; color: #ffffff !important; border-color: #475569 !important; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}
.bg-solid-dark input:focus,
.bg-solid-dark textarea:focus,
.bg-solid-dark select:focus,
.bg-modern-dark input:focus,
.bg-modern-dark textarea:focus,
.bg-modern-dark select:focus { border-color: #60a5fa !important; box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2) !important;
}
/* ============================================ ACCESSIBILITY ENHANCEMENTS ============================================ */
/* High contrast mode support */
@media (prefers-contrast: high) { /* Untuk background terang */ .bg-solid-light .text-white, .bg-pattern-dots .text-white, .bg-modern-minimal .text-white { color: #000000 !important; text-shadow: none !important; } /* Untuk background gelap */ .bg-solid-dark .text-white, .bg-modern-dark .text-white, .bg-nature-galaxy .text-white { color: #ffffff !important; text-shadow: none !important; } /* Border untuk meningkatkan visibility */ .bg-solid-light, .bg-solid-dark, .bg-modern-minimal, .bg-modern-dark { border: 1px solid currentColor !important; }
}
/* Reduced motion mode */
@media (prefers-reduced-motion: reduce) { .bg-gradient-space .text-white, .bg-nature-galaxy .text-white, .bg-abstract-neon .text-white, .bg-gradient-aurora .text-white { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important; animation: none !important; }
}
/* ============================================ PRINT OPTIMIZATION ============================================ */
@media print { /* Untuk background terang - teks hitam solid */ .bg-solid-light .text-white, .bg-pattern-dots .text-white, .bg-modern-minimal .text-white { color: #000000 !important; text-shadow: none !important; } /* Untuk background gelap - teks hitam dengan outline */ .bg-solid-dark .text-white, .bg-modern-dark .text-white { color: #000000 !important; -webkit-text-stroke: 0.5px #ffffff !important; text-shadow: none !important; } /* Nonaktifkan semua efek khusus */ .bg-gradient-space .text-white, .bg-nature-galaxy .text-white, .bg-abstract-neon .text-white, .bg-gradient-aurora .text-white { color: #000000 !important; text-shadow: none !important; -webkit-text-stroke: 0 !important; }
} /* Text color classes */ .text-white { color: white !important; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); } .text-dark { color: #333 !important; text-shadow: none !important; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .profile-pic { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 5px solid var(--primary-color); margin-bottom: 20px; transition: transform 0.3s; } .profile-pic:hover { transform: scale(1.05); } .profile-name { font-size: 28px; font-weight: 700; margin-bottom: 5px; } .profile-username { font-size: 18px; margin-bottom: 20px; } .profile-bio { line-height: 1.6; margin-bottom: 30px; font-size: 16px; } /* Social Links */ .social-links { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; z-index: 4; position: relative; } .social-link { width: 45px; height: 45px; border-radius: 50%; background: var(--primary-color); color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 20px; transition: all 0.3s; } .social-link:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Custom Links */ .links-container { display: flex; flex-direction: column; gap: 15px; } .link-item { display: flex; align-items: center; background: white; padding: 20px; border-radius: 15px; text-decoration: none; color: #333; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s; border-left: 5px solid var(--primary-color); } .link-item:hover { transform: translateX(10px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); } .link-icon { width: 50px; height: 50px; border-radius: 10px; background: linear-gradient(135deg, var(--primary-light), var(--primary-color)); color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-right: 20px; flex-shrink: 0; } .link-content { flex: 1; text-align: left; } .link-title { font-weight: 600; font-size: 18px; margin-bottom: 5px; } .link-description { color: #666; font-size: 14px; } .link-arrow { color: var(--primary-color); font-size: 20px; margin-left: 10px; } /* Category Badge */ .category-badge { display: inline-block; background: var(--primary-light); color: var(--primary-color); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-top: 5px; } /* Footer */ .profile-footer { text-align: center; margin-top: 30px; padding: 20px; } .profile-footer p { margin-bottom: 10px; } .profile-footer a { color: var(--primary-color); text-decoration: none; } .profile-footer a:hover { text-decoration: underline; } /* Button edit profile */ .edit-profile-btn { display: inline-block; background: white; color: var(--primary-color); padding: 10px 20px; border-radius: 25px; text-decoration: none; font-weight: 600; margin-top: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); transition: all 0.3s; } .edit-profile-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Responsive */ @media (max-width: 480px) { body { padding: 10px; } .profile-card { padding: 20px; } .profile-pic { width: 100px; height: 100px; } .link-item { text-align: center; padding: 15px; } .link-icon { margin-right: 0; } .link-content { text-align: center; } }
/* ======================== ARTICLES SECTION STYLES ======================== */
.articles-section { margin: 30px 0; padding: 20px; border-radius: 15px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
}
.section-title { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: inherit;
}
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.article-card { background: rgba(255, 255, 255, 0.15); border-radius: 12px; padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.1);
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); background: rgba(255, 255, 255, 0.2);
}
.article-header { margin-bottom: 15px;
}
.article-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: inherit; line-height: 1.4;
}
.article-meta { display: flex; gap: 15px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8);
}
.article-content-preview { font-size: 0.95rem; line-height: 1.5; color: rgba(255, 255, 255, 0.9); margin-bottom: 15px;
}
.article-footer { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 15px;
}
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--primary-color); font-weight: 500;
}
.view-more-card { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.08); cursor: pointer;
}
.view-more-content { text-align: center; color: rgba(255, 255, 255, 0.7);
}
.view-more-content i { margin-bottom: 10px; color: var(--primary-color);
}
/* ======================== CAROUSEL SECTION STYLES ======================== */
.carousel-section { margin: 30px 0; padding: 20px; border-radius: 15px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
}
.carousel-container { position: relative; border-radius: 12px; overflow: hidden;
}
.carousel-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; /* Firefox */
}
.carousel-slider::-webkit-scrollbar { display: none; /* Chrome, Safari, Opera */
}
.carousel-slide { flex: 0 0 100%; scroll-snap-align: start; position: relative;
}
.carousel-image { width: 100%; height: 300px; object-fit: cover; display: block;
}
.carousel-image-link { display: block; position: relative;
}
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; padding: 15px 20px; font-size: 0.9rem;
}
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.3s ease;
}
.carousel-nav:hover { background: rgba(0, 0, 0, 0.8);
}
.carousel-nav.prev { left: 15px;
}
.carousel-nav.next { right: 15px;
}
.carousel-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 10;
}
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active { background: var(--primary-color); transform: scale(1.2);
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.8);
}
/* ======================== RESPONSIVE STYLES ======================== */
@media (max-width: 768px) { .articles-grid { grid-template-columns: 1fr; } .article-card { padding: 15px; } .carousel-image { height: 250px; } .carousel-nav { width: 35px; height: 35px; } .carousel-caption { padding: 10px 15px; font-size: 0.85rem; }
}
@media (max-width: 480px) { .articles-section, .carousel-section { margin: 20px 0; padding: 15px; } .carousel-image { height: 200px; } .carousel-nav { width: 30px; height: 30px; } .carousel-nav.prev { left: 10px; } .carousel-nav.next { right: 10px; }
}
