Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
+ }
+
+ .scroll-indicator {
+ position: absolute;
+ bottom: 2rem;
+ color: white;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ animation: bounce 2s infinite;
+ }
+
+ .arrow {
+ width: 20px;
+ height: 20px;
+ border-right: 2px solid white;
+ border-bottom: 2px solid white;
+ transform: rotate(45deg);
+ margin-top: 1rem;
+ }
+
+ .panel {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ opacity: 0;
+ transform: translateY(50px);
+ transition: all 0.8s ease-out;
+ }
+
+ .panel.visible {
+ opacity: 1;
+ transform: translateY(0);
+ }
+
+ .one {
+ background: linear-gradient(45deg, #ff6b6b, #feca57);
+ }
+
+ .two {
+ background: linear-gradient(45deg, #48dbfb, #1dd1a1);
+ }
+
+ .three {
+ background: linear-gradient(45deg, #5f27cd, #341f97);
+ }
+
+ .four {
+ background: linear-gradient(45deg, #ee5253, #ff9f43);
+ }
+
+ h1, h2 {
+ font-size: clamp(2rem, 8vw, 4rem);
+ margin-bottom: 1rem;
+ color: white;
+ }
+
+ p {
+ font-size: clamp(1rem, 4vw, 1.5rem);
+ color: rgba(255, 255, 255, 0.9);
+ max-width: 600px;
+ }
+
+ footer {
+ background: #1a1a1a;
+ padding: 2rem;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ footer a:hover {
+ color: #ff6b6b;
+ }
+
+ @keyframes bounce {
+ 0%, 20%, 50%, 80%, 100% {
+ transform: translateY(0);
+ }
+ 40% {
+ transform: translateY(-20px);
+ }
+ 60% {
+ transform: translateY(-10px);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .panel {
+ padding: 1rem;
+ }
+ }