Changed around line 1
+ :root {
+ --primary: #FF6B6B;
+ --secondary: #4ECDC4;
+ --dark: #2C3E50;
+ --light: #F7F7F7;
+ --accent: #FFE66D;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ overflow-x: hidden;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 800;
+ color: var(--primary);
+ }
+
+ .logo span {
+ color: var(--secondary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--dark);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ #hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 2;
+ }
+
+ .hero-content h1 {
+ font-size: 5rem;
+ line-height: 1;
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .hero-content h1 span {
+ color: var(--secondary);
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ color: var(--dark);
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border: none;
+ border-radius: 50px;
+ background: var(--primary);
+ color: white;
+ cursor: pointer;
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ /* Floating Shapes Animation */
+ .floating-shapes {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ }
+
+ .floating-shapes::before,
+ .floating-shapes::after {
+ content: '';
+ position: absolute;
+ width: 300px;
+ height: 300px;
+ border-radius: 50%;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ filter: blur(50px);
+ opacity: 0.3;
+ animation: float 20s infinite linear;
+ }
+
+ .floating-shapes::before {
+ top: -150px;
+ left: -150px;
+ }
+
+ .floating-shapes::after {
+ bottom: -150px;
+ right: -150px;
+ animation-delay: -10s;
+ }
+
+ @keyframes float {
+ 0% { transform: translate(0, 0) rotate(0deg); }
+ 100% { transform: translate(100px, 100px) rotate(360deg); }
+ }
+
+ /* About Section */
+ #about {
+ padding: 5rem 5%;
+ background: var(--light);
+ }
+
+ .about-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .about-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .about-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Soundboard Section */
+ #soundboard {
+ padding: 5rem 5%;
+ background: white;
+ }
+
+ .sound-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-top: 3rem;
+ }
+
+ .sound-button {
+ padding: 2rem;
+ border: none;
+ border-radius: 10px;
+ background: var(--secondary);
+ color: white;
+ font-size: 1.2rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .sound-button:hover {
+ transform: scale(1.05);
+ background: var(--primary);
+ }
+
+ /* Contact Section */
+ #contact {
+ padding: 5rem 5%;
+ background: var(--light);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 3rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ #contact-form input,
+ #contact-form textarea {
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 8px;
+ font-size: 1rem;
+ transition: border-color 0.3s ease;
+ }
+
+ #contact-form input:focus,
+ #contact-form textarea:focus {
+ border-color: var(--secondary);
+ outline: none;
+ }
+
+ /* Footer */
+ footer {
+ padding: 2rem 5%;
+ background: var(--dark);
+ color: white;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ /* Mobile Responsive */
+ .mobile-menu {
+ display: none;
+ flex-direction: column;
+ gap: 4px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 5px;
+ }
+
+ .mobile-menu span {
+ width: 25px;
+ height: 3px;
+ background: var(--dark);
+ transition: all 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+ }