* {
            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: #1e3b2e;
            /* Deep dark green */
            color: #f5f5dc;
            overflow-x: hidden;
            cursor: none;
            min-height: 100vh;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #4a8f6d;
            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(74, 143, 109, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99998;
            transition: all 0.3s ease;
        }

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

        .matrix-char {
            position: absolute;
            color: #4a8f6d;
            font-family: monospace;
            font-size: clamp(14px, 2vw, 24px);
            animation: fall linear infinite;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        /* 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: #4a8f6d;
            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: #c9d4a8;
            border-color: rgba(201, 212, 168, 0.3);
            background: rgba(74, 143, 109, 0.1);
        }

        .topic-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite ease-in-out;
            text-shadow: 0 0 20px rgba(74, 143, 109, 0.5);
        }

        @keyframes pulse {

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

            50% {
                transform: scale(1.1);
            }
        }

        .title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            color: #4a8f6d;
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(74, 143, 109, 0.3);
        }

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

        @keyframes float {

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

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

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

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