/* Base Styles */
body {
    background: #0a0a0a;
    color: #FDBD01;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

/* CRT Effect */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0.1) 50%, rgba(0, 0, 0, 0.25) 50%),
      linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9999;
    animation: flicker 0.15s infinite;
  }
  
  .crt-scanline {
    position: fixed;
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 0, 0.3);
    animation: scan 4s linear infinite;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    z-index: 9998;
  }
  
  /* Pixel Cursor */
  .pixel-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAIpJREFUOE9jZKAQMA5V+9+BgYHhPxTD/0gxRgYGhn8MDAz/YGDABBhRNDEwMBxHE4M6iAXFBSAXoIlBXYDkAqAL/qO5AOQCqBhkFyC5AIsLQC74j+YCkAugYpBdAHIBhgtQXYDkAiwuQHIBhgtQXYDkAiwuQHIBhgtQXYDkAiwuQHIBhgtQXAAAzLYwGqAtp3IAAAAASUVORK5CYII=') 
      no-repeat center;
    pointer-events: none;
    z-index: 9999;
  }
  
  .cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #b9ec01;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    z-index: 9998;
  }

/* Top Navigation */
.top-bar {
    background-color: #1a1a1a;
    color: #FDBD01;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,255,0,0.3);
    z-index: 1000;
    border-bottom: 2px solid #FDBD01;
}

.top-bar img {
    height: 40px;
    filter: hue-rotate(90deg);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 5 20 5 5px;
}

.nav-links a {
    color: #FDBD01;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.8em;
    text-shadow: 0 0 5px #FDBD01;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    padding: 5 5 5 5px;
}

.nav-links a:hover {
    color: #FF5C00;
    text-shadow: 0 0 10px #FF5C00;
}

/* Main Banner */
.banner {
    width: 100%;
    height: 760px;
    background-image: url('https://res.cloudinary.com/dagiysqvy/image/upload/v1742820705/Group_1073716019_c81bzm_c_crop_w_2600_h_760_me71ym.png');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    border: 4px solid #FDBD01;
    position: relative;
}

/* Animated Title */
#mainTitle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5em;
    text-shadow: 4px 4px #FF5C00;
    animation: titleGlitch 2s infinite;
    z-index: 100;
    cursor: pointer;
}

/* Carousel Styles */
.carousel-wrapper {
    overflow: hidden;
    width: 90%;
    margin: 40px auto;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.carousel-wrapper.websites {
    border: 4px solid #FDBD01;
    box-shadow: 0 0 20px #FDBD01;
}

.carousel-wrapper.community {
    border: 4px solid #ffffff;
    box-shadow: 0 0 20px #ffffff;
}

.carousel-wrapper.games {
    border: 4px solid #FF5C00;
    box-shadow: 0 0 20px #FF5C00;
}

.carousel-wrapper.tools {
    border: 4px solid #888;
    box-shadow: 0 0 20px #888;
    height: 200px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 30px;
    padding: 20px;
    width: fit-content;
    animation: scrollLoop 30s linear infinite;
}

.carousel a {
    text-decoration: none;
    color: #FDBD01;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease !important;
}

.carousel a:hover {
    transform: scale(1.05) !important;
    z-index: 2;
}

.carousel a:hover img {
    filter: none !important;
    transform: perspective(600px) rotateY(-10deg) scale(1.1) !important;
    box-shadow: 0 0 15px #FF5C00 !important;
}

.carousel img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid;
    filter: sepia(1) hue-rotate(60deg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(230, 255, 5, 0.308);
    transition: all 0.3s ease !important;
}

.coming-soon {
    font-size: 3em;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px #FDBD01;
    padding-top: 20px;
    top: 50%;
    left: 50%;
}

#mainTitle {
    top: 40%; /* Adjusted from 30% */
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    line-height: 1.2;
}

/* Animations */

@keyframes titleGlitch {
    0% { transform: translate(-50%, -50%) translate(0); }
    20% { transform: translate(-50%, -50%) translate(-2px, 2px); }
    40% { transform: translate(-50%, -50%) translate(2px, -1px); }
    60% { transform: translate(-50%, -50%) translate(-3px, 1px); }
    80% { transform: translate(-50%, -50%) translate(1px, -2px); }
    100% { transform: translate(-50%, -50%) translate(0); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
  }
  
  @keyframes flicker {
    0% { opacity: 0.9; }
    20% { opacity: 0.8; }
    40% { opacity: 0.97; }
    60% { opacity: 0.95; }
    80% { opacity: 0.93; }
    100% { opacity: 1; }
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* CRT and Cursor Effects (keep existing styles) */
/* ... (same as previous CRT and cursor styles) ... */