.top-bar {
    width: 100%;
    height: 35px;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(0,255,149,0.15);
    position: relative;
    z-index: 2000 !important;
    overflow: visible;
}
.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.top-bar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 9999;
    transition: transform 0.35s ease, gap 0.35s ease;
}
.custom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: 20px;
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow:
        0 0 0 2px rgba(0,0,0,0.4),
        inset 0 0 10px rgba(0,0,0,0.7),
        inset 0 0 20px rgba(0,255,100,0.25);
    background: radial-gradient(circle at center,
        #000000 0%,
        #002a17 40%,
        #00c853 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    z-index: 9999;
}
.custom-btn .amg-icon svg {
    width: 26px;
    height: 26px;
    stroke: #e8e8e8;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.4));
    transition: all 0.35s ease;
}
.custom-btn:hover {
    border-color: #00ff95;
    box-shadow:
        0 0 8px #00ff95,
        0 0 18px rgba(0,255,149,0.5),
        inset 0 0 15px rgba(0,255,149,0.6),
        inset 0 0 25px rgba(0,255,149,0.4);

    background: radial-gradient(circle at center,
        #000000 0%,
        #004d2a 40%,
        #00ff95 100%
    );
}
.custom-btn:hover .amg-icon svg {
    stroke: #00ff95;
    filter: drop-shadow(0 0 6px #00ff95);
}
.custom-btn:active {
    box-shadow:
        0 0 5px #00ff95,
        inset 0 0 10px rgba(0,255,149,0.4),
        inset 0 0 25px rgba(0,0,0,0.6);
}
.custom-btn:active .amg-icon svg {
    transform: scale(0.92);
}
@media (min-width: 1200px) {
    .top-bar-center {
        transform: translateX(200px);
    }
}
@media (max-width: 1199px) {
    .top-bar-center {
        justify-content: center;
        transform: translateX(-50%);
    }
}
@media (max-width: 900px) {
    .custom-btn {
        width: 45px;
        height: 45px;
        top: 19px;
    }
    .custom-btn .amg-icon svg {
        width: 22px;
        height: 22px;
    }
    .top-bar-center {
        gap: 14px;
        transform: translateX(-40%);
    }
}
@media (max-width: 600px) {
    .custom-btn {
        width: 43px;
        height: 43px;
        top: 15px;
    }
    .custom-btn .amg-icon svg {
        width: 20px;
        height: 20px;
    }
    .top-bar-center {
        gap: 8px;
        transform: translateX(-50%);
    }
}
@media (max-width: 991px) {
    #site-header,
    .site-header,
    .main-header {
        margin-top: 0 !important;
        padding-top: 18px !important;
        background: #ffffff !important;
    }
    .main-header-inner {
        padding-top: 18px !important;
    }
}
.custom-btn {
    position: relative;
    overflow: visible;
}
.custom-btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,149,0.0) 0%, rgba(0,255,149,0.0) 60%, rgba(0,255,149,0.25) 100%);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.custom-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}
.top-bar {
    position: relative;
    z-index: 2000;
}
.top-bar::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0,255,149,0.55);
    box-shadow: 0 0 8px rgba(0,255,149,0.55);
    pointer-events: none;
}
.top-bar-right {
    position: absolute;
    right: 30px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2000;
    transform: translateX(120px);
    opacity: 0;
    filter: drop-shadow(0 0 0px #00ff95);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease;
}
.top-bar-right .custom-btn {
    top: 20px !important;
}
@media (max-width: 900px) {
    .top-bar-right .custom-btn {
        top: 19px !important;
    }
}
@media (max-width: 600px) {
    .top-bar-right .custom-btn {
        top: 15px !important;
    }
}
.top-bar-right.ignite {
    transform: translateX(0);
    opacity: 1;
    filter: drop-shadow(0 0 12px #00ff95);
}
.top-bar-right.ignite-end {
    filter: drop-shadow(0 0 0px #00ff95);
}
@media (max-width: 600px) {
    .custom-btn .amg-icon svg {
        transform: translateY(2px);
    }
}
.top-bar-right .custom-btn .amg-icon svg {
    transform: translateY(2px);
}
@media (max-width: 900px) {
    .top-bar-right .custom-btn .amg-icon svg {
        transform: translateY(2px);
    }
}
@media (max-width: 600px) {
    .top-bar-right .custom-btn .amg-icon svg {
        transform: translateY(2px);
    }
}
.custom-btn {
    -webkit-tap-highlight-color: transparent !important;
}