        :root {
            --electric-lime: #CCFF00;
            --deep-purple: #1a0f2e;
            --slate: #2d3748;
            --warm-orange: #FF6B35;
            --cyan: #00D9FF;
            --off-white: #f8f9fa;
            --shadow: rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--slate);
            background: var(--off-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(204, 255, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* Header */
        header {
            background: var(--deep-purple);
            color: white;
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px var(--shadow);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            letter-spacing: -0.02em;
            animation: slideIn 0.6s ease-out;
        }

        .logo span {
            color: var(--electric-lime);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            animation: slideIn 0.6s ease-out 0.1s backwards;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--electric-lime);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--deep-purple) 0%, #2d1b4e 100%);
            color: white;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            line-height: 0.95;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 span {
            display: block;
            color: var(--electric-lime);
            text-shadow: 0 0 40px rgba(204, 255, 0, 0.3);
        }

        .tagline {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .cta-button {
            display: inline-block;
            background: var(--electric-lime);
            color: var(--deep-purple);
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
        }

        /* Location Info */
        .location-banner {
            background: var(--electric-lime);
            color: var(--deep-purple);
            padding: 1.5rem 2rem;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            animation: slideDown 0.6s ease-out 0.6s backwards;
        }

        /* Products Section */
        .products {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-header h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--deep-purple);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--slate);
            opacity: 0.8;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.4s;
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .product-icon {
            background: linear-gradient(135deg, var(--warm-orange), var(--cyan));
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            height: 200px;
        }

        .product-card:nth-child(even) .product-icon {
            background: linear-gradient(135deg, var(--deep-purple), var(--cyan));
        }

        .product-info {
            padding: 2rem;
        }

        .product-info h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.5rem;
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
        }

        .product-info p {
            color: var(--slate);
            margin-bottom: 1rem;
        }

        .price-tag {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--warm-orange);
        }

        /* Featured Book Section */
        .featured-book {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .featured-book::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .book-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .book-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 4rem;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .book-badge {
            display: inline-block;
            background: var(--electric-lime);
            color: var(--deep-purple);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .book-text h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--deep-purple);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .book-author {
            font-size: 1.3rem;
            color: var(--warm-orange);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .book-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--slate);
            margin-bottom: 2rem;
        }

        .book-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .book-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 1rem;
            color: var(--slate);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .book-features li::before {
            content: '✓';
            color: var(--electric-lime);
            font-size: 1.3rem;
            font-weight: 700;
            background: rgba(204, 255, 0, 0.15);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .book-pricing {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .book-price {
            font-size: 2.5rem;
            font-family: 'Archivo Black', sans-serif;
            color: var(--deep-purple);
        }

        .book-rrp {
            font-size: 1.2rem;
            color: var(--slate);
            text-decoration: line-through;
            opacity: 0.6;
        }

        .book-button {
            display: inline-block;
            background: var(--warm-orange);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .book-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            background: var(--cyan);
        }

        .book-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .book-cover {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            transition: all 0.4s;
        }

        .book-cover:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
        }

        /* About Section */
        .about {
            background: var(--deep-purple);
            color: white;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .about-text h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .about-text h2 span {
            color: var(--electric-lime);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .features-list li::before {
            content: '→';
            color: var(--electric-lime);
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Visit Section */
        .visit {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .visit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .info-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            border-left: 5px solid var(--electric-lime);
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateX(10px);
        }

        .info-card h3 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.8rem;
            color: var(--deep-purple);
            margin-bottom: 1rem;
        }

        .info-card p {
            font-size: 1.1rem;
            color: var(--slate);
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: var(--slate);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        footer p {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.15;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.25;
            }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                text-align: center;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .book-content {
                grid-template-columns: 1fr;
                padding: 2rem;
                gap: 2rem;
            }

            .book-image-wrapper {
                order: -1;
                padding: 1rem;
            }

            .book-cover {
                max-width: 350px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .visit-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }