Changed around line 1
+ :root {
+ --primary-color: #1a1a2e;
+ --secondary-color: #16213e;
+ --accent-color: #e94560;
+ --text-color: #f1f1f1;
+ --font-main: 'Helvetica Neue', sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-main);
+ background: var(--primary-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ /* Header & Navigation */
+ .nav-header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(26, 26, 46, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ letter-spacing: 3px;
+ color: var(--accent-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 2;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: radial-gradient(circle at center, transparent 0%, var(--primary-color) 100%);
+ }
+
+ /* Content Sections */
+ .content-section {
+ padding: 5rem 5%;
+ }
+
+ .content-section h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ color: var(--accent-color);
+ }
+
+ .grid-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin: 0 auto;
+ max-width: 1200px;
+ }
+
+ .card {
+ background: var(--secondary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ transition: transform 0.3s ease;
+ cursor: pointer;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .card h3 {
+ color: var(--accent-color);
+ margin-bottom: 1rem;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem 5%;
+ margin-top: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-nav a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin-left: 2rem;
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--secondary-color);
+ flex-direction: column;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+
+ .footer-nav a {
+ margin: 0 1rem;
+ }
+ }