        body, * {
            cursor: none !important;
        }
        #cursor {
            position: fixed;
            width: 64px;
            height: 64px;
            pointer-events: none;
            z-index: 15000;
            left: 0;
            top: 0;
            display: none;
            transition: none;
        }
        body {
            -webkit-user-drag: none;
        }
        img, a {
            -webkit-user-drag: none;
        }        
        .Cuykonbutton-container{
            display: flex;
            justify-content: center;
            align-items: center;
            height: 250px;
            
            
        }

        #CuykonButton{
            background-image: url('images/button_unclicked.svg');
            height: 250px;
            width: 350px;
            border: none;
            box-shadow: none;
            background-color: white;
            
            
        }
        html[data-bs-theme="dark"] #CuykonButton{
    
            background-image: url('images/button_unclickedDarkMode.svg');
            background-color: #080808;
    
        }
        

        @media (max-width: 480px){
            
            #CuykonButton{
                background-image: url('images/buttonsmall_unclicked.svg');
                height: 214px;
                width: 300px; 
            }
            html[data-bs-theme="dark"] #CuykonButton{
                
                height: 214px;
                width: 300px; 
                background-image: url('images/buttonsmall_unclickedDarkMode.svg');
                
            }
        }

        #CuykonButton.clicked {
            background-image: url('images/button_clicked.svg');
        }

        html[data-bs-theme="dark"] #CuykonButton.clicked{
    
            background-image: url('images/button_clickedDarkMode.svg');
            background-color: #080808;
    
        }

        @media (max-width: 480px){
    
            #CuykonButton.clicked{
        
                background-image: url('images/buttonsmall_clicked.svg');
        
            }
            html[data-bs-theme="dark"] #CuykonButton.clicked{
                
                background-image: url(images/buttonsmall_clickedDarkMode.svg);
                
            }
    
        }
        
        #counter {
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial;
            margin-top: 25vh;
            font-size: 150%;
        }

        .navigation{
            
            background-color: rgba(250, 248, 248, 0.5);
            padding: 1vh;
            height: auto;
            border-radius: 30px 30px 30px 30px;
            display: flex;
            align-items: center;
            
        }

        #logocontainer{
        
            display: inline-block;
            vertical-align: middle;
            padding: 0.25vh;
            height: 80px;
            width: 80px;

        }
        @media (max-width: 570px){
    
            #logocontainer{
        
                margin-left: 30px;
            }
    
    
        }
        #logo{
    
            padding: 0.25vh;
    
        }
        #text_logo{
            
            display: inline-block;
            font-family: Arial, sans-serif;
            font-size: 24px;
            color: #333;
            margin-left: 10px;
            vertical-align: middle;
            text-align: center;
            margin-bottom: 5px;
            
        }
        @media (max-width: 480px){
    
            #text_logo{
            
                font-size: 17px;
                margin-left: 5px;
            
            }
    
        }
        
        #issuebuttoncontainer{
            
            display: inline-block;
            padding: 0;

        }

        #issuebutton{
    
            padding: 5px;
            color: black;
            transition: all 0.3s ease;
            margin-top: 5px;
    
        }

        .nav_bottom{ 
            
            background-color: #fbfbfb;
            height: 150px;
            border-radius: 30px 30px 0 0;
            
        }

        .nav_bottom a{
    
            color: black;
            font-family: Arial;
    
        }

        .nav_bottom a:hover{
    
            color: dimgrey;
    
        }

        .social-icons { 
            display: flex; 
            justify-content: center; 
            gap: 15px; 
            list-style-type: none; 
            padding: 0; 
        } 

        .social-icons li {
            display: inline-block;
            margin-top: 10px;
        } 

        .social-icons svg {
            
            width: 45px; 
            height: 45px;
            transition: transform 0.2s ease, fill 0.2s ease;
            
        }
        .social-icons svg:hover{
    
            transform: scale(1.1);
            color: darkgrey;
            
            
        }

        #github{
    
            cursor: pointer;
    
        }
        #instagram{
    
            cursor: pointer;
    
        }
        #tiktok{
    
            cursor: pointer;
    
        }
        #whatsapp{
    
            cursor: poiner;
    
        }
        #telegram{
    
            cursor: poiner;
    
        }
        #discord{
    
            cursor: pointer;
    
        }

        #copyright{
    
            font-size: 12px;
            font-family: sans-serif;
            text-align: center;
            
        }

        .sticky {
            position: fixed;
            top: 10px;
            width: 100%;
            right: 0.5px
            
        }
        .tooltip {
            position: relative;
            display: inline-block;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 70px;
            background-color: #fbfbfb;
            color: black;
            font-size: 12px;
            font-family: Arial;
            text-align: center;
            border-radius: 10px;
            padding: 5px 0;
            position: absolute;
            z-index: 1;
            top: 100%;
            
            margin-left: -60px;
  
            opacity: 0;
            transition: opacity 1s;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        .small_svg_50px{
    
            height: 50px;
            width: 50px;
    
        }

        .small_svg_25px{
            
            height: 25px;
            width: 25px;
    
        }

        .small_svg_80px{
    
            height: 80px;
            width: 80px;
    
        }
        .small_svg_100px{
    
            height: 100px;
            width: 100px;
    
        }

        #stopButton{
    
            background-image: url('/images/StopButton_unclicked.svg');
            background-size: cover;
            width: 150px; 
            height: 59px;
            border: none;
            box-shadow: none;
            background-color: transparent;
    
        }

        #stopButton.clicked{
    
            background-image: url('/images/StopButton_clicked.svg');
            background-size: cover;
            width: 150px;
            height: 59px;
            border: none;
            box-shadow: none;
            background-color: transparent;
        }

        .stopbuttoncontainer{
    
            position: fixed;
            bottom: 0;
            left: 0;
            padding: 1vh;
            width: auto;
            height: auto;
            
        }

        .emojicontainer {
            position: relative;
            height: 100px;
            margin-bottom: 0; 
            padding: 1vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        #EmojiSound {
            position: absolute;
            width: 100px;
            height: 100px;
            backface-visibility: hidden;
        }

         #SiteButtonStateModeContainer{
            
            display: inline-block;
            padding: 0;
             
        }

        #SiteButtonStateMode{
    
            cursor: pointer;
    
        }
        .right-nav-items {
            
            display: flex;         
            align-items: center;   
            gap: 15px;             
            margin-left: auto;     
    
        }
        @media (max-width: 480px){
            
            .right-nav-items {
             
                gap: 7px;             
    
            }
            
        }   

        #user-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
        }
        #loginButton{
            
            background-color: white; 
            color: black; 
            padding: 10px 18px; 
            border: 2px solid black; 
            border-radius: 20px;
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer; 
            transition: all 0.3s ease;
            white-space: nowrap; 
            font-family: Arial, sans-serif;
            font-size: 1em;
            font-weight: bold;
        }
        @media (max-width: 480px){
            
            #loginButton{
            
                background-color: white; 
                color: black; 
                padding: 12px 2px; 
                border: 2px solid black; 
                border-radius: 20px;
                box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
                cursor: pointer; 
                transition: all 0.3s ease;
                white-space: nowrap; 
                font-family: Arial, sans-serif;
                font-size: 0.9em;
                font-weight: bold;
                width: 65px;
                text-align: center;
            }
            
        }

        #loginButton:hover {
    
            background-color: #f0f0f0; 
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
            
        }

        #loginButton:active {
    
            transform: translateY(0);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            
        }

        #clerk-auth-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .dropdown {
            
            display: inline-block;
            font-family: Arial, sans-serif;
            cursor: pointer;
            
        }
        .dropdown:hover{
    
            color: dimgray;
    
        }

        .dropdown-content {
            display: none;
            position: absolute;
            width: 120px;
            overflow: auto;
            box-shadow: 1px 8px 16px 1px rgba(0,0,0,0.2);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            color: #000000;
            padding: 5px;
            text-decoration: none;
        }
        .dropdown-content a:hover {
            color: #FFFFFF;
            background-color: gainsboro;
        }

        .hamburger{
            display: none;
            cursor: pointer;
            font-size: 30px;
            margin-top: 5px;
            margin-right: 10px;
        }

        .hamburger img {
            
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }

        .hamburger-content {
            display: none;
            position: absolute;
            width: 100%;
            overflow: auto;
            box-shadow: 1px 10px 10px 1px rgba(0,0,0,0.4);
            top: 100px;
        }

        .hamburger-content a {
            display: block;
            color: #000000;
            padding: 5px;
            text-decoration: none;
            font-family: Arial, sans-serif;
        }

        .hamburger-content a:hover {
            color: #FFFFFF;
            background-color: gainsboro;
        }

        @media (max-width: 570px) {
            .dropdown {
                display: none;
            }

            .hamburger {
                display: block;
                position: absolute;
            }
        }

        .rotation{
    
            transform: rotate(90deg);
    
        }
        #shareBanner {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 9999;
            width: 350px;
            height: 350px;
            text-align: center;
            font-family: Arial, sans-serif;
            font-size: 1.2em;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            
        }
        #bannerButtons{
    
            display: flex;
            gap: 10px;
    
        }

        #shareBanner button {
            margin: 10px 5px 0 5px;
            padding: 8px 15px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1em;
            background-color: #4CAF50;
            color: white;
            transition: background-color 0.3s ease;
        }

        #shareBanner button#closeBannerBtn {
            background-color: #f44336;
        }

        #shareBanner button:hover {
            opacity: 0.85;
        }
        #shareBanner p{
    
            font-size: 1.5em;
    
        }
        
        #record{
    
            font-family: Arial;
            font-size: 1em;
            color: darkgrey;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .socialgrid{
    
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
    
        }
        .socialgrid img{
    
            width: 100%;
    
        }
        
        .socialgrid img:hover{
    
            animation: headShake;
            animation-duration: 1s;
            cursor: pointer;
    
    
        }
        .footer-links {
            white-space: nowrap;
            text-align: center; 
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-links a {
            display: inline-block;
            margin: 0 8px;
            text-decoration: none;
            color: black;
        }
        @media (max-width: 480px){
            
            .footer-links a {
                display: inline-block;
                margin: 0 3px;
                font-size: 12px;
                
            }
        }

        .footer-links a:hover {
            text-decoration: underline;
            color: dimgrey;
        }
        #syncstatuscontainer{
    
            position: relative;
    
        }
        #syncStatus {
            position: fixed;
            display: none;
            max-width: 300px;
            text-align: center;
            word-wrap: break-word;
            transform: translate(1%, -140%);
            z-index: 10000;
            width: 150px;
            right: 10px;
            top: 260px;
            background-color: #e25469;
            color: #f9f9f9;
            border-radius: 6px;
            font-size: 1em;
            font-family: Arial, Helvetica, sans-serif;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease;
            backface-visibility: hidden;
        }
        #syncStatus p{
                
            text-align: center;
                  
        }        
        #loadingcontainer{
            
            position: absolute;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            align-content: center;
            background-color: #f7f7f7;
            border-radius: 20px;
            left: 15px;
            top: 147px;
            height: 65px;
            width: 65px;
            
        }            
        #loadingScreen {
    
            cursor: pointer;
    
        }
        #loadingmsg{
            
            font-family: Arial, Helvetica, sans-serif;
            position: absolute;
            display: flex;
            text-align: center;
            top: 55px;
            font-size: 12px;
            color: black;
    
        }
        #loadingmsg:hover{
    
            animation: wobble 1s;
            cursor: pointer
    
        }
        @media (max-width: 480px){
    
            #loadingcontainer{
        
                height: 45px;
                width: 45px;
                left: 15px;
                top: 135px;
          
            }
            #loadingmsg{
                
                top: 37px;
                font-size: 10px;
                
            }
    
        }
        html[data-bs-theme="dark"] .navigation{
            
            background-color: black;
            border-radius: 30px 30px 30px 30px;
            
        }
        
        html[data-bs-theme="dark"] #text_logo{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] body{
    
            background-color: #080808;
    
        }

        html[data-bs-theme="dark"] #counter{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] .nav_bottom{
    
            background-color: #050505;
            border-radius: 30px 30px 0 0;
    
        }
        
        html[data-bs-theme="dark"] .nav_bottom a{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] .nav_bottom a:hover{
            
            
            color: lightgray;
    
        }

        html[data-bs-theme="dark"] .nav_bottom p{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] #stopButton{
    
            background-image: url(images/StopButton_unclickedDarkMode.svg);
    
    
        }
        
        html[data-bs-theme="dark"] #stopButton.clicked{
    
            background-image: url(images/StopButton_clickedDarkMode.svg);
    
        }
        
        html[data-bs-theme="dark"] .dropdown{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] .dropdown-content{
    
            background-color: black
    
        }

        html[data-bs-theme="dark"] .dropdown-content a{
    
            color: white;
    
        }
        html[data-bs-theme="dark"] .dropdown-content a:hover{
    
            background-color: dimgray;
    
        }
        
        html[data-bs-theme="dark"] .hamburger-content{
            
            background-color: black;
    
        }
        html[data-bs-theme="dark"] .hamburger-content a{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] .hamburger-content a:hover{
    
            background-color: dimgray;
    
        }

        html[data-bs-theme="dark"] #shareBanner{
    
            background: rgba(14, 14, 14, 1)
    
        }
        
        html[data-bs-theme="dark"] #shareBanner button#closeBannerBtn {
            
            background-color: rgba(163, 4, 4, 0.8);
        }
        
        html[data-bs-theme="dark"] #shareBanner p{
    
            color: white;
    
        }

        html[data-bs-theme="dark"] #loginButton {
            background-color: #333333;
            color: white;          
            border-color: #555555;
            box-shadow: 3px 3px 6px rgba(255, 255, 255, 0.1);
        }

        html[data-bs-theme="dark"] #loginButton:hover {
            background-color: #444444;
            box-shadow: 4px 4px 8px rgba(255, 255, 255, 0.2);
        }

        html[data-bs-theme="dark"] #loginButton:active {
            background-color: #222222;
            box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.05);
        }

        html[data-bs-theme="dark"] .social-icons svg{
            
            color: white;
        }

        html[data-bs-theme="dark"] .social-icons svg:hover{
            
            color: gainsboro;
            
        }

        html[data-bs-theme="dark"] .social-icons svg:hover{
            
            color: gainsboro;
            
        }

        html[data-bs-theme="dark"] #issuebutton{
            
            color: white;
            
        }

        html[data-bs-theme="dark"] #issuebutton:hover{
            
            color: gainsboro;
            
        }

        html[data-bs-theme="dark"] #syncStatus{
            
            color: #f7f7f7;
            background-color: #7e1d1d;
    
        }
        html[data-bs-theme="dark"] #loadingcontainer{
    
            background-color: #383838;
    
        }

        html[data-bs-theme="dark"] #loadingmsg{
            
            color: white;
    
        }
        img {
            -webkit-touch-callout: none; 
            -webkit-user-select: none;   
            -moz-user-select: none;      
            -ms-user-select: none;       
            user-select: none;           
        }
        .cl-profileSectionPrimaryButton.cl-button.cl-profileSectionPrimaryButton__profile.cl-button__profile {
            display: none;
        }
