Changed around line 1
+ :root {
+ --primary-color: #2a2a2a;
+ --accent-color: #6b4ce6;
+ --text-color: #333;
+ --light-color: #fff;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ 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%;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--accent-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ }
+
+ .nav-links li {
+ margin-left: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 2px;
+ bottom: -5px;
+ left: 0;
+ background: var(--accent-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ color: var(--primary-color);
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ color: var(--accent-color);
+ }
+
+ /* Mirror Effect */
+ .mirror-box {
+ margin-top: 3rem;
+ perspective: 1000px;
+ }
+
+ .mirror {
+ width: 200px;
+ height: 200px;
+ margin: 0 auto;
+ position: relative;
+ transform-style: preserve-3d;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .reflection {
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(45deg, rgba(107, 76, 230, 0.5), rgba(107, 76, 230, 0.2));
+ border-radius: 50%;
+ box-shadow: 0 0 30px rgba(107, 76, 230, 0.3);
+ }
+
+ /* Cards */
+ .cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .card {
+ perspective: 1000px;
+ height: 300px;
+ }
+
+ .card-inner {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ transition: transform 0.8s;
+ transform-style: preserve-3d;
+ cursor: pointer;
+ }
+
+ .card:hover .card-inner {
+ transform: rotateY(180deg);
+ }
+
+ .card-front, .card-back {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ backface-visibility: hidden;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ border-radius: 15px;
+ background: white;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ }
+
+ .card-back {
+ transform: rotateY(180deg);
+ background: var(--accent-color);
+ color: white;
+ }
+
+ /* Parallax Section */
+ .parallax {
+ background-attachment: fixed;
+ background-position: center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml, ');
+ color: var(--light-color);
+ padding: 8rem 2rem;
+ }
+
+ /* Animations */
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .nav-toggle {
+ display: block;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .cards {
+ grid-template-columns: 1fr;
+ }
+ }