.login-page {
    min-height: 50vh;
    position: relative;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page__body {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.login-page__content {
    text-align: center;
    color: white;
    padding: 40px;
}

.login-page__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.login-page__desc {
    font-size: 1.1rem;
    margin-bottom: 48px;
    opacity: 0.9;
    line-height: 1.6;
}

.login-page__image {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    border: 10px solid #ffb206;
    box-shadow: 0 0 30px rgba(255, 178, 6, 0.3);
}

.login-page__image img {
    width: 100%;
    height: auto;
    display: block;
}

.login-form {
    background: white;
    border-radius: 30px;
    padding: 56px 48px;
    border: 10px solid #ffb206;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    margin: 0 auto;
}

.login-form__title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1e90ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-form__label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.login-form__input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.login-form__input:focus {
    outline: none;
    border-color: #1e90ff;
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.login-form__input::placeholder {
    color: #999;
}

.login-form__btn {
    background: linear-gradient(135deg, #ffb206, #ff8c00);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 178, 6, 0.4);
}

.login-form__btn:active {
    transform: translateY(0);
}

.login-form__checkbox-row {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.login-form__checkbox {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #1e90ff;
}

.login-form__checkbox-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.login-form__divider {
    margin: 32px 0;
    border: none;
    border-top: 2px solid #eee;
}

.login-form__link {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.login-form__link-text {
    color: #1e90ff;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.login-form__link-text:hover {
    text-decoration: underline;
}

.login-form__terms {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    display: block;
    margin-bottom: 20px;
}

.login-form__terms a {
    color: #1e90ff;
    font-weight: 600;
    text-decoration: none;
}

.login-form__terms a:hover {
    text-decoration: underline;
}

.login-form .uk-margin {
    margin-bottom: 28px !important;
}

.login-form .uk-form-controls {
    margin-top: 0;
}

@media (max-width: 960px) {
    .login-page {
        padding: 60px 20px;
    }

    .login-page__content {
        padding: 20px;
    }

    .login-page__title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .login-page__desc {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .login-page__image {
        max-width: 320px;
        border-width: 8px;
    }

    .login-form {
        padding: 40px 32px;
        border-width: 8px;
    }

    .login-form__title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }
}

@media (max-width: 640px) {
    .login-page {
        padding: 40px 16px;
    }

    .login-page__image {
        display: none;
    }

    .login-form {
        border-width: 6px;
        padding: 32px 24px;
    }

    .login-page__title {
        font-size: 1.8rem;
    }

    .login-form__title {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }

    .login-form .uk-margin {
        margin-bottom: 20px !important;
    }
}

.pay-page {
    min-height: 100vh;
    position: relative;
    padding: 40px 20px 0 20px;
}

.pay-page__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 30, 50, 0.85) 100%);
    z-index: -1;
}

.pay-page__body {
    position: relative;
    z-index: 1;
}

.pay-page__header {
    text-align: center;
    margin-bottom: 48px;
}

.pay-page__breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pay-page__breadcrumb li {
    display: flex;
    align-items: center;
}

.pay-page__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.pay-page__breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.pay-page__breadcrumb a:hover {
    color: #ffb206;
}

.pay-page__title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.pay-page__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.pay-card {
    background: rgba(25,118,210,0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.pay-card__badge {
    display: inline-block;
    background: #ffb206;
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pay-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.pay-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.pay-card__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.pay-card__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.pay-card__summary-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pay-card__summary-amount {
    display: flex;
    align-items: baseline;
}

.pay-card__summary-amount h4 {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pay-card__summary-amount h3 {
    color: #ffb206;
    margin: 0;
    font-size: 1.8rem;
}

.pay-card__quantity {
    margin-top: 8px;
}

.pay-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
    box-sizing: border-box;
}

.pay-input:focus {
    outline: none;
    border-color: #ffb206;
    background: rgba(255, 255, 255, 0.15);
}

.pay-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.pay-grid__item {
    position: relative;
}

.pay-product {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.pay-product:hover {
    border-color: rgba(255, 178, 6, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.pay-product--selected {
    border-color: #ffb206;
    background: rgba(255, 178, 6, 0.1);
}

.pay-product__price {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    color: #ffb206;
}

.pay-payment {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-payment:hover {
    border-color: rgba(255, 178, 6, 0.5);
}

.pay-payment--selected {
    border-color: #ffb206;
    background: rgba(255, 178, 6, 0.1);
}

.pay-quantity {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 4px;
}

.pay-quantity__btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-quantity__btn:hover {
    background: #ffb206;
    color: #1a1a2e;
}

.pay-quantity__input {
    background: transparent;
    border: none;
    color: white;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    padding: 0 8px;
}

.pay-quantity__input:focus {
    outline: none;
}

.pay-page__submit {
    text-align: center;
    padding: 32px 0 48px 0;
}

.pay-page__submit-btn {
    background: linear-gradient(135deg, #ffb206, #ff8c00);
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pay-page__submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 178, 6, 0.4);
}

.user-page {
    min-height: 50vh;
    padding: 40px 20px 0 20px;
}

.user-sidebar {
    background: rgba(25,118,210,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-sidebar__profile {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.user-sidebar__name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.user-sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-sidebar__nav li {
    margin-bottom: 8px;
}

.user-sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.user-sidebar__nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.user-sidebar__nav-link--active {
    background: rgba(255, 178, 6, 0.2);
    color: #ffb206 !important;
}

.user-card {
    background: rgba(25,118,210,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 16px 0;
}

.user-card__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.user-card__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.order-detail__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.order-detail__value {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
}

.order-detail__value--status {
    color: #ffb206;
}

.order-detail--total {
    background: rgba(255, 178, 6, 0.1);
    margin-top: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.order-detail--total .order-detail__value {
    font-size: 1.4rem;
    color: #ffb206;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table__header {
    text-align: left;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.user-table__header--right {
    text-align: right;
}

.user-table__row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.user-table__row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-table__cell {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.user-table__cell--status {
    color: #ffb206;
}

.user-table__cell--right {
    text-align: right;
}

.user-table__link {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.user-table__link:hover {
    color: #78bcff;
    text-decoration: none;
}

.user-table__empty {
    text-align: center;
    padding: 48px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.user-pagination {
    display: flex;
    justify-content: center;
    padding: 24px 0;
}

.user-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.user-pagination li {
    display: inline;
}

.user-pagination a,
.user-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.user-pagination a {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.user-pagination a:hover {
    background: rgba(255, 178, 6, 0.3);
    color: #ffb206;
}

.user-pagination span {
    color: #ffb206;
    background: rgba(255, 178, 6, 0.2);
    font-weight: 600;
}

@media (max-width: 960px) {
    .pay-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pay-card {
        padding: 24px;
    }

    .user-sidebar {
        padding: 20px;
    }

    .user-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .pay-page {
        padding: 24px 16px;
    }

    .pay-page__title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .pay-page__desc {
        font-size: 1rem;
    }

    .pay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pay-card {
        padding: 20px;
    }

    .pay-page__submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .user-page {
        padding: 24px 16px;
    }

    .user-card {
        padding: 20px;
    }

    .user-table__header {
        padding: 12px 12px;
        font-size: 0.8rem;
    }

    .user-table__cell {
        padding: 12px 12px;
        font-size: 0.85rem;
    }
}

.rpage-page {
    min-height: 100vh;
    padding: 40px 20px;
}

.rpage-page__header {
    margin-bottom: 32px;
}

.rpage-content {
    background: rgba(25,118,210,0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rpage-content__title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 32px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.rpage-content__body {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.rpage-content__body h1,
.rpage-content__body h2,
.rpage-content__body h3,
.rpage-content__body h4,
.rpage-content__body h5,
.rpage-content__body h6 {
    color: #ffb206;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.rpage-content__body h1 { font-size: 1.6rem; }
.rpage-content__body h2 { font-size: 1.4rem; }
.rpage-content__body h3 { font-size: 1.25rem; }
.rpage-content__body h4 { font-size: 1.1rem; }

.rpage-content__body p {
    margin-bottom: 20px;
}

.rpage-content__body ul,
.rpage-content__body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.rpage-content__body li {
    margin-bottom: 10px;
}

.rpage-content__body a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.rpage-content__body a:hover {
    color: #4da6ff;
}

.rpage-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.rpage-content__body blockquote {
    border-left: 4px solid #ffb206;
    padding-left: 20px;
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.rpage-content__body hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

@media (max-width: 960px) {
    .rpage-content {
        padding: 32px 24px;
    }

    .rpage-content__title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 640px) {
    .rpage-page {
        padding: 24px 16px;
    }

    .rpage-content {
        padding: 24px 20px;
    }

    .rpage-content__title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .rpage-content__body {
        font-size: 0.95rem;
    }
}