Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --dark-color: #2c3e50;
+ --light-color: #f7f9fc;
+ --font-main: 'Segoe UI', system-ui, sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-main);
+ line-height: 1.6;
+ background: var(--light-color);
+ color: var(--dark-color);
+ }
+
+ .hero-header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ text-decoration: none;
+ color: white;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color) !important;
+ padding: 0.5rem 1rem;
+ border-radius: 25px;
+ font-weight: bold;
+ }
+
+ .video-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .video-card {
+ background: white;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .video-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .video-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .category-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ padding: 2rem;
+ }
+
+ .category-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: all 0.3s ease;
+ }
+
+ .category-card:hover {
+ transform: scale(1.05);
+ background: var(--primary-color);
+ color: white;
+ }
+
+ .subscribe-section {
+ background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .subscribe-form {
+ display: flex;
+ gap: 1rem;
+ max-width: 500px;
+ margin: 2rem auto;
+ }
+
+ .subscribe-form input {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 25px;
+ outline: none;
+ }
+
+ .subscribe-form button {
+ background: var(--dark-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .subscribe-form {
+ flex-direction: column;
+ }
+
+ .video-grid {
+ grid-template-columns: 1fr;
+ }
+ }