        .st-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 40px 20px;
        }

        .st-heading {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .st-paragraph {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .st-scroll-spacer {
            height: 1500px;
        }

        /* Bottom menu styles with st prefix */
        .st-bottom-menu {
            position: fixed;
            bottom: 0;
            right: 50px;

            width: 30%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            height: 50px; /* Only show title by default */
            overflow: hidden;
            transition: height 0.5s ease;
        }

        .st-bottom-menu:hover {
            height: 130px; /* Expand on hover */
        }

        .st-menu-title {
            text-align: center;
            padding: 15px 0;
            background: #6c5ce7;
            color: white;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            position: relative;
        }

        .st-menu-title::after {
            content: '☰';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
        }

        .st-menu-items {
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .st-menu-item-wrapper {
            position: relative;
        }

        .st-menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 12px;
            min-width: 80px;
        }

        .st-menu-item:hover {
            background: rgba(108, 92, 231, 0.1);
            transform: translateY(-3px);
        }

        .st-menu-item i {
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #6c5ce7;
        }

        .st-menu-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .st-notification {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Responsive styles */
        @media (max-width: 600px) {
            .st-menu-items {
                padding: 10px 5px;
            }
            
            .st-menu-item {
                padding: 8px 10px;
                min-width: 60px;
            }
            
            .st-menu-item i {
                font-size: 1.2rem;
            }
            
            .st-menu-item span {
                font-size: 0.8rem;
            }
            
            .st-heading {
                font-size: 2.2rem;
            }
            
            .st-paragraph {
                font-size: 1rem;
            }
            
            .st-bottom-menu:hover {
                height: 120px; /* Slightly less height on mobile */
            }
        }