/* DMM Global Header */

.dmm-header-e0863a3c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: #060a16;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.dmm-header-e0863a3c.dmm-scrolled-e0863a3c {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.dmm-header-inner-e0863a3c {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.dmm-logo-e0863a3c {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.dmm-logo-e0863a3c:hover {
    text-decoration: none;
}

/* Logo image */
.dmm-logo-img-e0863a3c {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Text wrap next to image */
.dmm-logo-text-wrap-e0863a3c {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Text-only fallback */
.dmm-logo-text-only-e0863a3c .dmm-logo-main-e0863a3c {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
}

.dmm-logo-text-only-e0863a3c .dmm-logo-sub-e0863a3c {
    font-size: 12px;
    font-weight: 500;
    color: #4d8fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    max-width: 120px;
}

/* With image: hide text on small screens, show beside logo */
.dmm-logo-has-img-e0863a3c .dmm-logo-main-e0863a3c {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
}

.dmm-logo-has-img-e0863a3c .dmm-logo-sub-e0863a3c {
    font-size: 11px;
    font-weight: 500;
    color: #4d8fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
    max-width: 110px;
}

/* Navigation */
.dmm-nav-e0863a3c {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dmm-nav-list-e0863a3c {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.dmm-nav-link-e0863a3c {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.dmm-nav-link-e0863a3c:hover,
.dmm-nav-link-e0863a3c:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* CTA Button */
.dmm-cta-btn-e0863a3c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0e3d8a, #2070ff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin-left: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 4px 15px rgba(32, 112, 255, 0.3);
    white-space: nowrap;
}

.dmm-cta-btn-e0863a3c:hover,
.dmm-cta-btn-e0863a3c:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(32, 112, 255, 0.45);
    color: #ffffff;
    opacity: 0.92;
}

/* Hamburger */
.dmm-hamburger-e0863a3c {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001;
}

.dmm-hamburger-line-e0863a3c {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dmm-hamburger-e0863a3c.dmm-active-e0863a3c .dmm-hamburger-line-e0863a3c:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.dmm-hamburger-e0863a3c.dmm-active-e0863a3c .dmm-hamburger-line-e0863a3c:nth-child(2) {
    opacity: 0;
}

.dmm-hamburger-e0863a3c.dmm-active-e0863a3c .dmm-hamburger-line-e0863a3c:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Spacer */
.dmm-header-spacer-e0863a3c {
    height: 72px;
}

/* Mobile */
@media (max-width: 768px) {
    .dmm-hamburger-e0863a3c {
        display: flex;
    }

    .dmm-logo-has-img-e0863a3c .dmm-logo-text-wrap-e0863a3c {
        display: none;
    }

    .dmm-logo-text-only-e0863a3c .dmm-logo-sub-e0863a3c {
        display: none;
    }

    .dmm-logo-img-e0863a3c {
        height: 36px;
    }

    .dmm-nav-e0863a3c {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #060a16;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 24px 32px;
        gap: 8px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 100000;
    }

    .dmm-nav-e0863a3c.dmm-open-e0863a3c {
        right: 0;
    }

    .dmm-nav-list-e0863a3c {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 4px;
    }

    .dmm-nav-list-e0863a3c li {
        width: 100%;
    }

    .dmm-nav-link-e0863a3c {
        display: block;
        width: 100%;
        padding: 12px 16px;
        font-size: 16px;
    }

    .dmm-cta-btn-e0863a3c {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}

/* Overlay */
.dmm-overlay-e0863a3c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dmm-overlay-e0863a3c.dmm-visible-e0863a3c {
    opacity: 1;
    visibility: visible;
}
