html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background-color: #061517;
    font-family: "Poppins", system-ui, sans-serif;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(8px);
}

.tfa-qr {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    padding: 10px;
    outline: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 21, 23, 0) 0%,
        rgba(6, 21, 23, 1) 100%
    );
    pointer-events: none;
}

h1 {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 40px 20px 10px;
    color: white;
    font-weight: 700;
}

h2 {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 0 20px 20px;
    color: white;
    font-weight: 700;
}

p {
    font-family: "Poppins", system-ui, sans-serif;
    margin: 0 20px 40px;
    color: white;
    opacity: 0.85;
}

hr {
    color: rgba(0, 0, 0, 0.116)
}

padding {
    padding: 20px;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    color: white;
    font-family: "Poppins", system-ui, sans-serif;
}

.navbar {
    position: fixed;

    width: 100%;
    z-index: 100;
    padding: 10px 20px;

    display: flex;
    align-items: center;      

    backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);

    transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
    
    justify-content: space-between;
    padding: 15px 35px;
    box-sizing: border-box;
}

.navbar-element {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.navbar.top {
    background-color: rgba(6, 21, 23, 0);
    backdrop-filter: blur(0px);
}

.navbar.bottom {
    background-color: rgba(6, 21, 23, .95);
    backdrop-filter: blur(8px);
}

.lang-btn {
    padding: 10px 14px;
    border-radius: 7px; 

    background-color: rgba(2, 2, 2, 0.171);
    border: none;
    color: white;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
    background-color: rgba(24, 24, 24, 0.3);
    transform: translateY(-1px);
}

.lang-btn:active {
    transform: translateY(0px);
}

.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 3px;
    vertical-align: middle;
}

.arrowdown {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    vertical-align: middle;
}

.profile-button {
    border-radius: 10000px;
    max-width: 32px;
    max-height: 32px;
    cursor: pointer;
}

/* Modal styles */

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 30px;
    border-radius: 12px;
    background: #0d2326;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.modal-input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #2d4d52;
    background: #10292d;
    color: white;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: white 1px solid;
    color: white;
    cursor: pointer;
    background-color: #0d2326;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    padding: 20px;
    width: 250px;
    text-align: center;
    color: white;
    margin-bottom: 0px;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container .modal-input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    z-index: 1;
    margin-top: -5px;
}

.modal-input {
    width: 100%;
    padding-right: 40px;
}

/* Loader styles */

.loader {
    width: 24px;
    height: 24px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 


.account-topbar {
    background: #08191b;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.account-navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
}

.account-profile-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
}

.account-container {
    width: 1200px;
    max-width: 95%;
    margin: 40px auto;
}

.account-profile-header {
    background: #08191b;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.account-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.account-profile-name h1 {
    margin: 0;
    font-size: 36px;
}

.account-profile-name p {
    margin: 5px 0;
    opacity: 0.7;
}

.account-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.account-card {
    background: #08191b;
    border-radius: 12px;
    padding: 20px;
}

.account-card h2 {
    margin-top: 0;
}

.account-info-row {
    margin-bottom: 15px;
}

.account-info-label {
    font-weight: 600;
    opacity: 0.7;
}

.account-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 10px;
}

.account-stat h3 {
    margin: 0;
    font-size: 28px;
}

.account-stat p {
    margin: 5px 0 0;
    opacity: 0.7;
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-button-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.profile-container::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 10px;
}

.tooltip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    min-width: 180px;
    padding: 10px;

    background: rgba(8, 25, 27, 0.95);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    display: flex;
    flex-direction: column;
    gap: 4px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-5px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        visibility 0.15s ease;

    z-index: 1000;
}

.profile-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.tooltip p {
    margin: 0;
    padding: 0 12px 6px 12px;

    color: white;
    opacity: 0.6;

    font-size: 13px;
    font-weight: 600;
}

.tooltip button {
    width: 100%;

    padding: 10px 12px;

    background: transparent;
    border: none;
    border-radius: 8px;

    color: white;
    font-family: inherit;
    font-size: 14px;
    text-align: left;

    cursor: pointer;

    transition: background-color 0.15s ease;
}

.tooltip button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.otp-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.otp-box {
    width: 52px;
    height: 58px;

    text-align: center;
    font-size: 20px;
    font-weight: 600;

    color: white;

    background: #10292d;
    border: 1px solid #2d4d52;
    border-radius: 10px;

    outline: none;

    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.otp-box:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: #0f2a2e;
    transform: translateY(-1px);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.otp-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.grecaptcha-badge { 
    visibility: hidden !important;
}


.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #08191b;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.dashboard-sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: 50px;
}

.dashboard-sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.dashboard-sidebar-item-text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}

.dashboard-content {
    padding: 20px;
    color: white;
}

.dashboard-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #08191b;
    border: 2px dashed rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 50%;
    margin: 0px;
}

.dashboard-services h1 {
    margin-top: 0;
}

.order-service {
    border-radius: 8px;
    image-rendering: blur(5px);
}

.order-service-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    max-width: 100%;
    filter: brightness(0.5);
}

.order-bar {
    position: relative;
    width: 100%;
}

.order-text {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 25px;
    box-sizing: border-box;

    z-index: 1;
}

.order-text h1,
.order-text p {
    margin: 0;
    color: white;
}

.order-text p {
    opacity: 0.8;
}



.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    gap: 125px;
    justify-content: start;
}

.service {
    position: relative;
    width: 350px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #08191b;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    gap: 2px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15),
        transparent
    );
}

.service-ip-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: -50px;
    border-radius: 8px;
    margin-top: 50px;
    position: absolute;
    top: 10px;
    left: 75px;
}

.service-pill {
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 50px;
    background-color: #ff4d4d;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 165px;
    margin-left: 225px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    position: absolute;
    top: 20px;
    left: 20px;
}

.overlay-service {
    position: absolute;
    inset: 0;
    background: gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15), transparent);
    z-index: 1;
}

.service-buttons {
    display: flex;
    position: absolute;
    gap: 10px;
    margin-top: 10px;
    bottom: 35px;
    left: 15px;
}

.service-button {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    background-color: #0d2326;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, scale 0.2s ease;
}

.overlay-service {
    position: absolute;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0), transparent);
}

.service-button:hover {
    background-color: #0f2a2e;
    transform: translateY(-1px);
    scale: 1.02;
}

.service-button:active {
    transform: translateY(0px);
}

.navbar-element {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 50px;
    width: 70px;

    transition: transform 0.2s ease;
}

.navbar-element-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.navbar-element-icon {
    font-size: 14px;
    color: white;
}

.navbar-elements {
    display: flex;
    align-items: left;
    gap: 100px;
}

.navbar-element:hover {
    transform: translateY(-2px) scale(1.05);
}

.dotted-outline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 2px dashed rgba(255, 255, 255, 0.055);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, scale 0.2s ease, border 0.2s ease;
}

.dotted-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    scale: 1.01;
    border: 2px dashed rgba(109, 109, 109, 0.5);
}


.dashboard-modal {
    padding: 25px;
    color: white;
    background: #08191b;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    max-width: 600px;
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: stretch;
}

.dashboard-modal body {
    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #061517;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.form-step.active {
    display: flex;
}

.form-element {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-element label {
    font-weight: 600;
    font-size: 13px;
    opacity: 0.75;
    color: white;
    align-self: center;
}

.form-element input,
.form-element select {
    width: 85%;
    align-self: center;
    box-sizing: border-box;

    padding: 10px 12px;

    border-radius: 6px;
    border: 1px solid #2d4d52;

    background: #10292d;
    color: white;
    font-size: 14px;

    outline: none;

    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.form-element input:focus,
.form-element select:focus {
    background: #0f2a2e;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.form-element input:hover,
.form-element select:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-step h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    opacity: 0.9;
}

.form-step p {
    margin: 0;
    opacity: 0.75;
    font-size: 14px;
}

.form-category {
    font-weight: 600;
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 0;
}

.modal-overlay {
    position: fixed;
    
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);

    z-index: 999;
    transition: visibility 0.2s ease, opacity 0.2s ease;
}

.modal-button {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    background-color: #0d2326;
    color: white;
    font-weight: 600;
    cursor: pointer;

    transition: background-color 0.2s ease, transform 0.2s ease, scale 0.2s ease;
}

.modal-button:disabled {
    background-color: rgba(13, 35, 38, 0.5);
    cursor: not-allowed;
}

.modal-button:hover:not(:disabled) {
    background-color: #0f2a2e;
    transform: translateY(-1px);
    scale: 0.98;
}

.modal-button:active {
    transform: translateY(0px);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    gap: 65%;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.bottombar {
    padding: 12px 20px;

    background-color: #061517; /* matches your site base */
    color: rgba(255, 255, 255, 0.65);

    font-family: "Poppins", system-ui, sans-serif;
    font-size: 13px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 9999;
    text-align: center;
}

.bottombariframe {
    outline: none;
    width: 100%;
    height: 500px;
    border-color: #ffffff00;
}

.bottombar-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: .25;
}

.searchbar {
    position: relative;
    width: 250px;
}

.version-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #0b1c1f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;

    max-height: 200px;
    overflow-y: auto;

    display: none;
    flex-direction: column;
}

.version-list button {
    padding: 10px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
}

.version-list button:hover {
    background: rgba(255,255,255,0.08);
}


.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 20px;
    border-radius: 8px;

    cursor: pointer;
    user-select: none;

    transition: transform 0.15s ease, opacity 0.15s ease;

    margin-bottom: 15px;

}

.brand-oauth p {
    margin: 0;
}

.brand-oauth:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.brand-oauth.discord {
    background-color: #5762f8;
    color: white;
}

.brand-oauth.github {
    background-color: #181c1f;
    color: #ffffff;
}

.brand-oauth.google {
    background-color: #ffffff;
    color: #000000;
}

.oauth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.oauth-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid #ccc;
}

.oauth-divider p {
    margin: 0;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: white 1px solid;
    color: white;
    cursor: pointer;
    background-color: #0d2326;
}

.modal-button:disabled {
    background-color: rgba(13, 35, 38, 0.5);
    cursor: not-allowed;
}

.modal-button:hover:not(:disabled) {
    background-color: #0f2a2e;
    transform: translateY(-1px);
    scale: 0.98;
}

.modal-button:active {
    transform: translateY(0px);
}
.error-message {
    min-height: 18px;
    margin: 8px 0 0;
    color: #ff8585;
    font-size: 12px;
    text-align: left;
}
