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);
    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) ;
  
}


.logo {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo img {
    width: 100px;
    height: 50px;
    margin-right: 5px;
}




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;
    }
}




.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;
}
.whitebold {
    color: white;
}

#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; 
    margin-left: 8px; 
}

.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: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);
}

.primary i svg{
    height: 20px;
    width: 20px;
    margin-bottom: -5px;
  }
  .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; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.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(15, 15, 35, 0.85); 
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);

}


.feature-box:hover {
    transform: translateY(-5px);
}
.hidden-features {
    display: none; 
    opacity: 0;
    transform: translateY(20px); 
    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;
}


.shoot-up {
    transform: translateY(-30px); 
    opacity: 0; 
}



.show-more-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    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: #ffffffa8;
}

.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-box i svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; 
    
    
      background: linear-gradient(to bottom right, rgba(0, 123, 255, 0.219), #0057b300);

    padding: 8px;
    border-radius: 8px;
    width: 35px;  
    height: 35px; 
}

.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;
}

.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, #00C6FF); 
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-in-out; 
}

.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; 
    margin: 0 auto; 
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1100px; 
}



.server-container {
    max-width: 1150px; 
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 80px;
}

.divider-line {
    border: none;
    height: 1px;
    background: #3a3f5c; 
    width: 150%; 
    max-width: 1140px; 
    margin: 0 auto; 
}


.server-header {
    background: #1d2735; 
    padding: 8px 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto; 
}


.window-controls {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}


.window-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background: #ff2f24; }
.yellow { background: #ffbd2d; }
.green { background: #2fff4e; }


.dashboard-title {
    flex-grow: 1;
    text-align: center;
}

.resource-label {
    font-size: 12px;
    color: #ffffff;
}


.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; 
    line-height: 1.2; 
}


.server-console .starting {
    color: #4ADE80;
}

.server-console .backup {
    color: #FACC15;
}

.server-console .prompt {
    align-self: flex-start;
    white-space: nowrap;
}


.server-console .cursor {
    display: inline-block;
    width: 8px;       
    height: 1em;      
    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 {
    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;
}


.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; 
    transition: background 0.3s ease, transform 0.2s ease; 
}


.plugin-stat-install {
     background-color: #0077ff; 
}

.plugin-stat-update {
    background-color: #4B5563; 
}

.version-stat-switch {
  background-color: #0077ff;
}

.version-stat-current {
    background-color: #4B5563; 
    cursor: not-allowed; 
    opacity: 0.7;
}


.plugin-stat-install:hover,
.plugin-stat-update:hover,
.version-stat-switch:hover {
  
    transform: scale(1.01); 
}


.Server-Settings {
    padding: 15px;
}

.Server-Settings h3 {
    margin-bottom: 15px;
}

.server-config {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    margin-bottom: 10px;
}

.server-config label {
    font-weight: bold;
    font-size: 12px; 
    width: 150px; 
    text-align: left; 
    margin-right: 10px; 
}

.server-config input {
    flex: 1;
    padding: 10px;
    border: 1px solid #1f2937; 
    border-radius: 5px;
    background-color: #1f2937; 
    color: rgb(255, 255, 255); 
    max-width: 300px;
    outline: none; 
    transition: none; 
}

.server-config input:focus {
    border: 1px solid #1f2937 !important; 
    box-shadow: none !important; 
    background-color: #1f2937 !important; 
}

.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 ;
}

.file-explorer, .Version-Manager, .Server-Settings, .Plugin-Manager {
    display: none;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}


.file-explorer:first-of-type {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important; 
}



.server-features {
    display: flex;
    flex-wrap: wrap;          
    justify-content: space-around;
    margin-top: 30px;
    text-align: center;
    gap: 20px;                
}

.server-features i svg {
    height: 25px;
    width: 25px;
    margin-bottom: -5px;
    color: #0077ff;
    }
.server-features > div {
    
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;   
    margin-bottom: 20px;      
}

.server-features h4 {
    color: #ffffff;
    font-size: 18px;
}

.server-features p {
    font-size: 16px;
    color: #dfdfdff1;
    font-family: 'Space Grotesk', sans-serif;
}

@media screen and (max-width: 768px) {
    .server-container {
        max-width: 100%;
        padding: 20px;
        margin-left: -10px; 
    }

    .server-dashboard {
        padding: 15px;
        gap: 15px;
        margin-left: -5px;
        max-width: 97%;
    }

    .server-config {
        flex-direction: column; 
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .server-config label {
        width: auto;
        text-align: center;
        margin-bottom: 5px; 
    }

    .server-config input {
        width: 90%; 
        max-width: 280px;
    }

    .save-btn {
        width: 100%; 
        max-width: 200px;
        float: none; 
        margin: 20px auto;
        display: block;
    }
    .server-header {
        padding: 10px;
        flex-direction: column;
        text-align: center;
        margin-left: -5px; 
    }

    .control-buttons {
        grid-template-columns: 1fr; 
        gap: 8px;
        margin-left: -5px;
    }
}

.faq-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
   
    border-radius: 10px;
}


.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;
}

.faqred {
      background: linear-gradient(45deg, #007BFF, #00C6FF); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.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; 
    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;
}


.faq-item.open + .faq-content {
    max-height: 500px; 
    opacity: 1;
    padding: 15px; 
}



.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.open i {
    transform: rotate(180deg);
}


.support-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


.support-btn {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 14px 15px;
    border-radius: 50px; 
    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; 
    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-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;

}


.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;
}


.support-btn svg {
    transition: transform 0.3s ease-in-out;
}

.support-btn:hover svg {
    transform: scale(1.2);
}



.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; 
    height: 40px;
    background-color: #15243b;
    border-radius: 15%; 
    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-items: flex-start;
    width: 100%;
    gap: 100px; 
    flex-wrap: wrap;
    text-align: 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;
    }
}


@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); 
    }
}

section.plans h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

section.plans h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

section.plans p {
  line-height: 1.6;
}


.hero_section {
    display: block;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
    z-index: 2;
    position: relative;
  	margin-top: 110px;
}

.hero_main {
    display: block;
    /*height: 620px;*/
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
  	margin-top: 85px;
}

.hero_main .bx-wrapper {
    background: none;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
}

.hero_slider {
    margin: 0;
}

.hero_section .bx-controls-direction {
    display: none;
}

.hero_content {
    display: block;
    z-index: 3;
    position: relative;
}

.hero_content h2 {
	font-family: "Poppins", sans-serif;
    color: var(--primary-color);
}

.hero_content p {
	font-family: "Poppins", sans-serif;
    line-height: 26px;
    font-size: 20px;
}

.hero_plans_left {
    display: block;
    margin-right: 50px;
}

.hero_plans_left h3 {
    color: var(--blue-color);
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
}

.hero_plans_left h3 span {
    color: #ffffff;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    display: inline-block;
}

.starting_at {
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero_plans_left .btn-primary {
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	padding: 8px 40px;
}

/* Resi misteriju */
.hero_plans_left .btn-primary i {
	transition: left all .4s ease 0s;
	position: relative;
}

.hero_plans_left .btn-primary:hover i {
	left: 6px;

}
/* dovde */
.hero_content_image {
    display: block;
    text-align: center;
}

.hero_section::after {
    content: '';
    width: 100%;
    height: auto;
    top: 0;
    display: block;
    background: url(../img/hero_header.png) no-repeat center top;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}

.hero_dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    z-index: 6;
    margin-top: 40px;
}

.hero_dots a {
    width: 19%;
    position: relative;
}

.hero_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    width: 100%;
    padding: 18px;
    min-height: 76px;
    background: rgba(30, 33, 62, .6);
    border-radius: 10px;
    position: relative;
}

.hero_box .pager__icons {
    display: inline-block;
    margin-right: 15px;
}

.hero_box .pager__icons .icon img {
	width: 50px;
	height: 50px;
}

.hero_box h5 {
	font-family: "Poppins", sans-serif;
	color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 0;
    display: block;
    width: 100%;
}

.hero_box p {
    display: none;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 18px;
    padding-top: 8px;
    width: 100%;
}

.hero_box .icon_active {
    display: none;
}

.hero_dots a::before {
    content: '';
    width: 0;
    height: 4px;
    display: block;
    background: var(--blue-color);
    position: absolute;
    right: 0px;
    left: 0;
    top: 0px;
    margin: auto;
    border-radius: 6px;
    z-index: 2;
    transition: all ease-out 0.5s;
}

.hero_dots a::after {
    content: '';
    width: 0;
    height: 0;
    display: block;
    border: 8px solid var(--blue-color);
    border-color: transparent transparent var(--blue-color) transparent;
    z-index: 2;
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all ease-out 0.5s;
    opacity: 0;
}

.hero_dots a.active::before {
    width: 80%;
}

.hero_dots a.active::after {
    opacity: 1;
}

.hero_dots a.active .hero_box {
    padding: 22px 18px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.hero_dots a.active .hero_box .pager__icons {
    width: 55px;
}

.hero_dots a.active .hero_box {
    background: var(--semi-dark);
}

.hero_dots a.active .hero_box .icon_active {
    display: block;
}

.hero_dots a.active .hero_box .icon {
    display: none;
}

.hero_dots a.active .hero_box h5 {
    color: var(--primary-color);
}

.hero_dots a.active .hero_box h5 br {
    display: none;
}

.hero_dots a.active .hero_box p {
    display: block;
}

@media (max-width: 1400px) {
    .hero_section {
        padding-bottom: 100px;
    }
}

@media (max-width: 1200px) {
    .main-menu>ul>li>a {
        padding: 10px 20px;
    }
    .hero_section {
        padding-bottom: 0;
    }
    .hero_main {
        z-index: 2;
        min-height: auto;
    }
    .hero_content h2 {
        font-size: 45px;
    }
    .hero_content {
        padding-bottom: 0;
    }
    .hero_dots {
        margin-top: 0;
    }
    .hero_plans_left h3 {
        font-size: 42px;
    }
    .hero_plans_left h3 span {
        font-size: 16px;
    }
    .hero_dots {
        margin-top: 40px;
    }
    .hero_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .hero_box .pager__icons {
        margin: 0 0 10px 0;
    }
    .hero_box h5 {
        text-align: center;
    }
    .hero_dots a.active .hero_box {
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .hero_dots a.active .hero_box .icon_active {
        display: inline-block;
    }
}

@media (max-width: 991px) {
	.hero_content_image {
		display: none;
	}
    .header-wraper {
        padding: 0px;
    }
    .header__main {
        display: block;
    }
    .hero_content {
        padding-top: 50px;
        text-align: center;
    }
    .hero_plans {
        display: block;
    }
    .hero_plans_left {
        margin-right: 0;
    }
    .hero_plans_left h3 span {
        display: block;
    }
    .hero_plans_left h3 span br {
        display: none;
    }
    .hero_content p {
        margin-bottom: 25px;
    }
    .hero_plans_left h3 {
        margin-bottom: 25px;
    }
    .hero_content_image {
        padding-top: 40px;
        text-align: center;
    }
    .hero_section .bx-controls-direction {
        display: block;
    }
    .hero_section .bx-wrapper .bx-controls-direction a {
        width: 48px;
        height: 48px;
        display: block;
        top: 25%;
        border-radius: 100%;
        text-indent: inherit;
        font-size: 0;
    }
    .hero_section .bx-wrapper .bx-prev {
        background: var(--blue-color);
    }
    .hero_section .bx-wrapper .bx-prev::after {
        content: "\f060";
        font-family: 'Font Awesome 5 Pro';
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 48px;
    }
    .hero_section .bx-wrapper .bx-next {
        background: var(--blue-color);
    }
    .hero_section .bx-wrapper .bx-next::after {
        content: "\f061";
        font-family: 'Font Awesome 5 Pro';
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        display: block;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .hero_dots {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .hero_dots a {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 36px !important;
        line-height: 40px !important;
    }
    h3 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    .hero_dots {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero_section .bx-wrapper .bx-controls-direction a {
        top: 40%;
    }
}

.section_title {
	margin-bottom: 4rem;
}

.section_title p {
}

.section_title h2 {
	font-family: "Poppins", sans-serif;
	color: var(--primary-color);
	position: relative;
	padding: 8px 0;
	font-size: 32px;

}

.section_title h2 span {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--primary-color);
	color: transparent;
	letter-spacing: 0px;
}

.section_title h2::before {
  background: rgba(0, 26, 255, .08);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,26,255,0.06);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,26,255,0.06);
	box-shadow: 0px 0px 20px 0px rgba(0,26,255,0.06);
  	border-radius: 0 30px;
  	content: "";
  	width: 14%;
  	height: 100%;
  	position: absolute;
  	top: 0px;
  	left: -20px;
  	z-index: -1;
}

@media (max-width: 768px) {
    .section_title h2::before {
        width: 30%;
    }
}	

@media (max-width: 576px) {
    .section_title h2::before {
        width: 50%;
    }
}



@media (max-width: 768px) {
    .bx-pager {
        display: none !important;
    }
}

/* CPU PLAN SECTION */
.cpu-section {
    padding: 80px 20px;
    text-align: center;
}

.cpu-title {
    font-size: 2.6rem;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.cpu-title span {
    background: linear-gradient(45deg, #007BFF, #00C6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cpu-subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-family: system-ui, sans-serif;
}

/* GRID */
.cpu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.cpu-card {
    position: relative;
    cursor: pointer;
}

.cpu-card input {
    display: none;
}

.cpu-content {
    background: linear-gradient(180deg, #111827, #1a2235);
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(0,119,255,0);
}

.cpu-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.cpu-content p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* BADGES */
.cpu-badge {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 50px;
    font-weight: bold;
}

.cpu-badge.free {
    background: #374151;
    color: #e5e7eb;
}

.cpu-badge.intel {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    color: white;
}

.cpu-badge.amd {
    background: linear-gradient(90deg, #ef4444, #f97316);
    color: white;
}

/* ACTIVE STATE */
.cpu-card input:checked + .cpu-content {
    transform: translateY(-8px) scale(1.03);
    border: 1px solid #3b82f6;
    box-shadow: 0 0 40px rgba(0,119,255,0.45);
}

/* HOVER */
.cpu-card:hover .cpu-content {
    transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cpu-grid {
        grid-template-columns: 1fr;
    }
}
/* NAV DROPDOWN LINKS */
.nav-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* MEGA DROPDOWN */
.dropdown-menu.mega {
    min-width: 230px;
    padding: 8px;
    border-radius: 10px;
    animation: fadeIn 0.25s ease;
}

/* DROPDOWN ITEMS */
.dropdown-menu.mega li a {
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.25s, transform 0.2s;
}

.dropdown-menu.mega li a:hover {
    background: rgba(0, 119, 255, 0.15);
    transform: translateX(4px);
}

/* SEE ALL BUTTON */
.dropdown-menu .see-all a {
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
    background: linear-gradient(90deg, #0077ff, #00c6ff);
    color: white;
}

.dropdown-menu .see-all a:hover {
    background: linear-gradient(90deg, #0061e0, #00aaff);
    transform: none;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE: SIMPLE LIST */
@media (max-width: 768px) {
    .nav-dropdown {
        display: none;
    }
}
.icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 5px;
    background: linear-gradient(45deg, #0077ff, #00c6ff);
}

.icon.mc { mask: url("Assets/icons/mc.svg") no-repeat center; }
.icon.premium { mask: url("Assets/icons/star.svg") no-repeat center; }
.icon.server { mask: url("Assets/icons/server.svg") no-repeat center; }
.icon.bot { mask: url("Assets/icons/bot.svg") no-repeat center; }
.icon.web { mask: url("Assets/icons/web.svg") no-repeat center; }
.icon.cloud { mask: url("Assets/icons/cloud.svg") no-repeat center; }

.icon {
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: #00c6ff;
}
.dropdown-menu.games li a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-menu.games img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
    background: #111;
}
@media (max-width: 768px) {

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 15, 40, 0.9);
        margin-top: 5px;
        padding-left: 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px;
        font-size: 15px;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }
}
.dropdown-menu i {
    margin-right: 10px;
    color: #00c6ff;
    font-size: 16px;
    min-width: 18px;
}
  header nav ul li.dropdown .client-area {
    font-weight: 600;
}
  /* MODERN DROPDOWN CARET */
.nav-caret {
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255,255,255,0.9);
    border-bottom: 2px solid rgba(255,255,255,0.9);
    transform: rotate(45deg);
    margin-left: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Rotate when active */
.dropdown.active .nav-caret {
    transform: rotate(-135deg);
    border-color: #00c6ff;
}

/* Subtle hover effect */
.nav-link:hover .nav-caret {
    border-color: #00c6ff;
}


/* Keep Game Hosting slightly wider */
.nav-dropdown .game-menu {
    width: 260px;
    min-width: 260px;
}
/* CLEAN DROPDOWN WIDTH FIX */
.clean-menu {
    width: 180px;
    min-width: 180px;
    padding: 4px;
}
.clean-menu li a {
    padding: 10px 12px;
    text-align: left;
}
/* ================= MOBILE NAV FIX ================= */
@media (max-width: 768px) {

    /* Hide menu by default */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0b132b;
        z-index: 999;
    }

    /* Show menu when hamburger active */
    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    /* Dropdown triggers */
    .nav-link,
    .client-area {
        width: 100%;
        padding: 14px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdown menus become accordion */
    .dropdown-menu {
        position: static !important;
        display: none;
        width: 100% !important;
        min-width: 100% !important;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Clean menus */
    .clean-menu li a {
        padding: 12px 28px;
        margin: 4px 16px;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
    }

    /* Game menu */
    .game-menu li a {
        padding: 12px 28px;
        margin: 4px 16px;
        background: rgba(255,255,255,0.06);
        border-radius: 10px;
    }

    .game-menu img {
        width: 30px;
        height: 30px;
    }
}
/* FIX ARROW ALIGNMENT */
.nav-link,
.client-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .nav-caret {
        top: 0;
        margin-left: auto;
    }
}
.nav-caret {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    position: relative;
    top: 1px; /* fine vertical alignment */
}
/* SHOW ARROW ONLY ON DESKTOP */
@media (max-width: 768px) {
    .nav-caret {
        display: none;
    }
}
.client-area .nav-caret {
    display: none;
}
@media (max-width: 768px) {

    /* Allow dropdowns to expand */
    nav ul li {
        height: auto !important;
        overflow: visible !important;
    }

    /* Ensure dropdown content is visible */
    .dropdown {
        overflow: visible !important;
    }

    .dropdown-menu {
        overflow: visible !important;
        max-height: none !important;
    }

}
/* ================= DROPDOWN VISIBILITY FIX ================= */
.dropdown-menu {
    display: none;
}

.dropdown.active > .dropdown-menu {
    display: block;
}
@media (max-width: 768px) {

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 24px;
        margin: 6px 16px;
        background: rgba(255,255,255,0.05);
        border-radius: 10px;
    }

    .dropdown-menu img {
        width: 28px;
        height: 28px;
        object-fit: cover;
        border-radius: 6px;
    }
}
/* ================= CLEAN OTHER HOSTING ICONS ================= */

.other-menu a {
    position: relative;
    padding-left: 46px;
}

/* Base icon */
.other-menu a::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.95;
}
.icon-vps::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' fill='none' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='5' y='5' width='14' height='14' rx='3'/%3E%3Crect x='9' y='9' width='6' height='6' rx='1.5'/%3E%3Cpath d='M3 9h2M3 15h2M19 9h2M19 15h2M9 3v2M15 3v2M9 19v2M15 19v2'/%3E%3C/svg%3E");
}

.icon-server::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' fill='none' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='4' y='3' width='16' height='5' rx='2'/%3E%3Crect x='4' y='9' width='16' height='5' rx='2'/%3E%3Crect x='4' y='15' width='16' height='6' rx='2'/%3E%3Ccircle cx='7' cy='5.5' r='0.8'/%3E%3Ccircle cx='7' cy='11.5' r='0.8'/%3E%3Ccircle cx='7' cy='17.5' r='0.8'/%3E%3C/svg%3E");
}
/* DISCORD BOT */
.icon-discord::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' fill='none' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='4' y='7' width='16' height='11' rx='2'/%3E%3Ccircle cx='9' cy='12.5' r='1'/%3E%3Ccircle cx='15' cy='12.5' r='1'/%3E%3Cpath d='M8 7V5h8v2'/%3E%3C/svg%3E");
}
/* WEB HOSTING – BROWSER WINDOW */
.icon-globe::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' fill='none' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cline x1='3' y1='8' x2='21' y2='8'/%3E%3Ccircle cx='7' cy='6' r='0.6'/%3E%3Ccircle cx='10' cy='6' r='0.6'/%3E%3C/svg%3E");
}

.other-menu a:hover::before {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(0,224,255,0.6));
}
.icon-vps::before {
    opacity: 1;
}
.other-menu a:hover .icon-vps::before {
    filter: drop-shadow(0 0 3px rgba(0,224,255,0.5));
}
/* ================= MOBILE: FLAT MENU (NO DROPDOWNS) ================= */
/* ================= BASE DROPDOWNS ================= */
.dropdown-menu {
    display: none;
}

.dropdown.active > .dropdown-menu {
    display: block;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {

    /* Hamburger menu */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul.active {
        display: block;
    }

    /* Disable dropdown visuals */
    .nav-caret,
    .arrow {
        display: none !important;
    }

    /* Make dropdown menus behave like normal lists */
    .dropdown-menu {
        display: block !important;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .dropdown-menu li {
        padding-left: 16px;
    }

    .dropdown-menu li a {
        padding: 14px 20px;
        display: block;
    }
}
/* ================= MOBILE MENU ================= */

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0b0f14;
    padding: 12px 0;
}

.mobile-menu a {
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.mobile-menu a:hover {
    background: rgba(255,255,255,0.05);
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 12px 0;
}

/* ================= FULLSCREEN MOBILE MENU ================= */

@media (max-width: 768px) {

    /* Hide desktop nav */
    nav ul {
        display: none !important;
    }

    /* Fullscreen menu */
    .mobile-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: linear-gradient(180deg, #0b0f14, #0e141c);
        display: none;
        flex-direction: column;
        overflow-y: auto;
        padding: 20px 0;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
        animation: slideUp 0.3s ease;
    }

    .mobile-menu a {
        padding: 16px 24px;
        font-size: 16px;
        color: white;
        text-decoration: none;
    }

    .mobile-menu a.sub {
        padding-left: 40px;
        font-size: 14px;
        color: rgba(255,255,255,0.8);
    }

    .mobile-menu a:hover {
        background: rgba(255,255,255,0.06);
    }

    .mobile-menu hr {
        margin: 16px 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hamburger {
    padding: 10px;
}
body.menu-open {
    overflow: hidden;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #0b0f14, #0e141c);
    padding: 10px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Show when active */
.mobile-menu.active {
    display: flex;
    animation: slideDown 0.25s ease;
}

/* Menu links */
.mobile-menu a {
    padding: 14px 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover / tap feedback */
.mobile-menu a:hover {
    background: rgba(255,255,255,0.06);
}

/* Slight indent for sub-items (games & hosting types) */
.mobile-menu a.sub {
    padding-left: 36px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Divider */
.mobile-menu hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 12px 0;
}

/* Mobile animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile only */
@media (max-width: 768px) {
    nav ul {
        display: none !important;
    }
}
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 64px;
        margin: 0;
        border-radius: 0;
        z-index: 1000;
    }
}
/* ================= MOBILE MENU – FINAL COOL UI ================= */
@media (max-width: 768px) {

    /* Hide desktop nav */
    nav ul {
        display: none !important;
    }

    /* Mobile menu container */
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 30px 0 50px;

        background:
            radial-gradient(circle at top left, rgba(0,119,255,0.25), transparent 45%),
            radial-gradient(circle at top right, rgba(0,220,255,0.18), transparent 55%),
            linear-gradient(180deg, #070b14, #04070e);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        z-index: 999;
        display: none;
        animation: mobileMenuFade .4s ease;
    }

    /* Show menu */
    .mobile-menu.active {
        display: block;
    }

    /* Menu links */
    .mobile-menu a {
        position: relative;
        margin: 14px 22px;
        padding: 18px 26px;

        border-radius: 18px;
        font-size: 15px;
        font-weight: 600;
        color: #f5faff;
        text-decoration: none;

        display: flex;
        align-items: center;
        gap: 14px;

        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.03)
        );

        box-shadow:
            inset 0 0 0 1px rgba(255,255,255,0.08),
            0 20px 50px rgba(0,0,0,0.85);

        transition: transform .25s ease, box-shadow .25s ease;
        overflow: hidden;
    }

    /* Glow border */
    .mobile-menu a::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background: linear-gradient(
            120deg,
            transparent 30%,
            rgba(0,160,255,0.6),
            rgba(0,220,255,0.5),
            transparent 70%
        );
        opacity: 0.6;
        filter: blur(12px);
        z-index: -1;
    }

    /* Hover / tap */
    .mobile-menu a:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow:
            0 30px 80px rgba(0,0,0,0.95),
            0 0 40px rgba(0,160,255,0.6),
            inset 0 0 0 1px rgba(0,220,255,0.6);
    }

    /* Sub items */
    .mobile-menu a.sub {
        margin-left: 40px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(230,240,255,0.85);
    }

    /* Divider */
    .mobile-menu hr {
        border: none;
        height: 1px;
        margin: 30px 28px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(0,180,255,0.8),
            transparent
        );
    }

    /* Animation */
    @keyframes mobileMenuFade {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

