* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(12, 12, 29, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #6c63ff;
    border-radius: 10px;
    border: 3px solid rgba(12, 12, 29, 0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: #5755e6;
}
::-webkit-scrollbar-horizontal {
    height: 8px;
}
::-webkit-scrollbar-track:horizontal {
    background: rgba(12, 12, 29, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:horizontal {
    background: #6c63ff;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:horizontal:hover {
    background: #5755e6;
}
body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    background: #060610;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #0c0c1d;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.button-container {
    display: flex;
    gap: 10px; 
    justify-content: center; 
}

.learn-more-btn {
    padding: 8px 15px;
    font-size: 0.8em;
    color: #ffffff;
    background-color: #003ca0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.learn-more-btn:hover {
    background-color: #50d4b9;
    transform: scale(1.05);
    box-shadow: 0 -2px 10px #618a82;
}
.svg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s;
}
.svg-button:hover {
    background-color: rgba(0, 123, 255, 0.2);
}
.svg-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: transform 0.3s;
}
.svg-button:hover .svg-icon {
    transform: translateY(5px);
}
.info-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
}

.info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: 550px;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0c0c1d;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    height: 565px;
}
.info-card img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.info-card h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 1%;
    color: #ffffff;
    max-width: 500px;
}
.info-card p {
    font-size: 1em;
    color: #bdbdbd;
    line-height: 1.6;
    max-width: 500px;
}
.last-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0c0c1d;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100px;
}
.last-panel img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.last-panel h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 1%;
    color: #ffffff;
    max-width: 500px;
}
.last-panel-container {
    gap: 40px;
    padding: 40px;
    margin-top: -50px;
    width: 100%;
    max-width: 1200px;
}
.report-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.report-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0c0c1d;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
    margin-left: auto; 
    margin-right: auto; 
}

.report-form label {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 0.9em;
}
.report-form input,
.report-form select,
.report-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #ffffff;
    font-size: 0.9em;
}
.report-form input::placeholder,
.report-form textarea::placeholder {
    color: #777;
}
.report-form textarea {
    resize: vertical;
    min-height: 100px;
}
.report-form button {
    align-self: center;
    padding: 8px 20px;
    color: #ffffff;
    background-color: #003ca0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}
.report-form button:hover {
    background-color: #50d4b9;
}

.report-formm {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0c0c1d;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}
.report-formm label {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 0.9em;
}
.report-formm input,
.report-formm select,
.report-formm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1a1a2e;
    color: #ffffff;
    font-size: 0.9em;
}
.report-formm input::placeholder,
.report-formm textarea::placeholder {
    color: #777;
}
.report-formm textarea {
    resize: vertical;
    min-height: 100px;
}
.report-formm button {
    align-self: flex-end;
    padding: 8px 20px;
    color: #ffffff;
    background-color: #003ca0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}
.report-formm button:hover {
    background-color: #50d4b9;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.last-panel p {
    font-size: 1em;
    color: #bdbdbd;
    line-height: 1.6;
    max-width: 500px;
}
.footer {
    color: #bbb;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: -30px;
    width: 100%;
}
.footer a {
    color: #00b383;
    text-decoration: none;
}
.footer p {
    font-size: 0.8rem;
}
.footer a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 4em;
    font-weight: bold;
    margin-top: 105px;
    margin-bottom: -12px;
}
h4 {
    font-size: 0.8em;
    font-weight: lighter;
    color: rgb(169, 163, 152);
    width: 350px;
}
.divider-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 40px 0;
    background-color: #0c0c1d;
    border-radius: 10px;
    overflow: hidden;
}
.left-column {
    flex: 0 0 45%;
    padding: 20px;
    border-right: 1px solid #1a1a2e;
    background-color: #0c0c1d;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}
.uptime-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}


@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.right-column {
    flex: 0 0 55%;
    padding: 20px;
    background-color: #0c0c1d;
}
.left-column h2,
.right-column h2 {
    color: #ffffff;
    margin-bottom: 15px;
}
.left-column p,
.right-column p {
    color: #bdbdbd;
    line-height: 1.6;
}
@media only screen and (max-width: 768px) {
    body,
    html {
        padding: 0 10px;
    }
    .container {
        width: 100%;
        min-width: 111%;
    }
    h1 {
        font-size: 2.5em;
        margin-top: 50px;
    }
    h4 {
        font-size: 1em;
        width: auto;
    }
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .info-section {
        flex-direction: column;
        padding: 20px;
    }
    .info-card {
        max-width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        height: auto;
    }
    .info-card img {
        max-width: 100%;
        height: auto;
    }
    .last-panel {
        padding: 20px;
        height: auto;
    }

    .last-panel-container {
        padding: 20px;
        gap: 20px;
    }
    .svg-button {
        width: 40px;
        height: 40px;
    }
    body,
    h2,
    p {
        margin: 0;
        padding: 0;
    }
    .divider-container {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .left-column,
    .right-column {
        width: 100%;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    p {
        font-size: 1em;
        margin-bottom: 10px;
    }
    .report-form {
        border-radius: 5px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }
    input,
    textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .report-form button {
        align-self: center;
        padding: 8px 25px;
        color: #ffffff;
        background-color: #003ca0;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9em;
        transition: background-color 0.3s;
    }
    button:hover {
        background-color: #0056b3;
    }
    .status-indicator {
        display: flex;
        align-items: center;
    }
    .status {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 10px;
    }
    .svg-icon {
        width: 20px;
        height: 20px;
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: -10px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: none; 
}

.scroll-to-top.visible {
    opacity: 1;
    animation: fadeIn 0.5s forwards;
    pointer-events: auto; 
}

.scroll-to-top.hidden {
    opacity: 0;
    animation: fadeOut 0.5s forwards;
    pointer-events: none; 
}




@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

.center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; 
    padding: 20px;
    box-sizing: border-box; 
}


.developer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #033a45, #012a3b);
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 90%;
    max-width: 1200px; 
    margin-top: 20px; 
}


.developer-card {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                background 5s ease-in-out;
    animation: backgroundShift 10s ease-in-out infinite alternate;
    background: linear-gradient(135deg, #01112e, #0a0d28);
}

.developer-card:hover {
    transform: translateY(-12px) scale(1.08) rotate(-2deg);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.2);
    filter: brightness(1.15) saturate(1.1);
}


@keyframes backgroundShift {
    0% {
        background: linear-gradient(135deg, #01112e, #0a0d28);
    }

}


@media (max-width: 768px) {
    .developer-card {
        padding: 15px;
        width: 90%;
        transform: none;
    }

    .developer-card:hover {
        transform: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
}


body.dark-mode .developer-card {
    background-color: #10e2ff;
    color: #ffffff;
}
.circle-frame {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.footer-icons {
    display: flex;
    gap: 20px; 
    margin-top: -20px; 
}


.footer-icons img {
width: 73px;
height: 40px;
    animation: float 3s ease-in-out infinite; 
    transition: transform 0.3s ease, animation 0.3s ease, opacity 0.3s ease; 
}

.footer-icons img:hover {
    animation-play-state: paused;
    transform: scale(1.8); 
    opacity: 1; 
}


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

@media (max-width: 768px) {
    .footer {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .footer-icons {
        margin-top: 10px; 
    }
}

@media (max-width: 480px) {
    .footer-icons {
        gap: 10px; 
    }
}
.about {
    font-size: 1.7em;        
    color: #ffffff;           
    text-align: center;        
    margin-top: 20px;          
    line-height: 1.6;         
    padding: 10px;             
    max-width: 800px;          
    margin-left: auto;         
    margin-right: auto;       
    position: relative;       
}


.button {
    margin-top: 10px; 
    padding: 8px 12px; 
    background-color: #0077ff; 
    border: none; 
    border-radius: 4px; 
    color: white; 
    text-decoration: none; 
    display: inline-block; 
    cursor: pointer; 
    transition: background-color 0.3s; 
}

.button:hover {
    background-color: #005bb5; 
}
.about {
    text-align: center;   
}
.updates {
    color: #ffffff; 
    text-align: center;    
    margin-top: 20px;          
    line-height: 1.6;          
    padding: 10px;             
    max-width: 800px;          
    margin-left: auto;        
    margin-right: auto;       
    position: relative;       
}

#user-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
    position: absolute; 
    right: 20px;
    top: 20px;
    background-color: transparent;
    border-radius: 5px;
    z-index: 1000;
    max-width: 250px;
    overflow: visible; 
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1); /* Normal size */
        box-shadow: 0 0 5px 1px #3F51B5; /* Subtle glow */
    }
    50% {
        transform: scale(1.01); /* Slight zoom in (5% bigger) */
        box-shadow: 0 0 10px 2px #3F51B5; /* Subtle glow increase */
    }
}

#logged-in {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: #15203d;
    animation: pulse 3s infinite; /* Pulse every 3 seconds */
}


#logged-in:hover {
    background-color: #00195f;
}

#user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #007bff;
    flex-shrink: 0;
}

#logout-btn {
    padding: 6px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; 
    font-size: 14px;
    white-space: nowrap; 
}

#logout-btn:hover {
    background-color: #0056b3;
}

#login-btn {
    display: flex;
    align-items: center;
    gap: 2px; 
    padding: 6px 12px;
    background-color: #3a5797a2;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

#login-btn:hover {
    background-color: #0056b3;
}

#discord-logo {
    height: 20px;
    flex-shrink: 0;
    margin-top: -2px;    
    margin-left: -8px;   
}



@media (max-width: 600px) {
    #user-info {
        right: 10px;
        top: 10px;
        padding: 5px;
        max-width: 180px; 
    }

    #login-btn, #logout-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    #user-avatar {
        width: 30px;
        height: 30px;
    }
}


#login-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -15px;
    color: #ffffff; 
    font-size: 1.2em; 
}

#no-servers-image {
    width: 300px;
    margin-top: -30px;
}

#no-servers img {
    width: 300px; 
    margin-top:-30px; 
    display: block;
    margin-left: auto;
    margin-right: auto;
}




#server-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.server {
    border: 1px solid #ccc;
    padding: 10px;
    width: 150px;
    text-align: center;
}

.server img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.server button {
    margin-top: 10px;
}

button {
    background-color: #00a3e4; 
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

button:hover {
    background-color: #50d4b9;
    transform: scale(1.05);
    box-shadow: 0 -2px 10px #618a82;
}

.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px;
    background-color: #ffffff;
    transition: 0.3s;
}


.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0; 
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: rgb(0 0 0 / 51%); 
    color: #fff;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar h2 {
    color: #fff;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}


.sidebar.show {
    left: 0;
}


.fade-in {
    animation: fadeInEffect 0.5s ease-in-out;
}

@keyframes fadeInEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



  
  #searchBar {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #0075ff; 
    border-radius: 4px;
    background-color: #ffffff; 
    transition: border-color 0.3s, box-shadow 0.3s; 
  }
  
  #searchBar:focus {
    outline: none;
    border-color: #50d4b9; 
    box-shadow: 0 0 5px rgba(80, 212, 185, 0.5); 
  }
  

  .quick-access {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%; 
  }
  
  @media (min-width: 1200px) {
    .quick-access {
      width: 20%; 
    }
  }
  
  
  .quick-access button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #0075ff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; 
  }
  
  .quick-access button:hover {
    background-color: #50d4b9;
    transform: scale(1.05);
    box-shadow: 0 -2px 10px #618a82;
  }
  
 
  #commandList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .command-box {
    padding: 15px;
    background-color: #1f7581;
    border: 1px solid #070707;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s; 
  }
  
  .command-box:hover {
    transform: translateY(-3px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
  }
  
  .command-box h2 {
    margin: 0;
  }
  .faq-container {
    width: 80%;
    max-width: 600px;
}



.faq-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}


.faq-card {
    background-color: #fff;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.faq-card {
    border: 1px solid transparent; 
    padding: 15px;
    margin: 10px;
    transition: border-color 0.3s ease; 
}

.faq-card:hover {
    border-color: #000000; 
    box-shadow: 0 0 10px rgba(8, 66, 138, 0.2); 
}


.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #08428a;
    margin: 0;
}

.faq-answer {
    margin-top: 10px;
}

.faq-answer p, .faq-answer h3 {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.faq-answer a {
    color: #08428a;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}


.updates-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}


.updates-card {
    background-color: #fff;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.updates-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


.updates-card {
    border: 1px solid transparent; 
    padding: 15px;
    margin: 10px;
    transition: border-color 0.3s ease; 
}

.updates-card:hover {
    border-color: #000000; 
    box-shadow: 0 0 10px rgba(8, 66, 138, 0.2); 
}


.updates-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #08428a;
    margin: 0;
}

.updates-answer {
    margin-top: 10px;
}

.updates-answer p, .updates-answer h3 {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.updates-answer a {
    color: #08428a;
    text-decoration: none;
    font-weight: 500;
}

.updates-answer a:hover {
    text-decoration: underline;
}



#user-avatar {
    width: 32px; 
    height: 32px; 
    object-fit: cover; 
}
