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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #2d1b33;
            /* Deep violet */
            color: #f5f5dc;
            overflow-x: hidden;
            cursor: none;
            min-height: 100vh;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #8b5b9e;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999;
            transition: all 0.1s ease;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(139, 91, 158, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: all 0.3s ease;
        }

        /* Animated Background - Orbs */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, #8b5b9e, transparent 70%);
            mix-blend-mode: screen;
            opacity: 0.15;
            animation: float-orb infinite ease-in-out alternate;
        }

        @keyframes float-orb {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            100% {
                transform: translate(100px, 100px) scale(1.5) rotate(180deg);
            }
        }

        /* Main Container */
        .container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .back-btn {
            position: absolute;
            top: 2rem;
            left: 2rem;
            text-decoration: none;
            color: #8b5b9e;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: none;
            transition: all 0.3s ease;
            z-index: 10;
            border: 1px solid transparent;
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }

        .back-btn:hover {
            color: #d1b4de;
            border-color: rgba(139, 91, 158, 0.3);
            background: rgba(139, 91, 158, 0.1);
        }

        .topic-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: float-icon 4s infinite ease-in-out;
            text-shadow: 0 0 20px rgba(139, 91, 158, 0.5);
            filter: drop-shadow(0 0 10px rgba(139, 91, 158, 0.5));
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: #8b5b9e;
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(139, 91, 158, 0.3);
            font-family: 'Georgia', serif;
            font-style: italic;
        }

        .coming-soon {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: #cbb4d4;
            background: rgba(139, 91, 158, 0.15);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 1px solid rgba(139, 91, 158, 0.3);
            backdrop-filter: blur(5px);
            animation: pulse-soft 4s infinite ease-in-out;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        @keyframes pulse-soft {

            0%,
            100% {
                opacity: 0.8;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.02);
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }
        }
