﻿body {
    margin: 0;
    background: #2D4D95;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.page-header,
.section-header,
.login-header,
.header-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title,
.section-title,
.brand-title {
    text-align: center;
}

.page-subtitle,
.section-description,
.brand-subtitle {
    text-align: center;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: #0B031B;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.menu-brand a.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

    .menu-brand a.brand-link span {
        color: #7ea2ff;
    }

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    transition: .25s ease;
}

.menu-brand a.brand-link:hover .brand-logo {
    transform: scale(1.05);
}

.menu-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .menu-actions a.buy-now {
        background: linear-gradient(90deg,#6ea8ff,#4c6fff);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 18px;
        text-decoration: none;
        transition: .25s;
    }

        .menu-actions a.buy-now:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0,0,0,.35);
        }

    .menu-actions a.account {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 8px;
        padding: 8px 18px;
        text-decoration: none;
        transition: .25s;
    }

        .menu-actions a.account:hover {
            background: rgba(255,255,255,.08);
        }

burger-menu * {
    color: white !important;
    fill: white !important;
}

.btn-primary,
.btn-logout,
.btn-login {
    border: none;
    border-radius: 28px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.2em;
    margin: 25px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 24px;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.btn-cancel {
    border: none;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1.2em;
    margin: 25px 0;
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: #222;
    border: 1px solid #bbb;
}

.btn-primary {
    background: none;
    border: 1px solid #123456;
    color: #123456;
}

    .btn-primary:hover {
        background-color: #123456;
        color: #fff;
    }

.btn-logout {
    background: #dc2626;
    color: #fff;
}

    .btn-logout:hover {
        background: #b91c1c;
    }

.btn-login {
    background: #123456;
    color: #fff;
}

    .btn-login:disabled {
        background: #aaa;
    }


@media (max-width:900px) {

    .main-menu {
        padding: 12px 18px;
    }
}

@media (max-width:768px) {

    .buy-now {
        display: none;
    }
}

@media (max-width:500px) {

    .main-menu {
        padding: 10px 14px;
    }

    .brand-logo {
        height: 36px;
    }
}

@media (max-width:380px) {

    .account {
        display: none;
    }
}
