.brethko-navigation {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 25, 0.95) 50%, rgba(15, 15, 15, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(1.2);
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
    padding: 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                0 2px 8px rgba(218, 165, 32, 0.1),
                inset 0 -1px 0 rgba(218, 165, 32, 0.2);
    transition: all 0.4s ease;
}

.brethko-navigation::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        #daa520 0%,
        #ffd700 12.5%,
        #ffed4b 25%,
        #ffd700 37.5%,
        #daa520 50%,
        #b8860b 62.5%,
        #cd7f32 75%,
        #b8860b 87.5%,
        #daa520 100%);
    background-size: 200% 100%;
    animation: goldRainbow 4s linear infinite;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.5),
                0 0 20px rgba(218, 165, 32, 0.3);
}

@keyframes goldRainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.brethko-navigation:hover::before {
    animation-duration: 2s;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.7),
                0 0 30px rgba(218, 165, 32, 0.5);
}

.brethko-navigation::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.8) 50%,
        transparent 100%);
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scaleX(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.8;
    }
}

.brethko-navigation .aw_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

.brethko-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 5px;
}

.brethko-nav-menu > li {
    position: relative;
}

.brethko-nav-menu > li > a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.brethko-nav-menu > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(218, 165, 32, 0.1) 50%,
        transparent 100%);
    transition: left 0.5s ease;
}

.brethko-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #daa520);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brethko-nav-menu > li > a:hover {
    color: #fff;
    background: rgba(218, 165, 32, 0.08);
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
    transform: translateY(-1px);
}

.brethko-nav-menu > li > a:hover::before {
    left: 100%;
}

.brethko-nav-menu > li > a:hover::after {
    width: 80%;
}

.brethko-nav-menu .nav-download-btn {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #000 !important;
    font-weight: 700;
    padding: 12px 25px !important;
    border-radius: 8px;
    margin-left: 10px;
    border: 2px solid #daa520;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.brethko-nav-menu .nav-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.brethko-nav-menu .nav-download-btn::after {
    content: 'OYNA';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.brethko-nav-menu .nav-download-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.6),
                0 0 40px rgba(218, 165, 32, 0.3);
    border-bottom-color: transparent !important;
    animation: btnGlow 2s ease-in-out infinite;
}

.brethko-nav-menu .nav-download-btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    transition: all 0.8s ease;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(218, 165, 32, 0.6), 0 0 40px rgba(218, 165, 32, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(218, 165, 32, 0.8), 0 0 60px rgba(218, 165, 32, 0.5); }
}

.brethko-nav-menu .has-dropdown {
    position: relative;
}

.brethko-nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    background: linear-gradient(145deg, 
        rgba(25, 25, 25, 0.98) 0%,
        rgba(15, 15, 15, 0.98) 50%,
        rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(25px) brightness(1.1);
    min-width: 600px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9),
                0 0 30px rgba(218, 165, 32, 0.15),
                0 -3px 0 0 #daa520,
                inset 0 1px 0 rgba(218, 165, 32, 0.1);
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: hidden;
}

.brethko-nav-menu .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top center,
        rgba(218, 165, 32, 0.05) 0%,
        transparent 70%);
    pointer-events: none;
}

.brethko-nav-menu .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #daa520 10%,
        #ffd700 50%,
        #daa520 90%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; transform: translateX(-10%); }
    50% { opacity: 1; transform: translateX(10%); }
}

.brethko-nav-menu .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.brethko-nav-menu .dropdown-menu li {
    margin: 0;
}

.brethko-nav-menu .dropdown-menu li.dropdown-section {
    grid-column: span 1;
    padding: 25px 20px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%);
    border-right: 1px solid rgba(218, 165, 32, 0.2);
    position: relative;
    transition: background 0.3s ease;
}

.brethko-nav-menu .dropdown-menu li.dropdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(218, 165, 32, 0.3) 50%,
        transparent 100%);
}

.brethko-nav-menu .dropdown-menu li.dropdown-section:hover {
    background: linear-gradient(180deg,
        rgba(218, 165, 32, 0.05) 0%,
        rgba(0, 0, 0, 0.4) 100%);
}

.brethko-nav-menu .dropdown-menu li.dropdown-section:last-child {
    border-right: none;
}

.brethko-nav-menu .dropdown-menu .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #daa520;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
    position: relative;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
}

.brethko-nav-menu .dropdown-menu .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
    0% { left: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { left: calc(100% - 30px); opacity: 0; }
}

.brethko-nav-menu .dropdown-menu .section-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, #daa520 0%, #b8860b 100%);
    border-radius: 2px;
}

.brethko-nav-menu .dropdown-menu .section-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brethko-nav-menu .dropdown-menu .section-items a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-radius: 6px;
    border-left: 3px solid transparent;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.brethko-nav-menu .dropdown-menu .section-items a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 5px;
    height: 5px;
    background: #daa520;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.brethko-nav-menu .dropdown-menu .section-items a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(218, 165, 32, 0.15) 0%, transparent 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.brethko-nav-menu .dropdown-menu .section-items a:hover::before {
    width: 100%;
}

.brethko-nav-menu .dropdown-menu .section-items a:hover {
    color: #ffd700;
    border-left-color: #daa520;
    padding-left: 20px;
    background: linear-gradient(90deg,
        rgba(218, 165, 32, 0.15) 0%,
        rgba(218, 165, 32, 0.05) 100%);
    box-shadow: 0 2px 15px rgba(218, 165, 32, 0.15),
                inset 0 1px 0 rgba(218, 165, 32, 0.2);
    transform: translateX(2px);
}

.brethko-nav-menu .dropdown-menu .section-items a:hover::after {
    transform: translateY(-50%) scale(1);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

.brethko-nav-menu .dropdown-menu .section-items .item-icon {
    font-size: 14px;
    color: #daa520;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brethko-nav-menu .dropdown-menu .section-items .item-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(218, 165, 32, 0.3) 0%,
        transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.brethko-nav-menu .dropdown-menu .section-items a:hover .item-icon {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.brethko-nav-menu .dropdown-menu .section-items a:hover .item-icon::after {
    transform: scale(2);
    opacity: 0;
    transition: all 0.6s ease;
}

.brethko-nav-mobile {
    display: none;
}

.mobile-toggle {
    display: block;
    padding: 15px 20px;
    color: #daa520;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: #fff;
}

@media (max-width: 1200px) {
    .brethko-nav-menu .dropdown-menu {
        min-width: 700px;
        font-size: 12px;
    }
    
    .brethko-nav-menu .dropdown-menu li.dropdown-section {
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .brethko-nav-menu {
        display: none;
    }
    
    .brethko-nav-mobile {
        display: block;
    }
    
    .brethko-nav-menu .dropdown-menu {
        grid-template-columns: 1fr;
        min-width: 90vw;
        left: 5vw;
        transform: translateX(0) translateY(-10px);
    }
    
    .brethko-nav-menu .has-dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    
    .brethko-nav-menu .dropdown-menu li.dropdown-section {
        border-right: none;
        border-bottom: 1px solid rgba(218, 165, 32, 0.15);
    }
    
    .brethko-nav-menu .dropdown-menu li.dropdown-section:last-child {
        border-bottom: none;
    }
}

@media (min-width: 993px) {
    .brethko-nav-mobile {
        display: none !important;
    }
}

.brethko-social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    width: min-content;
    transform: translateY(-50%);
    z-index: 999;
}

.brethko-social-sidebar.initial-load {
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.social-sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 15px 8px;
    border-radius: 50px;
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(218, 165, 32, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.social-sidebar-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #daa520 50%, transparent 100%);
    border-radius: 50%;
}

.social-sidebar-container::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #daa520 50%, transparent 100%);
    border-radius: 50%;
}

.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(218, 165, 32, 0.3);
    color: #daa520;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.social-btn:hover::before {
    width: 200%;
    height: 200%;
}

.social-btn:hover {
    transform: scale(1.15) translateX(5px);
    border-color: #daa520;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5),
                inset 0 0 15px rgba(218, 165, 32, 0.2);
}

.social-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(20px);
}

.social-discord:hover {
    color: #5865F2;
    border-color: #5865F2;
}

.social-facebook:hover {
    color: #1877F2;
    border-color: #1877F2;
}

.social-instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
}

.social-youtube:hover {
    color: #FF0000;
    border-color: #FF0000;
}

.social-twitter:hover {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

@media (max-width: 1400px) {
    .brethko-social-sidebar {
        left: 10px;
    }
    
    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .brethko-social-sidebar {
        display: none;
    }
}

#header.header {
    padding: 0 !important;
    min-height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#header .aw_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .logo_holder {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#header .logo_holder h1 {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .logo {
    display: inline-block !important;
    width: 380px !important;
    height: 170px !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
}

@media (max-width: 992px) {
    #header.header {
        min-height: 130px !important;
    }
    
    #header .logo {
        width: 300px !important;
        height: 85px !important;
    }
}

@media (max-width: 576px) {
    #header.header {
        min-height: 110px !important;
    }
    
    #header .logo {
        width: 240px !important;
        height: 70px !important;
    }
}

