body {
  background: radial-gradient(circle at top, rgb(0, 20, 39) 20%, rgb(0, 15, 30) 50%, rgb(0, 17, 36) 80%, rgb(0, 10, 20) 100%);

    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 20px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 30px;
    background: rgba(0, 15, 40, 0.589); /* Dark Blue Transparent */
    border-radius: 30px;
    width: 80%;
    max-width: 1200px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin: 20px auto;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-family: Arial, sans-serif;
}



header.scrolled {
    transform: translateY(-5px) ;
  
}


.testimonials {
    background-color: #000000; 
    padding: 50px 20px; 
    text-align: center; 
}

.testimonials h2 {
    font-size: 30px; 
    margin-bottom: 20px; 
    color: #ffffff; 
}

.testimonials p {
    font-size: 1em; 
    color: #ffffff; 
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative; 
    overflow: hidden; 
    height: 200px; 
}

.testimonial-box {
    position: absolute; 
    width: 100%; 
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-box.active {
    opacity: 1; 
}

.user-logo {
    width: 100px;
    height: 100px; 
    border-radius: 50%; 
    margin-bottom: 10px; 
}

.user-name {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
}




@keyframes slide {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.logo {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.bnodes {
    background: linear-gradient(45deg, #0073ff, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}



nav {
    margin-left: 10px; 
}

nav ul {
    display: flex;
    gap: 20px; 
    padding: 0;
    margin: 0;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    font-weight: bold;
    font-family: system-ui, sans-serif;
    transition: color 0.3s;
}


nav ul li:not(.dropdown) > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #007bff, #00d4ff); 
    transition: width 0.3s ease;
    transform: translateX(-50%);
}


nav ul li:not(.dropdown) > a.active::after {
    width: 100%; 
}


nav ul li:not(.dropdown) > a:hover::after {
    width: 100%;
}




.client-area, 
.dropdown-menu a {
    position: relative;
    text-decoration: none;
    transition: none;
}

.client-area::after,
.dropdown-menu a::after {
    content: none !important; 
}



nav ul {
    display: flex;
    align-items: center; 
}


nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .client-area {
    background: rgb(0, 162, 255);
    color: white;
    padding: 10px 14px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
}

nav ul li.dropdown .arrow {
    transition: transform 0.3s ease;
    font-size: 0.5rem;
}

nav ul li .dropdown-menu {
    position: absolute;
    top: 125%; 
    left: -40px; 
    background: rgb(0, 19, 40); 
    border-radius: 5px;
    display: none; 
    flex-direction: column;
    width: max-content; 
    min-width: 180px; 
    padding: 4px 0;
    z-index: 999;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


nav ul li .dropdown-menu li {
    list-style: none;
    padding: 0;
}

nav ul li .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;

}

nav ul li .dropdown-menu li a:hover {
    background: rgba(43, 43, 43, 0.363);
}


nav ul li.dropdown.active .dropdown-menu {
    display: block;
}


nav ul li.dropdown.active .arrow {
    transform: rotate(180deg); 
}
.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    position: absolute; 
    top: 13px; 
    right: 30px; 
}

.bar {
    height: 2px;
    width: 18px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        
        background: rgb(0, 15, 40); 
        backdrop-filter: blur(15px); 
        -webkit-backdrop-filter: blur(15px);
    
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    
        padding: 10px 0;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    nav ul li a {
        text-decoration: none; 
        -webkit-tap-highlight-color: transparent; 
        outline: none; 
    }
    
    nav ul li:not(.dropdown) > a::after {
        content: none !important;
    }
    nav ul.active {
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0); 
    }

    .hamburger {
        display: flex; 
        text-decoration: none; 
        -webkit-tap-highlight-color: transparent; 
        outline: none; 
    }

    nav {
        flex-direction: column;
        align-items: flex-start; 
    }

    nav ul {
        gap: 10px;
    }

  
    .dropdown {
        display: none; 
    }


    .mobile-client-links {
        display: block;
    }
}


@media (min-width: 769px) {
    .mobile-client-links {
        display: none !important;
    }
}


.server-status, .live-users {
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    animation: pulse 1.5s infinite;
}

.footer-icon i {
    font-size: 2rem;
    color: #ff0004;
    animation: glow 1.5s infinite alternate;
}

.footer-credit {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}
.live-users i {
    color: #ffa4a5; 
}
#onlineCount {
    color: rgb(201, 255, 201); 
}

.hero {
    text-align: center;
    padding: 60px 20px; 
    margin-top: -50px; 
}

.hero h1 {
    font-size: 53px; 
    font-weight: bold;
    letter-spacing: 2px; 
    color: transparent; 
    background: linear-gradient(45deg, #007bff, #00f2fe); 
    -webkit-background-clip: text;
    font-family: 'Montserrat', sans-serif;
}


#particles-js {
    position: absolute;  
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;  
}


.hero p {
    font-size: 20px; 
    color: #ddd;
    margin-top: -20px;
    max-width: 600px; 
    margin-left: auto;
    margin-right: auto;
       font-family: system-ui, sans-serif;

}

.buttons {
    margin-top: 30px;
}

.btn {
    padding: 15px 23px; 
    text-decoration: none;
    border-radius: 8px; 
    font-size: 15px;
    
    display: inline-block;
    transition: all 0.3s ease; 
    margin: 0 5px; 
}
.buttons .btn i {
    font-size: 14px; /* Adjust the size as needed */
    margin-left: 8px; /* Increase the spacing */
}

.primary {
    background: linear-gradient(90deg, #0077ff, #0061e0);
    border: 1px solid #0077ff;
    box-shadow:  0 0 50px rgba(0, 119, 255, 0.452);

    color: white;

   
}
.primary i svg{
  height: 20px;
  width: 20px;
  margin-bottom: -5px;
}
.primary:hover {
    background: linear-gradient(90deg, #0077ff, #0061e0);
    border: 1px solid #0077ff;
    box-shadow: 0 0 30px rgba(0, 119, 255, 0.13), 0 0 50px rgba(0, 119, 255, 0.473);
    transform: scale(1.03);
}

.secondary {
    border: 1px solid rgba(0, 119, 255, 1);
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary:hover {
    background-color: rgba(0, 87, 209, 0.15); /* Subtle transparent blue */
    color: white;
}
.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    font-family: system-ui, sans-serif;
}

.service {
    font-size: 16px;
    color: #fff; /* White text */
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon styles */
.service i svg {
 width: 25px;
 height: 25px;
 margin-top: 5px;
 background: rgba(21, 31, 73, 0.85);
 padding: 4px;
 border-radius: 8px;
}
@media (max-width: 768px) {
    .service-list {
        flex-wrap: wrap; 
        justify-content: center;
        gap: 10px;
        flex-direction: row; 
    }

    .service {
        font-size: 14px; 
        gap: 5px;
        white-space: nowrap; 
    }

    .service i svg {
        width: 20px;
        height: 20px;
        padding: 3px;
        border-radius: 6px;
    }
}

.feature-box {
    background: rgba(20, 25, 44, 0.9); 
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);
}


.feature-box:hover {
    transform: translateY(-5px);
}
.hidden-features {
    display: none; /* Initially hidden */
    opacity: 0;
    transform: translateY(20px); /* Start slightly lower */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.hidden-features.show {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}


.show-more-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    transition: transform 0.25s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s ease-in-out;
}

/* Move button upwards when closing */
.shoot-up {
    transform: translateY(-30px); /* Shoots up */
    opacity: 0; /* Fades out slightly */
}



.show-more-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: #ffffffcc;
    font-size: 16px;

    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: color 0.3s;
}

.show-more-btn i {
    transition: transform 0.3s ease;
    color: #0077ff;
 font-size: 1.4rem;
}

.show-more-btn:hover {
    color: #ffffff;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}


.features {
    text-align: center;
    padding: 50px 15px;
  
}

.features h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}
.features P {
    font-size: 1.1rem;
    font-family: system-ui, sans-serif;
}

.premium-text {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
    padding: 12px;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #58a6ff; /* Neon Blue Heading */
    margin-bottom: 4px;
}

.feature-box i svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; /* Less spacing */
    /* Compact circular background */
    background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.219), #0057b300);

    padding: 8px;
    border-radius: 8px;
    width: 35px;  /* Fixed width */
    height: 35px; /* Fixed height */

   
}
.feature-box h3 {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.feature-box p {
    font-size: 16px;
    color: rgba(252, 252, 252, 0.808);
    margin: 0;
    font-family: system-ui, sans-serif;
}
body {

    text-align: center;
}

.server-locations {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.server-locations h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}
.server-locations p {
    font-size: 1.1rem;
    font-family: system-ui, sans-serif;
}

.serverlocation {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    padding: 0 10px; 
    width: 100%;
    max-width: 1200px;
}


.stat {
    background: rgba(20, 25, 44, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(25% - 20px); /* 4 per row */
    min-width: 220px;
    max-width: 250px;
}


.stat i svg {
    width: 50px;
    height: 50px;
    color: #0077ff;
  
}

.stat span {
    font-size: 26px;
    font-weight: bold;
    color: #f8fafc;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .stats {
        margin-left: -10px;
    }
}

@media (max-width: 480px) {
    .stats {
        margin-left: -5px; 
    }
}

.region-filters button {
    margin: 5px;
    padding: 10px;
    border: none;
    cursor: pointer;
    background: rgba(17, 21, 37, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
}
.region-filters button.active {
    background: #0047ab;
}
.region-filters button:hover {
    background: rgb(24, 30, 53); 
    color: #fff; 
}
.region-filters button.active:hover {
    background: #0047ab;
}
.locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between boxes */
    justify-content: center;
    max-width: 1200px; /* Ensures proper spacing */
    margin: 0 auto; /* Centers the grid */
    margin-top: 30px;
    margin-bottom: 80px;

}.location {
    background: rgba(20, 25, 44, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px; /* Reduced padding */
    margin: 5px;
    border-radius: 15px;
    width: calc(25% - 20px); /* Ensures 4 boxes per row */
    min-width: 250px; /* Ensures responsiveness */
    height: 180px; /* Adjusted height to make it smaller */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: none;
    transition: transform 0.2s ease-in-out;
}


.location:hover {
    transform: scale(1.02);
}

.location h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 10px; /* Moves the text to the right */
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.location .status {
    background: rgba(22, 163, 74, .2);
    color: rgb(84, 255, 147);
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid rgba(22, 163, 74, .2);
    font-weight: 500;
}



/* Properly align Latency, Servers, and Uptime vertically */
.location .stats {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between stats */
}

.location .stats p {
    display: flex;
    align-items: center; /* Aligns text and bold value properly */
    gap: 120px; /* Controls space between text and bold value */
    margin: 0; /* Removes extra bottom margin */
    line-height: 1.5; /* Ensures compact spacing */
    font-size: 16px;
    color: #ffffff94;
    font-family: 'Space Grotesk', sans-serif;




}

.location .stats p b {
    font-weight: bold;
    color: #ffffff;
    margin: 0; /* Ensures no extra space below */
    line-height: 1; /* Keeps it aligned properly */
}
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.location.active {
    display: block;
    animation: pulse 0.3s ease-out;
}




@media (max-width: 480px) {
    .locations {
        grid-template-columns: 1fr; 
        justify-content: start; 
        padding-left: 30px; 
    }

    .location {
        width: 80%; 
        height: auto; 
        padding: 15px; 
        margin: 5px 0; 
    }

    .location h3 {
        font-size: 18px; 
        margin-left: 5px; 
    }

    .location .stats p {
        gap: 40px; 
        font-size: 14px; 
    }
}

.trusted-servers {
    text-align: center;
    color: white;
    margin: 50px 0;
    
}

.trusted-servers h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 60px; /* Adjust space below the heading */
    font-family: 'Montserrat', sans-serif;
}
.ratioserver {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.server-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px; /* Increased gap for more space between logos */
    max-width: 1100px; /* Increased width */
    margin: 20px auto;
}

.server {
    text-align: center;
    flex: 1 1 200px; /* Ensures responsiveness */
}

.server img {
    width: 150px;  /* Fixed width */
    height: 150px; /* Fixed height */
    object-fit: contain; /* Ensures the image fits inside without stretching */
    transition: transform 0.2s ease-in-out;
}
.server img:hover {
    transform: scale(1.01);
}

.server p {
    
    margin: 2px 0;
    font-size: 1.3rem;
font-weight: 600;
}


.server span {
    color: #00ff99;
    font-size: 0.8rem;
}




.featured-creators {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    
}

.featured-creators h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 27px;
}

.featured-creators p {
    font-size: 1.1rem;
    font-family: system-ui, sans-serif;
    margin-bottom: 30px;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: auto;
    justify-content: center;
    margin-bottom: 30px;
}


.creator-card {
    background: rgba(15, 19, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    width: 250px;
    max-width: 100%;
}


.creator-card:hover {
    transform: scale(1.02);
}


.creator-card img {
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name & Subs */
.creator-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1; /* Takes up available space */
}

/* Name beside the logo */
.creator-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -15px;
}

.featureheader {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.creator-details p {
    font-size: 14px;
    color: #94a3b8;
}

.youtube-icon  {
    width: 30px !important;
    height: 30px !important;

}

/* Responsive Design */
@media (max-width: 1200px) {
    .creator-grid {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .creator-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 per row */
    }
}

@media (max-width: 768px) {
    .creator-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media (max-width: 480px) {
    .creator-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
    }
}





.server-container {
    max-width: 1150px; /* Increase this for a wider layout */
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}


.server-title {
    font-size: 2rem;
    font-weight: bold;
}
.advancedb {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
}
.server-description {
    margin-top: 10px;
    font-family: system-ui, sans-serif;
    font-size: 1.1rem;
}



.server-resources, .server-controls {
    flex: 1;
}

.server-resources h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}

.resource-bar {
    background: #2a2f4a;
    height: 8px;
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
}

.resource-fill {
    background: linear-gradient(45deg, #007BFF, #0099ff); 
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-in-out; /* Smooth transition effect */
}

.server-resources p {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 5px;
}


.dashboard-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


.server-dashboard {
    background: #1d2735;
    padding: 20px;
    border-radius: 0 0 14px 14px; /* Connects smoothly with the header */
    margin: 0 auto; /* Centers the container */
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1100px; /* Adjust this as needed */
}


/* Container */
.server-container {
    max-width: 1150px; /* Matches the dashboard */
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 80px;
}
/* Separator Line */
.divider-line {
    border: none;
    height: 1px;
    background: #3a3f5c; /* Subtle grayish-blue */
    width: 150%; /* Slightly smaller than full width */
    max-width: 1140px; /* Keeps it proportional */
    margin: 0 auto; /* Centers the line */
}


.server-header {
    background: #1d2735; /* Dark navy color */
    padding: 8px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1100px; /* Matches the dashboard */
    margin: 0 auto; /* Centers it */
}

/* Mac-style window control buttons */
.window-controls {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}

/* Individual button styles */
.window-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background: #ff2f24; }
.yellow { background: #ffbd2d; }
.green { background: #2fff4e; }

/* Ensures text is centered even with buttons on the left */
.dashboard-title {
    flex-grow: 1;
    text-align: center;
}

.resource-label {
    font-size: 12px;
    color: #ffffff;
}

/* Console Output */
.server-console {
    background: #111827;
    color: #00ff00;
    font-size: 12px;
    padding: 10px;
    margin-top: 30px;
   
    border-radius: 8px;
    text-align: left;
    font-family: monospace;
    display: flex;
    flex-direction: column;
}

.server-console p {
    margin: 2px 0; /* Reduce space between lines */
    line-height: 1.2; /* Adjust line spacing */
}


.server-console .starting {
    color: #4ADE80;
}

.server-console .backup {
    color: #FACC15;
}

.server-console .prompt {
    align-self: flex-start;
    white-space: nowrap;
}

/* Blinking cursor style */
.server-console .cursor {
    display: inline-block;
    width: 8px;       /* adjust as needed */
    height: 1em;      /* match line height */
    background-color: #cccccccc;
    margin-left: 10px;
    margin-top: 1px;
    animation: blink 2s steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.control-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.control-btn {
    background: #384152;
    border: none;
    padding: 12px;
    
    color: white;
    border-radius:  8px;
    font-weight: bold;
    cursor: pointer;
}
.control-btn.active {
    background: #0077ff;
}
.control-btn i svg {
   width: 19px;
   height: 19px;
   margin-bottom: -4px;
}

/* File Explorer */
.file-explorer {
    background: #161f2e;
    padding: 10px;
    border-radius:  8px;
    margin-top: 25px;
}
.Version-Manager {
    background: #161f2e;
    padding: 10px;
    border-radius:  8px;
    margin-top: 25px;
}
.Plugin-Manager {
    background: #161f2e;
    padding: 10px;
    border-radius:  8px;
    margin-top: 25px;
}
.Server-Settings {
    background: #161f2e;
    padding: 10px;
    border-radius:  8px;
    margin-top: 20px;
}
.file-entry {
    display: flex;
    justify-content: space-between;
    background: #1f2937;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
}
.file-entry i svg {
height: 18px;
width: 18px;
margin-bottom: -3px;
}
.file-type {
    color: #aaa;
    font-size: 12px;
}

/* General button styles */
.plugin-stat-install,
.plugin-stat-update,
.version-stat-switch,
.version-stat-current {
    color: #ffffff;
    font-size: 12px;
    border-radius: 8px;
    padding: 5px 10px;
    display: inline-block;
    cursor: pointer; /* Makes them clickable */
    transition: background 0.3s ease, transform 0.2s ease; /* Smooth effect */
}

/* Specific button colors */
.plugin-stat-install {
    background-color: #0077ff; /* Light blue */
}

.plugin-stat-update {
    background-color: #4B5563; /* Dark gray */
}

.version-stat-switch {
    background-color: #0077ff; /* Light blue */
}

.version-stat-current {
    background-color: #4B5563; /* Dark gray */
    cursor: not-allowed; /* Prevents clicking */
    opacity: 0.7;
}

/* Hover effects */
.plugin-stat-install:hover,
.plugin-stat-update:hover,
.version-stat-switch:hover {
  
    transform: scale(1.01); /* Slight zoom effect */
}


.Server-Settings {
    padding: 15px;
}

.Server-Settings h3 {
    margin-bottom: 15px;
}

.server-config {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns everything to the left */
    margin-bottom: 10px;
}

.server-config label {
    font-weight: bold;
    font-size: 12px; /* Smaller text */
    width: 150px; /* Adjust width for alignment */
    text-align: left; /* Aligns text to the left */
    margin-right: 10px; /* Adds space between label and input */
}

.server-config input {
    flex: 1;
    padding: 10px;
    border: 1px solid #1f2937; /* Normal border */
    border-radius: 5px;
    background-color: #1f2937; /* Light blue background */
    color: rgb(255, 255, 255); /* Blue text */
    max-width: 300px;
    outline: none; /* Removes default focus outline */
    transition: none; /* Prevents hover/focus transitions */
}

.server-config input:focus {
    border: 1px solid #1f2937 !important; /* Keeps border same when clicking */
    box-shadow: none !important; /* Removes any focus glow effect */
    background-color: #1f2937 !important; /* Prevents background change */
}

.save-btn {
    display: block;
    margin-top: 25px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    float: right;
}

.save-btn:hover {
    background-color: #0056b3;
}
/* Hide all sections by default except the first one */
.file-explorer, .Version-Manager, .Server-Settings, .Plugin-Manager {
    display: none;
    opacity: 0;
    transform: translateY(20px); /* Start slightly lower */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Show the first section on load */
.file-explorer:first-of-type {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Fade-Up Effect */
.fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Move to normal position */
}


/* Features Section */
.server-features {
    display: flex;
    flex-wrap: wrap;          /* Allows items to wrap to the next line */
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
    gap: 20px;                /* Optional spacing between items */
}
.server-features i {
    font-size: 20px;
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.server-features i svg {
    height: 25px;
    width: 25px;
    margin-bottom: -5px;
    color: #0077ff;
    }
.server-features > div {
    /* Force each item to occupy about one-third of the row */
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;   /* So padding doesn’t break your width calculation */
    margin-bottom: 20px;      /* Spacing below each item */
}

.server-features h4 {
    color: #ffffff;
    font-size: 18px;
}

.server-features p {
    font-size: 16px;
    color: #dfdfdff1;
    font-family: 'Space Grotesk', sans-serif;
}  
@media (max-width: 768px) { /* Adjust the breakpoint as needed */
    .server-container {
        display: none;
    }
}


.faq-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
   
    border-radius: 10px;
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.faq-title {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-subtitle {
    font-size: 1.1rem ;
    font-family: system-ui, sans-serif;
    font-weight: 400;
}

.faqblue {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tab {
    background: #1e293b;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.tab.active {
    background: #3b82f6;
}

/* FAQ Items */
.faq-item {
    background: #1e293b;
    padding: 15px;
    margin-bottom: 5px;
    border-radius: 4px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: 600;
}

.faq-item:hover {
    background: #334155;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out, padding 0.2s ease-in-out;
    padding: 0 15px; /* Ensure padding remains consistent */
    font-size: 14px;
    color: #ffffffcc;
    text-align: left;
    background: #1e293b;
    margin-bottom: 10px;
    border-radius: 0px 0px 7px 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
    font-weight: 500;
    margin-top: -8px;
    font-family: 'Inter', sans-serif;
}

/* When FAQ is opened */
.faq-item.open + .faq-content {
    max-height: 500px; /* Adjust based on content */
    opacity: 1;
    padding: 15px; /* Ensure padding remains correct */
}



.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.open i {
    transform: rotate(180deg);
}

/* Support Buttons */
.support-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Button Styling */
.support-btn {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 14px 15px;
    border-radius: 50px; /* Ultra-smooth */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.support-btndiscord {
    background: linear-gradient(135deg, #404EED, #404EED);


    color: white;
    padding: 14px 15px;
    border-radius: 50px; /* Ultra-smooth */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.support-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.13);
}
.support-btndiscord:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #5864e2;

}

/* Button Shine Effect - Always Visible */
.support-btn::before,
.support-btndiscord::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 50%);
    transform: rotate(30deg);
  
}



.support-btn:hover::before {
    opacity: 1;
}

/* Smooth Icon Animation */
.support-btn svg {
    transition: transform 0.3s ease-in-out;
}

.support-btn:hover svg {
    transform: scale(1.2);
}


/* Support Footer */
.support-footer {
    margin-top: 50px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.faq-item i {
    margin: 0 5px;
    color: #3b82f6;
}

.footer {
    background: transparent;
    color: white;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #1e293b;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    
}


.icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Adjust size */
    height: 40px;
    background-color: #15243b; /* Dark blue background */
    border-radius: 15%; /* Makes it circular */
    margin-right: 8px;
}

.icon-wrapper i {
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}


.footer-links {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    align-items: flex-start;
    width: 100%;
    gap: 100px; /* Adjust as needed */
    flex-wrap: wrap;
    text-align: left; /* Ensure text starts from the left */
    margin-bottom: 50px;
}



.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #ffffff8c;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #007BFF;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #b0b3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: auto;
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px; 
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul {
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icons i {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 15px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}



/* TrustPilot Section */
.trustpilot-section {
    background: transparent;
    text-align: center;
    padding: 50px 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 50px;
}

/* Title & Subtitle */
.trustpilot-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.trustpilot-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: system-ui, sans-serif;
}

/* Review Boxes */
.trustpilot-reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    transition: opacity 0.5s ease-in-out;
}
.trustpilotblue{
    background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.review-box {
    background: #1d2233;
    padding: 15px;
    border-radius: 10px;
    width: 550px; /* Increased width */
    min-height: 200px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Review Heading & Stars */
.review-heading {
    font-size: 17px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Star Ratings */
.stars {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.stars i {
    display: inline-block;
    background: #007bff; /* Blue background */
    color: white;
    padding: 4px 7px;
    border-radius: 5px;
    font-size: 12px;
}

/* Review Content */
.review-content {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.5;
}

/* Review Author */
.review-author {
    font-size: 14px;
    margin-top: 15px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

.icon {
    color: #3498db;
    font-size: 18px;
    margin-right: 5px;
}

.trustpilot-verified {
    margin-top: 30px;
    font-size: 17px;
    color: #b0b3c0;
    text-align: center;
}

.trustpilot-logo {
    display: block;
    margin: 8px auto 0; /* Centers the logo */
    height: 25px; /* Increase size */
    width: auto; /* Maintain aspect ratio */
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-pfp {
    width: 24px; /* Adjust size */
    height: 24px;
    border-radius: 50%; /* Makes it circular */
    object-fit: cover;
}
.review-hidden {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.review-visible {
    transition: opacity 1s ease-out, transform 1s ease-out;
}
#reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto; 
        padding: 10px 20px;
        justify-content: flex-start; 
    }

    .logo {
        font-size: 1rem; 
        align-self: flex-start; 
    }
    



    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li {
        width: 100%;
        text-align: left; 
        font-size: 1.5rem;
        padding-left: 30px; 
    }

    .testimonials h2 {
        font-size: 24px; 
    }

    .testimonials p {
        font-size: 0.9em; 
    }

    .testimonial-slider {
        height: 150px;
    }

    .hero h1 {
        font-size: 36px; 
    }

    .hero p {
        font-size: 18px; 
    }

    .buttons {
        flex-direction: column;
        align-items: center; 
    }

    .btn {
        width: 70%; 
        margin: 10px 0; 
    }

    .feature-grid {
        grid-template-columns: 1fr; 
        gap: 20px; 
    }

    .footer-container {
        flex-direction: column; 
    }

    .footer-icon i {
        font-size: 1.5rem; 
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 10px 20px; 
        justify-content: flex-start; 
    }

    .logo {
        font-size: 1.1rem; 
        align-self: flex-start; 
    }

    nav ul {
        gap: 15px;
    }

    .testimonials h2 {
        font-size: 28px; 
    }

    .testimonials p {
        font-size: 1em; 
    }

    .hero h1 {
        font-size: 42px; 
    }

    .hero p {
        font-size: 19px; 
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}


