      /* GLOBAL STYLES */
        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: white;
            overflow-x: hidden;
            height: 100%;
        }
        
        /* 3D SCENE CONTAINER */
        #scene-container {
            position: fixed;
            width: 100%;
            height: 100vh;
            z-index: 1;
            top: 0;
            left: 0;
        }
        
        /* PARTICLE BACKGROUND */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            top: 0;
            left: 0;
        }
        
        /* MAIN CONTENT */
        #main-content {
            position: relative;
            z-index: 10;
            margin-top: 100vh;
            background: #000;
        }
        
        /* UI OVERLAY */
        #ui-overlay {
            position: fixed;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 100;
            top: 0;
            left: 0;
            overflow: hidden;
        }
        
        /* HEADER STYLES */
        #header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
            z-index: 200;
            box-sizing: border-box;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255,77,77,0.3);
            pointer-events: auto;
            cursor: pointer;
        }
        
        /* COMPUTER NAVIGATION */
        #computer-nav {
            display: none;
            position: fixed;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            z-index: 200;
            pointer-events: auto;
        }
        
        #computer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        #computer-nav li {
            margin: 20px 0;
            position: relative;
        }
        
        #computer-nav a {
            display: block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }
        
        #computer-nav a:hover {
            background: rgba(255,77,77,0.3);
            transform: scale(1.1);
        }
        
        #computer-nav a::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.8);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            opacity: 0;
            transition: all 0.3s;
            pointer-events: none;
            white-space: nowrap;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        #computer-nav a:hover::after {
            opacity: 1;
            right: 70px;
        }
        
        /* NAVIGATION TOGGLE */
        #nav-toggle {
            pointer-events: auto;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 210;
        }
        
        #nav-toggle:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }
        
        #nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: white;
            position: relative;
        }
        
        #nav-toggle span::before,
        #nav-toggle span::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: white;
            left: 0;
            transition: all 0.3s;
        }
        
        #nav-toggle span::before {
            top: -6px;
        }
        
        #nav-toggle span::after {
            top: 6px;
        }
        
        #nav-toggle.active span {
            background: transparent;
        }
        
        #nav-toggle.active span::before {
            transform: rotate(45deg);
            top: 0;
        }
        
        #nav-toggle.active span::after {
            transform: rotate(-45deg);
            top: 0;
        }
        
        /* NAVIGATION PANEL */
        #navigation {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 300px;
            height: 100vh;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            border-left: 1px solid rgba(255,255,255,0.1);
            transform: translateX(100%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: auto;
            z-index: 150;
            padding: 80px 20px 20px;
            box-sizing: border-box;
            overflow-y: auto;
        }
        
        #navigation.active {
            transform: translateX(0);
            opacity: 1;
        }
        
        #navigation a {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 15px 20px;
            margin: 10px 0;
            border-radius: 10px;
            transition: all 0.3s;
            pointer-events: auto;
            text-align: left;
            border-left: 3px solid transparent;
        }
        
        #navigation a:hover {
            background: rgba(255,255,255,0.1);
            border-left: 3px solid #ff4d4d;
            transform: translateX(5px);
        }
        
        /* BOOK DISPLAY PANEL */
        #book-display {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.7);
            border-radius: 20px;
            padding: 15px 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            max-width: 500px;
            width: 90%;
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: auto;
            z-index: 50;
        }
        
        #book-display h2 {
            margin: 0;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        #book-display p {
            margin: 8px 0 0;
            color: #ccc;
            font-size: 0.9rem;
        }
        
        #book-display button {
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            margin-top: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            pointer-events: auto;
            font-size: 0.9rem;
        }
        
        #book-display button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,77,77,0.4);
        }
        
        /* ABOUT SECTION */
        #about-section {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s;
            backdrop-filter: blur(5px);
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
        }
        
        #about-section.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        #about-content {
            background: rgba(0,0,0,0.9);
            border-radius: 20px;
            padding: 30px;
            max-width: 800px;
            width: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 0 30px rgba(255,77,77,0.3);
            position: relative;
            overflow: hidden;
            margin: 60px 0;
        }
        
        #about-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,77,77,0.1) 0%, transparent 70%);
            z-index: -1;
            animation: rotate 60s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        #about-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            pointer-events: auto;
        }
        
        #about-close:hover {
            background: rgba(255,77,77,0.5);
            transform: rotate(90deg);
        }
        
        #about-close::before,
        #about-close::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 2px;
            background: white;
        }
        
        #about-close::before {
            transform: rotate(45deg);
        }
        
        #about-close::after {
            transform: rotate(-45deg);
        }
        
        #about-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        
        #about-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #ddd;
            text-align: center;
        }
        
        .about-feature {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            flex-shrink: 0;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .feature-icon svg {
            width: 25px;
            height: 25px;
            fill: #f9cb28;
        }
        
        .feature-text h3 {
            margin: 0 0 5px 0;
            color: white;
            font-size: 1.1rem;
        }
        
        .feature-text p {
            margin: 0;
            color: #aaa;
            text-align: left;
            font-size: 0.9rem;
        }
        
        /* CONTENT SECTIONS */
        .content-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            color: #fff;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }
        
        /* BOOK GRID SECTION */
        .books-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .book-card {
            background: rgba(30, 30, 40, 0.7);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .book-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 77, 77, 0.3);
            border-color: rgba(255, 77, 77, 0.3);
        }
        
        .book-cover {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .book-cover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
        }
        
        .book-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .book-title {
            font-size: 1.2rem;
            margin: 0 0 5px 0;
            color: white;
            font-weight: 600;
        }
        
        .book-author {
            color: #aaa;
            font-size: 0.9rem;
            margin: 0 0 15px 0;
        }
        
        .book-price {
            font-size: 1.1rem;
            color: #f9cb28;
            font-weight: 700;
            margin: 0 0 15px 0;
        }
        
        .book-btn {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
        }
        
        /* TESTIMONIALS SECTION */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .testimonial-card {
            background: rgba(30, 30, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 77, 77, 0.2);
            border-color: rgba(255, 77, 77, 0.3);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -20px;
            left: -15px;
            color: rgba(255, 255, 255, 0.1);
            font-family: serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid #f9cb28;
        }
        
        .author-info h4 {
            margin: 0;
            color: white;
        }
        
        .author-info p {
            margin: 5px 0 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* NEWSLETTER SECTION */
        .newsletter-section {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .newsletter-desc {
            color: #ccc;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px 0 0 50px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Montserrat', sans-serif;
        }
        
        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .newsletter-btn {
            padding: 15px 25px;
            border-radius: 0 50px 50px 0;
            border: none;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-btn:hover {
            background: linear-gradient(90deg, #ff3838, #f9c518);
        }
        
        /* ANIMATED TEXT EFFECTS */
        .animated-text {
            position: relative;
            display: inline-block;
        }
        
        .animated-text span {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        
        .animated-text.visible span {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* GLOWING TEXT */
        .glow-text {
            text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
            animation: glow-pulse 3s infinite alternate;
        }
        
        @keyframes glow-pulse {
            0% { text-shadow: 0 0 10px rgba(255, 77, 77, 0.5); }
            100% { text-shadow: 0 0 20px rgba(255, 77, 77, 0.8), 0 0 30px rgba(255, 77, 77, 0.3); }
        }
        
        /* RESPONSIVE ADJUSTMENTS */
        @media (min-width: 1024px) {
            #computer-nav {
                display: block;
            }
            
            #nav-toggle {
                display: none;
            }
            
            #navigation {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .logo {
                font-size: 1.5rem;
            }
            
            #header {
                padding: 15px 20px;
            }
            
            #nav-toggle {
                width: 40px;
                height: 40px;
            }
            
            #navigation {
                max-width: 250px;
                padding: 70px 15px 15px;
            }
            
            #navigation a {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            #book-display {
                padding: 12px 20px;
                bottom: 20px;
            }
            
            #book-display h2 {
                font-size: 1.2rem;
            }
            
            #book-display p {
                font-size: 0.8rem;
            }
            
            #book-display button {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
            
            #about-content {
                padding: 20px 15px;
                margin: 50px 0;
            }
            
            #about-content h2 {
                font-size: 1.5rem;
            }
            
            #about-content p {
                font-size: 0.9rem;
            }
            
            .about-feature {
                flex-direction: column;
                text-align: center;
            }
            
            .feature-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .feature-text p {
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 40px 15px;
            }
            
            .books-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .book-cover {
                height: 250px;
            }
            
            .newsletter-section {
                padding: 30px 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 50px;
            }
        }

        /* سطور بوك - إضافات جديدة */
        .satoor-section {
            background: rgba(20, 20, 30, 0.7);
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .satoor-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(255, 77, 77, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(249, 203, 40, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .satoor-title {
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            position: relative;
        }

        .satoor-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            border-radius: 3px;
        }

        .satoor-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .satoor-card {
            background: rgba(30, 30, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .satoor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 77, 77, 0.2);
            border-color: rgba(255, 77, 77, 0.3);
        }

        .satoor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #ff4d4d, #f9cb28);
        }

        .satoor-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #ddd;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }

        .satoor-content::before,
        .satoor-content::after {
            content: '"';
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            font-family: serif;
        }

        .satoor-content::before {
            top: -15px;
            left: -10px;
        }

        .satoor-content::after {
            bottom: -25px;
            right: -10px;
        }

        .satoor-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .satoor-author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid #f9cb28;
        }

        .satoor-author-info h4 {
            margin: 0;
            color: white;
            font-size: 1rem;
        }

        .satoor-author-info p {
            margin: 5px 0 0;
            color: #aaa;
            font-size: 0.8rem;
        }

        .satoor-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .satoor-tag {
            background: rgba(255, 77, 77, 0.2);
            color: #ff9999;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            transition: all 0.3s;
        }

        .satoor-tag:hover {
            background: rgba(255, 77, 77, 0.4);
            color: white;
        }

        .satoor-btn {
            display: block;
            margin: 40px auto 0;
            padding: 12px 30px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            max-width: 200px;
            box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
        }

        .satoor-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 77, 77, 0.4);
        }

        @media (max-width: 768px) {
            .satoor-section {
                padding: 30px 20px;
            }
            
            .satoor-title {
                font-size: 1.5rem;
            }
            
            .satoor-grid {
                grid-template-columns: 1fr;
            }
            
            .satoor-content {
                font-size: 1rem;
            }
        }
     /* FOOTER SECTION */
        footer {
            background: rgba(10, 10, 20, 0.9);
            padding: 60px 20px 30px;
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
            transform: translateY(-3px);
        }

        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ff4d4d, #f9cb28);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #f9cb28;
            transform: translateX(5px);
        }

        .footer-links a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .footer-contact p {
            color: #aaa;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: #f9cb28;
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-bottom a:hover {
            color: #f9cb28;
        }

        /* FOOTER ANIMATIONS */
        @keyframes cosmic-pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
        }

        .footer-newsletter-btn {
            animation: cosmic-pulse 2s infinite;
        }

        /* RESPONSIVE ADJUSTMENTS */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-heading {
                margin-bottom: 15px;
            }

            .footer-bottom {
                margin-top: 40px;
            }
        }