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

        #home {
            height: 100vh;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        #blurb {
            background: linear-gradient(312deg, #000000 0%, #003767 82%, #006A90 100%);
        }

        #core {
            background: linear-gradient(312deg, #000000 0%, #003767 82%, #006A90 100%);
        }

        #store {
            background: linear-gradient(312deg, #000000 0%, #003767 82%, #006A90 100%);
        }

        #service {
            background: linear-gradient(312deg, #000000 0%, #003767 82%, #006A90 100%);
            min-height: 100vh;
            height: auto;
        }

        @keyframes shadowFade {
            0% {
                box-shadow: 0px 0px 108px 0px rgba(0, 0, 0, 0.06);
            }

            100% {
                box-shadow: 0px 0px 180px 0px rgba(0, 175, 255, 0.5);
            }
        }

        .main {
            height: 100vh;
            width: 100%;
            scroll-snap-type: y mandatory;
            overflow-y: scroll;
            scroll-behavior: smooth;
            position: relative;
        }

        #create-canvas {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        @media (min-width: 769px) {
            .m-section {
                display: none;
            }

            .m-header {
                display: none;
            }

            .home-content-m {
                display: none;
            }

        }

        /* 移动端样式 (≤768px) */
        @media (max-width: 768px) {
            .section {
                display: none;
            }

            .p-header {
                display: none;
            }

            .home-content {
                display: none;
            }
        }