* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0b0f19;
    color: #ffffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    background: rgba(10, 15, 30, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.logo-img {
    height: 32px;
}

.logo-text {
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.95;
}


.nav-links a {
    position: relative;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 2px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 6px;
    background: #22c55e;
    filter: blur(12px);
    opacity: 0;
    transform: translateX(-50%);
    transition: width 0.35s ease, opacity 0.35s ease;
}

.nav-links a:hover::before {
    width: 100%;
    opacity: 0.9;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #06b6d4);
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.35s ease, opacity 0.35s ease;

    box-shadow:
        0 0 8px rgba(34,197,94,1),
        0 0 18px rgba(34,197,94,0.9),
        0 0 32px rgba(34,197,94,0.7),
        0 0 52px rgba(34,197,94,0.5);
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.services-btn-wrapper,
.support-btn-wrapper {
    position: relative;
}

.services-arrow,
.support-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.services-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);

    width: 320px;
    padding: 12px;
    border-radius: 16px;

    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(124,58,237,0.25);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.services-btn-wrapper:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    background: rgba(124,58,237,0.15);
    transform: translateX(6px);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(124,58,237,0.25);
}

.service-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.service-text span {
    font-size: 12px;
    opacity: 0.7;
}

.support-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);

    width: 280px;
    padding: 10px;
    border-radius: 14px;

    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(124,58,237,0.25);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.support-btn-wrapper:hover .support-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.support-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.support-card:hover {
    background: rgba(124,58,237,0.15);
    transform: translateX(6px);
}

.support-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.25);
    font-size: 16px;
}

.support-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.support-text span {
    font-size: 12px;
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Panels */
.panel-btn-wrapper {
    position: relative;
}

.panel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.panel-btn:hover {
    background: rgba(255,255,255,0.14);
    box-shadow:
        0 0 12px rgba(34,197,94,0.35),
        0 0 28px rgba(34,197,94,0.2);
}

.panel-arrow {
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f172a, #020617);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.7),
        0 0 30px rgba(34,197,94,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 999;
}

.panel-btn-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: rgba(34,197,94,0.12);
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    background: #5865F2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(88,101,242,0.45);
}

.discord-btn:hover {
    background: #4752C4;
}

.discord-btn i {
    font-size: 15px;
}

.services-dropdown,
.support-dropdown,
.dropdown-menu {
    z-index: 2000;
}

.services-dropdown,
.support-dropdown {
    overflow: hidden;
}

.services-btn-wrapper:hover > a::before,
.services-btn-wrapper:hover > a::after,
.support-btn-wrapper:hover > a::before,
.support-btn-wrapper:hover > a::after {
    opacity: 0;
}

.support-nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.support-nav-card:hover {
    background: rgba(124,58,237,0.15);
    transform: translateX(6px);
}

.support-nav-card .support-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.25);
    font-size: 16px;
}

.support-nav-card strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.support-nav-card span {
    font-size: 12px;
    opacity: 0.7;
}

.about-btn-wrapper {
    position: relative;
}

.about-link {
    position: relative;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 2px;
    transition: color 0.25s ease;
}

.about-link:hover {
    color: #ffffff;
}

.about-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.about-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);

    width: 280px;
    padding: 10px;
    border-radius: 14px;

    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(124,58,237,0.25);

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.about-btn-wrapper:hover .about-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.about-btn-wrapper:hover .about-arrow {
    transform: rotate(180deg);
}

.about-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-card:hover {
    background: rgba(124,58,237,0.15);
    transform: translateX(6px);
}

.about-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(124,58,237,0.25);
    font-size: 16px;
}

.about-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.about-text span {
    font-size: 12px;
    opacity: 0.7;
}
