            @font-face {
                font-family: 'silent_hill';
                src: url(font/SilentHill1Expan.ttf);
            }
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'MingLiU_HKSCS-ExtB', 'silent_hill' , sans-serif;
                background: #000000;
                min-height: 100vh;
                overflow-x: hidden;
                position: relative;
                cursor: none;
            }

            header {
                color: white;
                text-align: center;
                padding: 2rem 0;
                position: relative;
                z-index: 10;
            }

            .aynen-div
            {
                color: white;
                position: absolute;
                width: 30%;
                height: 100%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: black;
                z-index: 9;
                margin: auto;
                border: #000000 solid 2px;
                box-shadow: 0 0 50px 50px black;
                
            }

            .custom-cursor {
                position: fixed;
                width: 30px;
                height: 30px;
                margin-left: 14px;
                margin-top: 15px;
                pointer-events: none;
                z-index: 9999;
                background-image: url('https://i.imgur.com/FvFI2mJ.png');
                background-size: cover;
                background-position: center;
                transform: translate(-50%, -50%);
            }

            selector {cursor:none!important}

            .header-title {
                font-size: 4rem;
                font-weight: bold;
                color: transparent;
                text-shadow: 0 4px 20px rgba(0,0,0,0.3);
                letter-spacing: 0.1em;
                background: linear-gradient(45deg, #fff, #f0f0f0);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: glow 2s ease-in-out infinite alternate;
            }

            button:hover ~ .custom-cursor,
            a:hover ~ .custom-cursor,
            .clickable:hover ~ .custom-cursor {
                display: none !important;
            }


            @keyframes glow {
                from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
                to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)); }
            }

            .container {
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 70vh;
                position: relative;
                z-index: 10;
                margin-top: 80px;
            }

            .button-circle {
                position: relative;
                width: 450px;
                height: 450px;
            }

            .center-button {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 120px;
                height: 120px;
                border-radius: 0;
                cursor: none;
                font-size: 1.1rem;
                font-weight: bold;
                color: black;
                transition: all 0.3s ease;
                z-index: 5;
                animation: centerFloat 4s ease-in-out infinite;
                background-image: url('https://i.imgur.com/f4zORYy.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                text-shadow: 0 2px 4px rgba(0,0,0,0.8);
                outline: none;
                border: none;
                background-color: transparent;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                box-shadow: 0px 0px 10px 30px black;
            }

            @keyframes centerFloat {
                0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
                25% { transform: translate(-50%, -50%) translateY(-8px) rotate(1deg); }
                50% { transform: translate(-50%, -50%) translateY(-5px) rotate(0deg); }
                75% { transform: translate(-50%, -50%) translateY(-12px) rotate(-1deg); }
            }

            .center-button:hover {
                transform: translate(-50%, -50%) scale(1.1);
                animation: none;
            }

                .texture-button {
                position: absolute;
                width: 80px;
                height: 80px;
                border-radius: 0;
                border: none;
                cursor: none;
                z-index: 12;
                font-size: 0.9rem;
                font-weight: bold;
                color: transparent;
                transition: all 0.3s ease;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                outline: none;
                padding: 0;
                background-color: transparent;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
            }

            /* ...existing code... */
            .texture-button:nth-child(2) {
                top: 40px; /* was 10px */
                left: 50%;
                transform: translateX(-50%);
                background-image: url('https://i.imgur.com/ZQIJjYV.png');
                animation: spaceFloat1 6s ease-in-out infinite;
            }

            .texture-button:nth-child(3) {
                top: 110px; /* was 90px */
                right: 60px; /* was 20px */
                background-image: url('https://i.imgur.com/mzdeYHY.png');
                animation: spaceFloat2 5.5s ease-in-out infinite;
            }

            .texture-button:nth-child(4) {
                bottom: 110px; /* was 90px */
                right: 60px; /* was 20px */
                background-image: url('https://i.imgur.com/0ogQDKt.png');
                animation: spaceFloat3 7s ease-in-out infinite;
            }

            .texture-button:nth-child(5) {
                bottom: 40px; /* was 10px */
                left: 50%;
                transform: translateX(-50%);
                background-image: url('https://i.imgur.com/1FeikW6.png');
                animation: spaceFloat4 5s ease-in-out infinite;
            }

            .texture-button:nth-child(6) {
                bottom: 110px; /* was 90px */
                left: 60px; /* was 20px */
                background-image: url('https://i.imgur.com/AWLzARD.png');
                animation: spaceFloat5 6.5s ease-in-out infinite;
            }

            .texture-button:nth-child(7) {
                top: 110px; /* was 90px */
                left: 60px; /* was 20px */
                background-image: url('https://i.imgur.com/NXyDLcN.png');
                animation: spaceFloat6 4.5s ease-in-out infinite;
            }
            /* ...existing code... */

            /* Space floating animations */
            @keyframes spaceFloat1 {
                0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
                25% { transform: translateX(-50%) translateY(-15px) rotate(2deg); }
                50% { transform: translateX(-50%) translateY(-8px) rotate(0deg); }
                75% { transform: translateX(-50%) translateY(-18px) rotate(-1deg); }
            }

            @keyframes spaceFloat2 {
                0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
                33% { transform: translateY(-12px) translateX(-8px) rotate(1deg); }
                66% { transform: translateY(-20px) translateX(5px) rotate(-2deg); }
            }

            @keyframes spaceFloat3 {
                0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
                30% { transform: translateY(-18px) translateX(8px) rotate(1.5deg); }
                60% { transform: translateY(-10px) translateX(-5px) rotate(-1deg); }
            }

            @keyframes spaceFloat4 {
                0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
                40% { transform: translateX(-50%) translateY(-14px) rotate(-2deg); }
                80% { transform: translateX(-50%) translateY(-22px) rotate(1deg); }
            }

            @keyframes spaceFloat5 {
                0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
                25% { transform: translateY(-16px) translateX(6px) rotate(2deg); }
                50% { transform: translateY(-8px) translateX(-4px) rotate(0deg); }
                75% { transform: translateY(-20px) translateX(10px) rotate(-1.5deg); }
            }

            @keyframes spaceFloat6 {
                0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
                35% { transform: translateY(-22px) translateX(-6px) rotate(2.5deg); }
                70% { transform: translateY(-12px) translateX(8px) rotate(-1deg); }
            }

            /* Tooltip styles */
            .tooltip {
                position: fixed;
                background: rgba(0, 0, 0, 0.9);
                color: #FFFFFF;
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 0.9rem;
                pointer-events: none;
                z-index: 1000;
                opacity: 0;
                transition: opacity 0.2s ease;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
                border: 1px solid rgba(255, 255, 255, 0.2);
                max-width: 280px;
                text-align: left;
            }

            .tooltip .tooltip-title {
                font-weight: bold;
                font-size: 1rem;
                margin-bottom: 4px;
                color: #FFFFFF;
            }

            .tooltip .tooltip-desc {
                font-weight: normal;
                font-size: 0.8rem;
                opacity: 0.8;
                line-height: 1.3;
            }

            .tooltip.visible {
                opacity: 1;
            }

            

            /* Particle canvas */
            #particleCanvas {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 2;
                pointer-events: none;
            }

            /* Responsive design */
            @media (max-width: 768px) {
                .header-title {
                    font-size: 2.5rem;
                }
                
                .button-circle {
                    width: 380px;
                    height: 380px;
                }
                
                .center-button {
                    width: 90px;
                    height: 90px;
                    font-size: 0.9rem;
                }
                
                .texture-button {
                    width: 60px;
                    height: 60px;
                    font-size: 0.7rem;
                }
            }

            .backgroundtipik {
                background-color:#120024;
                background-size: 400px 400px;
                    background-image: url('https://i.imgur.com/c7oTrzG.png');
                    animation: movingfalan 10s linear infinite;
                }
            
            body.backgroundtipik::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://i.imgur.com/c7oTrzG.png');
                background-size: 200px 200px;
                background-repeat: repeat;
                animation: movingfalan 4s linear infinite reverse;
            }
            
            .background-katalog{
                background-color: black;
                background-size:  100% 100%;
                background-image: url('https://i.imgur.com/8snR1Yj.png');
            }

            @keyframes movingfalan {
                from{background-position: 0 0;}
                to{background-position: 400px 400px;}}
            
            @keyframes movingfalan-iki {
                from{background-position: 0 0;}
                to{background-position: 112px 0px;}}
            
            @keyframes movingfalan-uc {
                from{background-position: 0 0;}
                to{background-position: 182px 128px;}}

            @keyframes movingfalan-dort {
                from{background-position: 0 0;}
                to{background-position: 500px 500px;}}
            
            @keyframes movingfalan-bes {
                from{background-position: 0 0;}
                to{background-position: 300px 300px;}}

            @keyframes movingfalan-alti {
                from{background-position: 0 0;}
                to{background-position: 100px 0px;}}

            .big-div {
    position: fixed;
    width: 400px;
    height: auto;
    max-height: 300px;
    top: 20px;
    right: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20;
    border: #ffffff solid 2px;
    border-radius: 0;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.8);
    text-align: center;
    color: white;
    padding: 20px;
    overflow-y: auto;
}

.big-div h1 {
    margin-top: 0 !important;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.big-div p {
    margin-top: 10px !important;
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin-bottom: 15px;
}

.big-div img {
    width: 60px !important;
    height: 120px !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    margin: 10px auto 0 auto !important;
    z-index: 10;
}

/* Make it responsive for smaller screens */
@media (max-width: 768px) {
    .big-div {
        width: 320px;
        top: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .big-div h1 {
        font-size: 1.3rem;
    }
    
    .big-div p {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .big-div {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
    }
}

            .backgroundtipik_calm {
                background-color:#120024;
                background-size: 100px 100px;
                    background-image: url('https://i.imgur.com/ACd8lvv.png');
                    animation: movingfalan 10s linear infinite;
                }



            body.backgroundtipik_calm::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://i.imgur.com/ACd8lvv.png');
                background-size: 200px 200px;
                background-repeat: repeat;
                animation: movingfalan 10s linear infinite reverse;
            }
            
            .backgroundtipik_call {
                background-size: 400px 400px;
                    background-image: url('https://i.imgur.com/v4PCyBF.png');
                    animation: movingfalan 10s linear infinite;
                }

            body.backgroundtipik_call::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://i.imgur.com/0R59t61.gif');
                background-size: 112px 124px;
                background-repeat: repeat;
                animation: movingfalan-iki 10s linear infinite reverse;
            }

            .backgroundtipikstuff {
                background-size: 200px 200px;
                    background-image: url('https://i.imgur.com/Zsws9vF.jpeg');
                    animation: movingfalan 10s linear infinite;
                }

            body.backgroundtipikstuff::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.6;
                background-image: url('https://i.imgur.com/avzvgoy.gif');
                background-size: 182px 128px;
                background-repeat: repeat;
                animation: movingfalan-uc 15s linear infinite reverse;
            }

            .backgroundtipik-music {
                background-size: 200px 200px;
                    background-image: url('https://img.itch.zone/aW1hZ2UvNTQzNDMyLzQ2MzE4ODkucG5n/original/h4FZ1%2F.png');
                    animation: movingfalan 10s linear infinite;
                }

            body.backgroundtipik-music::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://media.tenor.com/d934u3U-SesAAAAi/jerma-music.gif');
                background-size: 50px 50px;
                background-repeat: repeat;
                animation: movingfalan 15s linear infinite reverse;
            }

            .backgroundtipik-games {
                background-size: 500px 500px;
                    background-image: url('https://i.imgur.com/4Oirmwv.png');
                    animation: movingfalan-dort 10s linear infinite;
                }

            body.backgroundtipik-games::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://i.imgur.com/4Oirmwv.png');
                background-size: 300px 300px;
                background-repeat: repeat;
                animation: movingfalan-bes 15s linear infinite reverse;
            }

            .backgroundtipik-friends {
                background-size: 200px 200px;
                    background-image: url('https://i.imgur.com/NXDFAdb.png');
                    animation: movingfalan 10s linear infinite;
                }

            body.backgroundtipik-friends::before {
                content: "";
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                z-index: 2; /* Above the background, below content */
                pointer-events: none;
                opacity: 0.5;
                background-image: url('https://i.imgur.com/WBr4ehc.png');
                background-size: 100px 100px;
                background-repeat: repeat;
                animation: movingfalan-alti 15s linear infinite reverse;
            }


            .katalog-div{
                color: white;
                position: absolute;
                width: 30%;
                height: 100%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color:rgba(0, 0, 0, 0.7);
                z-index: 9;
                margin: auto;
                border: none;
                box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
            }

            .kendini-yazan-yazi{
                color: white;
                position: relative;
                text-align: left;
            }

            .link-style{
                color: yellow;
                text-decoration: none;
                cursor: none;
            }

            .cool-button-style{
                font-family: 'MingLiU_HKSCS-ExtB', 'silent_hill' , sans-serif;
                display: inline-block; 
                margin-top: 30px; 
                padding: 12px 28px; 
                font-size: 1.1rem; 
                background: white; color: #000;
                font-weight: bold; 
                cursor: none;
            }
        
            .center_this{margin-left: 0%;width: 30%; height: 30%; display: block; margin-left: auto; margin-right: auto;}