Changed around line 1
+ :root {
+ --primary: #2C3E50;
+ --accent: #3498DB;
+ --text: #2C3E50;
+ --light: #ECF0F1;
+ --dark: #2C3E50;
+ --gradient: linear-gradient(135deg, #3498db, #2ecc71);
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ width: 100vw;
+ height: 100vh;
+ overflow: hidden;
+ }
+
+ .slideshowNav {
+ position: fixed;
+ bottom: 20px;
+ left: 0;
+ right: 0;
+ z-index: 100;
+ }
+
+ div[data-scroll-slide] {
+ height: 100vh;
+ width: 100vw;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ box-sizing: border-box;
+ }
+
+ .title-slide {
+ text-align: center;
+ background: var(--gradient);
+ color: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ }
+
+ .title-slide h1 {
+ font-size: 4rem;
+ margin: 0;
+ font-weight: 800;
+ }
+
+ .title-slide h2 {
+ font-size: 1.5rem;
+ opacity: 0.9;
+ margin: 1rem 0;
+ }
+
+ .presenter {
+ font-size: 1.2rem;
+ opacity: 0.8;
+ }
+
+ .content-slide {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .content-slide h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 2rem;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .vision-grid, .challenge-container, .setup-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .vision-item, .challenge-item, .setup-item {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .vision-item:hover, .challenge-item:hover, .setup-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .timeline {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin: 4rem 0;
+ position: relative;
+ }
+
+ .timeline::before {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ background: var(--gradient);
+ top: 50%;
+ }
+
+ .timeline-item {
+ background: white;
+ padding: 1rem;
+ border-radius: 0.5rem;
+ text-align: center;
+ z-index: 1;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ .date {
+ font-weight: bold;
+ color: var(--accent);
+ }
+
+ .cta {
+ text-align: center;
+ }
+
+ .button {
+ display: inline-block;
+ padding: 0.8rem 1.5rem;
+ background: var(--gradient);
+ color: white;
+ border-radius: 2rem;
+ margin: 0.5rem;
+ transition: transform 0.3s ease;
+ }
+
+ .button:hover {
+ transform: translateY(-2px);
+ }
+
+ @media (max-width: 768px) {
+ .title-slide h1 {
+ font-size: 2.5rem;
+ }
+
+ .title-slide h2 {
+ font-size: 1.2rem;
+ }
+
+ .vision-grid, .challenge-container, .setup-container {
+ grid-template-columns: 1fr;
+ }
+
+ .timeline {
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .timeline::before {
+ height: 100%;
+ width: 2px;
+ left: 50%;
+ top: 0;
+ }
+ }