Changed around line 1
+ :root {
+ --primary: #2C3E50;
+ --accent: #E74C3C;
+ --text: #ECF0F1;
+ --gradient: linear-gradient(135deg, #2C3E50, #3498DB);
+ }
+
+ body {
+ background: var(--gradient);
+ color: var(--text);
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ }
+
+ .slide {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--text), #3498DB);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-image {
+ width: 200px;
+ height: 200px;
+ background: radial-gradient(circle at center, #E74C3C 0%, transparent 70%);
+ animation: pulse 2s infinite;
+ }
+
+ .split-slide {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ width: 100%;
+ }
+
+ .membrane-animation {
+ background: repeating-linear-gradient(45deg, #E74C3C, #E74C3C 10px, #C0392B 10px, #C0392B 20px);
+ border-radius: 50%;
+ animation: rotate 20s linear infinite;
+ }
+
+ .power-stats {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ .stat {
+ text-align: center;
+ }
+
+ .number {
+ font-size: 3rem;
+ font-weight: bold;
+ color: var(--accent);
+ }
+
+ .fun-fact {
+ position: relative;
+ padding: 2rem;
+ border-radius: 1rem;
+ background: rgba(255,255,255,0.1);
+ backdrop-filter: blur(10px);
+ }
+
+ .pulse-circle {
+ width: 20px;
+ height: 20px;
+ background: var(--accent);
+ border-radius: 50%;
+ margin: 0 auto 1rem;
+ animation: pulse 2s infinite;
+ }
+
+ .process-grid {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 1rem;
+ max-width: 600px;
+ }
+
+ .step {
+ background: rgba(255,255,255,0.1);
+ padding: 1rem;
+ border-radius: 0.5rem;
+ transition: transform 0.3s;
+ }
+
+ .step:hover {
+ transform: scale(1.05);
+ }
+
+ .glow {
+ text-shadow: 0 0 10px var(--accent);
+ animation: glow 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.1); }
+ 100% { transform: scale(1); }
+ }
+
+ @keyframes rotate {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+ }
+
+ @keyframes glow {
+ 0% { text-shadow: 0 0 10px var(--accent); }
+ 50% { text-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent); }
+ 100% { text-shadow: 0 0 10px var(--accent); }
+ }
+
+ @media (max-width: 768px) {
+ .split-slide {
+ grid-template-columns: 1fr;
+ }
+
+ .power-stats {
+ flex-direction: column;
+ }
+
+ .process-grid {
+ grid-template-columns: 1fr;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+ }