::-webkit-scrollbar {
    display: none;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

/* Video background container */
.video-container {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgb(0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


.logo img {
    height: 80px;
    width: auto;
}

.navbar nav {
    display: flex;
    gap: 2rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #000000;
    transition: 50ms;
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    z-index: +1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: greenyellow;
    color: white;
    transform: translateY(3px);

}

/* For the button */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .navbar nav {
        margin-top: 1rem;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/*Testing bellow, get the fuck out*/

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #000000;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;

        }
        
        .demo-notice {
            text-align: center;
            margin-bottom: 3rem;
            padding: 1rem;
            background: rgba(0, 0, 0);
            border-radius: 8px;
            max-width: 800px;
        }
        
        .demo-notice h1 {
            color: greenyellow;
            margin-bottom: 1rem;
        }
        
        .demo-notice p {
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        /* Footer Section */
        .pk-footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            width: 100%;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .pk-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pk-footer-brand {
            flex: 1;
            min-width: 250px;
        }
        /*orginal code for p
                    font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, greenyellow 0%, greenyellow 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            */
        #pk-footer-logo {
            display: block;
            margin: -1rem 0 1rem 0; /* logo stays left, adds spacing below */
            height: 5rem;
            width: auto;
            max-width: 300px;


        }
        
        .pk-slogan {
            font-size: 1.1rem;
            color: #b0bec5;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            max-width: 300px;
        }
        
        .pk-social-section {
            margin-bottom: 2rem;
        }
        
        .pk-social-title {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: #e0e0e0;
            font-weight: 600;
        }
        
        .pk-social-links {
            display: flex;
            gap: 1rem;
        }
        
        .pk-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .pk-social-link:hover {
            background: greenyellow;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px (0, 0, 0, 0.4);
        }
        
        .pk-footer-links {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 250px;
        }
        
        .pk-link-group {
            flex: 1;
            min-width: 150px;
        }
        
        .pk-link-title {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: greenyellow;
            font-weight: 600;
        }
        
        .pk-link-list {
            list-style: none;
        }
        
        .pk-link-item {
            margin-bottom: 0.8rem;
        }
        
        .pk-link {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .pk-link:hover {
            color: greenyellow;
            transform: translateX(5px);
        }
        
        .pk-link i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .pk-footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        .pk-copyright {
            color: #ffffff;
            font-size: 0.95rem;
        }
        
        .pk-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .pk-legal-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .pk-legal-link:hover {
            color: greenyellow;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .pk-footer-content {
                flex-direction: column;
            }
            
            .pk-footer-links {
                flex-direction: column;
            }
            
            .pk-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .pk-legal {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .pk-social-links {
                justify-content: center;
            }
            
            .pk-link-group {
                min-width: 100%;
            }
        }

        .sizeForLoading{
height: fit-content;
width: auto;
padding: 0%;
        }


        /*This is testing for new button*/

        /* From Uiverse.io by gharsh11032000 */ 
.animated-button {
    position: relative;
    display: flex;
    align-items: center !important; 
    justify-content: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: greenyellow;
    box-shadow: 0 0 0 2px greenyellow;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
    position: absolute;
    width: 24px;
    fill: greenyellow;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: greenyellow;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #212121;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px greenyellow;
  }
  
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  
  .buttonCenterFix {
    display: flex;
    justify-content: center; /* horizontally centers the button */
  }

.buttonTextFix{
    text-decoration: none;
}


  a{
    text-decoration: none;
  }

/**Testing for new popup**/

.mobile-warning {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.mobile-warning-content {
  background: black;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
}

.mobile-warning-content button {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  background-color: Yellowgreen;
  color: white;
  cursor: pointer;
}
