.account-page {
    padding: 48px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(47, 123, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(6, 9, 16, 0.98), rgba(10, 14, 22, 1));
}

.manage-profile-page {
    min-height: calc(100vh - 120px);
}

.manage-profile-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.manage-profile-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.manage-profile-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.manage-profile-btn {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1f29;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.manage-profile-btn:hover {
    color: #fff;
    background: #232a36;
    border-color: rgba(58, 137, 255, 0.32);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(58, 137, 255, 0.12);
}

.manage-profile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 34px;
}

.manage-profile-grid > .col {
    flex: 0 0 20%;
    max-width: 20%;
}

.manage-profile-card {
    position: relative;
    height: 100%;
    min-height: 168px;
    padding: 22px 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    text-align: center;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.manage-profile-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(70, 146, 255, 0.38);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(70, 146, 255, 0.12), 0 0 26px rgba(70, 146, 255, 0.08);
}

.manage-profile-card.is-active {
    border-color: rgba(48, 128, 255, 0.9);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(48, 128, 255, 0.22), 0 0 30px rgba(48, 128, 255, 0.16);
}

.manage-profile-card-lock {
    position: absolute;
    top: 14px;
    left: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1;
}

.manage-profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 18px auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.manage-profile-card.is-active .manage-profile-avatar {
    border-color: rgba(48, 128, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(48, 128, 255, 0.14), 0 12px 26px rgba(48, 128, 255, 0.16);
}

.manage-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manage-profile-name {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.edit-profile-page {
    min-height: calc(100vh - 120px);
}

.edit-profile-header {
    margin-bottom: 18px;
}

.edit-profile-title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.edit-profile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 34px;
}

.edit-profile-grid > .col {
    flex: 0 0 20%;
    max-width: 20%;
}

.edit-profile-card {
    position: relative;
    height: 100%;
    min-height: 186px;
    padding: 22px 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.edit-profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(70, 146, 255, 0.38);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 26px rgba(70, 146, 255, 0.08);
}

.edit-profile-card-lock {
    position: absolute;
    top: 14px;
    left: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1;
    z-index: 2;
}

.edit-profile-avatar-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 18px 0 16px;
    cursor: pointer;
}

.edit-profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.edit-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-profile-edit-btn {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(15, 20, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.edit-profile-name {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.edit-profile-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.adult-page-title {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.adult-page-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 14px 0 28px;
}

.adult-preview-card,
.adult-form-card {
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.adult-preview-card {
    min-height: 430px;
    padding: 22px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adult-preview-inner {
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.adult-preview-avatar-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
}

.adult-preview-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.adult-preview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adult-preview-name {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.adult-form-card {
    padding: 22px;
}

.adult-cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.adult-action-btn {
    min-height: 46px;
    width: 100%;
    max-width: 300px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1f29;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.adult-action-btn:hover {
    color: #fff;
    background: #242b37;
    transform: translateY(-1px);
    border-color: rgba(58, 137, 255, 0.32);
}

.adult-or-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin: 2px 0;
}

.adult-upload-btn {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2f7bff, #4b95ff);
    color: #fff;
    border: 0;
    font-weight: 700;
}

.adult-upload-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #256df0, #3b89f0);
}

.adult-section-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 8px;
}

.adult-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 11px 14px !important;
    box-shadow: none !important;
    min-height: 46px;
}

.adult-input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.adult-btn-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.adult-btn-row .btn {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 700;
}

.adult-btn-primary {
    background: linear-gradient(135deg, #2f7bff, #4b95ff);
    border: 0;
    color: #fff;
}

.adult-btn-primary:hover {
    background: linear-gradient(135deg, #256df0, #3b89f0);
    color: #fff;
}

.adult-btn-secondary {
    background: #2a2f3a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e9edf6;
}

.adult-btn-secondary:hover {
    background: #343b48;
    color: #fff;
}

.adult-btn-danger {
    background: #2a2f3a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.adult-btn-danger:hover {
    background: #3a2226;
    color: #fff;
}

.avatar-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.avatar-choice {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.avatar-choice:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(58, 137, 255, 0.34);
}

.avatar-choice img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.avatar-choice span {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.adult-modal,
.adult-delete-modal {
    background: #0d121b;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.adult-modal .modal-body {
    padding: 20px;
}

.adult-modal .modal-header,
.adult-delete-modal .modal-header {
    padding: 16px 20px;
}

.adult-modal .modal-title,
.adult-delete-modal .modal-title {
    font-size: 20px;
}

.adult-modal .modal-header,
.adult-delete-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.adult-modal .modal-title,
.adult-delete-modal .modal-title {
    color: #fff;
    font-weight: 700;
}

.adult-modal .btn-close,
.adult-delete-modal .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 1;
}

.adult-delete-message {
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    margin: 8px 0 4px;
}

.adult-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.adult-modal-btn-row {
    margin-top: 16px;
}

.kid-pin-page .container,
.kid-profile-page .container {
    max-width: 1140px;
}

.kid-pin-shell {
    display: flex;
    justify-content: center;
}

.kid-pin-title-card{
    max-width: 520px;
    margin: auto;
}
.kid-pin-card {
    width: 100%;
    max-width: 520px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.kid-pin-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.kid-pin-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 8px;
}

.kid-pin-field {
    position: relative;
}

.kid-pin-input {
    padding-right: 52px !important;
}

.kid-pin-eye {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.kid-pin-forgot {
    color: #3f8cff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.kid-pin-forgot:hover {
    color: #5aa0ff;
}

.kid-pin-next,
.kid-pin-card .adult-btn-secondary {
    max-width: 100%;
}

.kid-profile-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.kid-profile-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.12;
}

.kid-profile-head-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.kid-profile-head-links a {
    color: #3f8cff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.kid-preview-card {
    min-height: 360px;
}

.kid-form-card {
    padding: 22px;
}

.kid-helper-text {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.5;
}

.kid-control-card {
    margin-top: 10px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.kid-control-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.kid-rating-group + .kid-rating-group {
    margin-top: 18px;
}

.kid-rating-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.kid-rating-track {
    position: relative;
    padding-top: 10px;
}

.kid-rating-line {
    position: absolute;
    width: 83%;
    left: 53px;
    right: 12px;
    top: -7px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.kid-rating-dots {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.kid-rating-dots--series {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kid-rating-dot {
    position: relative;
    /* min-height: 44px; */
    border-radius: 999px;
    /* border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1f29; */
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kid-rating-dot::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: #0f141d;
}

.kid-rating-dot.is-active {
    /* background: #1e67ff;
    border-color: rgba(63, 140, 255, 0.45); */
    color: #fff;
}

.kid-rating-dot.is-active::before {
    background: #3f8cff;
    border-color: #3f8cff;
}

.kid-rating-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kid-rating-track--series .kid-rating-dots {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kid-profile-page .adult-btn-row {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .kid-profile-head {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .kid-profile-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .kid-profile-head-links {
        justify-content: flex-start;
    }

    .kid-pin-card,
    .kid-form-card {
        padding: 20px;
    }

    .kid-rating-dots,
    .kid-rating-track--series .kid-rating-dots {
        min-width: 640px;
    }

    .kid-control-card {
        overflow-x: auto;
    }
}

.account-profile-card,
.account-details-card,
.account-modal,
.account-device-modal {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.account-profile-card {
    padding: 34px 24px;
}

.account-profile-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(47, 123, 255, 0.65);
    box-shadow: 0 12px 30px rgba(47, 123, 255, 0.22);
    margin-bottom: 18px;
}

.account-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile-name {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.account-details-card {
    padding: 28px;
}

.account-section + .account-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-section-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.account-connect-fields {
    display: grid;
    gap: 14px;
}

.account-input-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    margin-bottom: 8px;
}

.account-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 13px 16px !important;
    box-shadow: none !important;
}

.account-link-row,
.account-settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-decoration: none;
    color: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.account-link-row:hover,
.account-settings-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.account-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.account-mini-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47, 123, 255, 0.92), rgba(65, 147, 255, 0.72));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(47, 123, 255, 0.2);
}

.account-row-text span,
.account-row-right span,
.account-settings-item span {
    font-size: 15px;
    font-weight: 600;
}

.account-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.account-settings-list {
    display: grid;
    gap: 12px;
}

.account-settings-item--danger {
    color: #ff6b6b;
}

.account-settings-item--danger:hover {
    color: #ff8b8b;
}

.account-settings-item i,
.account-row-right i {
    color: rgba(255, 255, 255, 0.65);
}

.account-settings-item--danger i {
    color: #ff6b6b;
}

.account-modal,
.account-device-modal {
    background: #0d121b;
}

.account-modal-header,
.account-device-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
}

.account-modal-title,
.account-device-modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.account-modal-body,
.account-device-modal-body {
    padding: 22px 20px 20px;
}

.account-modal-desc {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.account-modal-cancel,
.account-device-logout-all,
.account-device-logout-btn {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: #e3e7ef;
}

.account-modal-cancel:hover,
.account-device-logout-all:hover,
.account-device-logout-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.account-modal-delete {
    border-radius: 12px;
    background: #e54545;
    border: 1px solid #e54545;
    color: #fff;
}

.account-modal-delete:hover {
    background: #cf3737;
    border-color: #cf3737;
    color: #fff;
}

.account-device-logout-all {
    color: #ff6b6b;
}

.account-device-modal {
    border-radius: 26px;
}

.account-device-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    height: 100%;
}

.account-device-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.account-device-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.account-device-name i {
    color: #3f8cff;
    margin-right: 8px;
}

.account-device-country {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.account-device-status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.account-device-icon {
    margin-top: 4px;
    font-size: 10px;
}

.account-device-icon--active {
    color: #3f8cff;
}

.account-device-icon--inactive {
    color: #f2c14e;
}

.account-device-status-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.account-device-status-meta {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

@media (max-width: 991px) {
    .account-profile-card {
        margin-bottom: 0;
    }

    .manage-profile-header {
        align-items: flex-start;
    }

    .manage-profile-grid > .col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .edit-profile-grid > .col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .adult-profile-page .container {
        max-width: 1120px;
    }

    .adult-preview-card {
        min-height: 360px;
    }
}

@media (max-width: 767px) {
    .account-page {
        padding: 36px 0 64px;
    }

    .account-details-card {
        padding: 20px;
    }

    .account-link-row,
    .account-settings-item {
        padding: 14px 15px;
    }

    .account-mini-box {
        min-width: 84px;
    }

    .account-device-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .adult-page-title {
        font-size: 34px;
    }

    .adult-preview-card {
        min-height: 320px;
    }

    .adult-form-card {
        padding: 18px;
    }

    .adult-action-btn {
        max-width: 100%;
    }

    .manage-profile-header {
        flex-direction: column;
    }

    .manage-profile-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .manage-profile-grid > .col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .edit-profile-grid > .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .manage-profile-grid > .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .edit-profile-grid > .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .adult-page-title {
        font-size: 30px;
    }

    .adult-preview-avatar-wrap {
        width: 132px;
        height: 132px;
    }

    .adult-preview-card {
        min-height: 290px;
    }
}


.account-google-connect.single{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 20px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:#090d13;
    color:#fff;
    transition:.3s;
}

.account-google-connect.single:hover{
    border-color:#1f9dff;
    box-shadow:0 0 20px rgba(31,157,255,.08);
}

.account-google-connect.single img{
    width:22px;
    height:22px;
}

.account-google-connect.single span{
    font-size:15px;
    font-weight:500;
}
