.dartheme-elementor-container { max-width:1200px; margin:0 auto; }

/* =========================================================
   DarHost Header
   ========================================================= */

.dh-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(7, 17, 31, 0.92);
}

.dh-header-inner {
    width: 100%;
    max-width: 1200px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.dh-logo {
    color: #ffffff;
    text-decoration: none;

    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;

    white-space: nowrap;
}

.dh-logo span {
    color: #19a7ff;
}


/* Navigation */

.dh-nav {
    margin-left: auto;
}

.dh-menu {
    display: flex;
    align-items: center;
    gap: 28px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.dh-menu li {
    margin: 0;
    padding: 0;
}

.dh-menu a {
    color: #aebdce;
    text-decoration: none;

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

    transition: color 0.2s ease;
}

.dh-menu a:hover {
    color: #19a7ff;
}


/* Header Button */

.dh-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 19px;

    border-radius: 8px;

    background: #19a7ff;
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.dh-header-button:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: translateY(-1px);
}


/* Mobile */

@media (max-width: 950px) {

    .dh-header-inner {
        padding: 20px;
    }

    .dh-nav {
        display: none;
    }

    .dh-header-button {
        min-height: 38px;
        padding: 0 14px;
    }

}

/* =========================================================
   DARHOST VPS HOMEPAGE
   ========================================================= */

.darhost-home {
    background: #07111f;
    color: #ffffff;
    overflow: hidden;
}


/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */

.dh-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.dh-hero {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 20% 35%,
            rgba(25, 167, 255, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 220, 180, 0.08),
            transparent 30%
        ),
        #07111f;
}


.dh-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.10;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    pointer-events: none;
}


.dh-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding-top: 50px;
    padding-bottom: 50px;
}


.dh-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 15px;

    margin-bottom: 22px;

    border: 1px solid rgba(25, 167, 255, 0.35);

    border-radius: 30px;

    background: rgba(25, 167, 255, 0.08);

    color: #5bc4ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.dh-hero h1 {
    max-width: 850px;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;
}


.dh-hero h1 span {
    display: block;

    color: #19a7ff;
}


.dh-hero p {
    max-width: 650px;

    margin: 0 0 35px;

    color: #aebdce;

    font-size: 18px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */

.dh-hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.dh-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        background 0.2s ease;
}


.dh-btn:hover {
    transform: translateY(-2px);
}


.dh-btn-primary {
    background: #19a7ff;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(25, 167, 255, 0.20);
}


.dh-btn-primary:hover {
    color: #ffffff;

    opacity: 0.9;
}


.dh-btn-secondary {
    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.04);

    color: #ffffff;
}


.dh-btn-secondary:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.08);
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.dh-section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;
}


.dh-section-heading .dh-badge {
    margin-bottom: 16px;
}


.dh-section-heading h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(34px, 5vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.dh-section-heading p {
    margin: 0;

    color: #8fa1b5;

    font-size: 16px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   VPS PLANS SECTION
   --------------------------------------------------------- */

.dh-plans {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #07111f 0%,
            #091625 100%
        );
}


.dh-plan-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px, 1fr)
        );

    gap: 24px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   VPS PLAN CARD
   --------------------------------------------------------- */

.dh-plan-card {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,0.20);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.dh-plan-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(25,167,255,0.45);
}


/* Plan Header */

.dh-plan-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}


.dh-plan-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;
}


.dh-plan-profile {
    padding: 5px 9px;

    border-radius: 6px;

    background: rgba(25,167,255,0.08);

    color: #5bc4ff;

    font-size: 10px;

    font-weight: 700;
}


/* Price */

.dh-plan-price {
    display: flex;

    align-items: baseline;

    gap: 7px;

    margin-bottom: 25px;

    padding-bottom: 22px;

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


.dh-plan-price strong {
    color: #ffffff;

    font-size: 30px;

    font-weight: 800;
}


.dh-plan-price span {
    color: #75879b;

    font-size: 13px;
}


/* Specs */

.dh-plan-specs {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    margin-bottom: 28px;
}


.dh-spec {
    padding: 15px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.dh-spec:nth-child(odd) {
    margin-right: 12px;
}


.dh-spec span {
    display: block;

    margin-bottom: 5px;

    color: #71849a;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.dh-spec strong {
    color: #dce7f2;

    font-size: 14px;
}


/* Plan Button */

.dh-plan-button {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    margin-top: auto;

    border-radius: 8px;

    background: #19a7ff;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.dh-plan-button:hover {
    color: #ffffff;

    opacity: 0.9;

    transform: translateY(-1px);
}


/* No Plans */

.dh-no-plans {
    grid-column: 1 / -1;

    padding: 40px;

    text-align: center;

    border: 1px dashed rgba(255,255,255,0.12);

    border-radius: 14px;

    color: #8293a7;
}


/* ---------------------------------------------------------
   FEATURES
   --------------------------------------------------------- */

.dh-features {
    padding: 100px 0;

    background: #06101d;
}


.dh-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 18px;
}


.dh-feature {
    padding: 28px;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 15px;

    background: rgba(255,255,255,0.025);

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


.dh-feature:hover {
    transform: translateY(-4px);

    border-color:
        rgba(25,167,255,0.30);
}


.dh-feature h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 17px;
}


.dh-feature p {
    margin: 0;

    color: #8293a7;

    font-size: 13px;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .dh-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .dh-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .dh-hero {
        min-height: 570px;
    }


    .dh-hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }


    .dh-hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }


    .dh-hero p {
        font-size: 16px;
    }


    .dh-plans,
    .dh-features {
        padding: 75px 0;
    }


    .dh-section-heading {
        margin-bottom: 40px;
    }

}


@media (max-width: 800px) {

    .dh-hero h1 {
        font-size: 40px;
    }


    .dh-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .dh-btn {
        width: 100%;
    }


    .dh-plan-grid {
        grid-template-columns: 1fr;
    }


    .dh-feature-grid {
        grid-template-columns: 1fr;
    }


    .dh-plan-card {
        padding: 24px;
    }

}


/* =========================================================
   DARHOST HEADER
   ========================================================= */

.dh-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    background:
        rgba(7,17,31,0.92);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.dh-header-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    max-width: 1200px;

    min-height: 78px;

    margin: 0 auto;

    padding: 0 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.dh-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    flex-shrink: 0;
}


.dh-logo:hover {
    color: #ffffff;
}


.dh-logo-mark {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #19a7ff,
            #0878c5
        );

    color: #ffffff;

    font-size: 17px;

    font-weight: 900;

    box-shadow:
        0 7px 25px rgba(25,167,255,0.25);
}


.dh-logo-text {
    color: #ffffff;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 1px;
}


.dh-logo-text span {
    color: #19a7ff;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.dh-navigation {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;

    margin-right: 35px;
}


.dh-navigation a {
    position: relative;

    color: #91a4b9;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        color 0.2s ease;
}


.dh-navigation a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    border-radius: 2px;

    background: #19a7ff;

    transition:
        width 0.2s ease;
}


.dh-navigation a:hover {
    color: #ffffff;
}


.dh-navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.dh-header-actions {
    display: flex;

    align-items: center;

    gap: 18px;
}


.dh-login {
    color: #a9b9c9;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        color 0.2s ease;
}


.dh-login:hover {
    color: #ffffff;
}


.dh-header-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 7px;

    background: #19a7ff;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 7px 25px rgba(25,167,255,0.18);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.dh-header-button:hover {
    color: #ffffff;

    opacity: 0.9;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.dh-mobile-toggle {
    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 42px;

    height: 42px;

    padding: 10px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 8px;

    background: rgba(255,255,255,0.04);

    cursor: pointer;
}


.dh-mobile-toggle span {
    display: block;

    width: 100%;

    height: 2px;

    border-radius: 2px;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.dh-mobile-menu {
    display: none;

    position: relative;

    z-index: 999;

    padding: 10px 20px 20px;

    border-bottom:
        1px solid rgba(255,255,255,0.07);

    background: #07111f;
}


.dh-mobile-menu a {
    display: block;

    padding: 14px 5px;

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    color: #a9b9c9;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;
}


.dh-mobile-menu a:hover {
    color: #ffffff;
}


.dh-mobile-menu .dh-mobile-deploy {
    margin-top: 12px;

    border: 0;

    border-radius: 7px;

    background: #19a7ff;

    color: #ffffff;

    text-align: center;
}


/* =========================================================
   RESPONSIVE HEADER
   ========================================================= */

@media (max-width: 950px) {

    .dh-navigation {
        gap: 20px;

        margin-right: 20px;
    }

}


@media (max-width: 800px) {

    .dh-navigation,
    .dh-header-actions {
        display: none;
    }


    .dh-mobile-toggle {
        display: flex;
    }


    .dh-mobile-menu.active {
        display: block;
    }


    .dh-header-inner {
        min-height: 70px;

        padding: 0 20px;
    }

}


@media (max-width: 420px) {

    .dh-logo-text {
        font-size: 17px;
    }


    .dh-logo-mark {
        width: 31px;

        height: 31px;

        font-size: 15px;
    }

}


/* =========================================================
   DARHOST INFRASTRUCTURE
   ========================================================= */

.dh-infrastructure {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #06101d 0%,
            #071321 100%
        );

    overflow: hidden;
}


/* Subtle background glow */

.dh-infrastructure::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: -250px;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(25,167,255,0.07);

    filter: blur(100px);

    pointer-events: none;
}


.dh-infrastructure .dh-container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   INFRASTRUCTURE GRID
   ========================================================= */

.dh-infrastructure-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1100px;

    margin: 0 auto;
}


/* =========================================================
   INFRASTRUCTURE CARD
   ========================================================= */

.dh-infra-card {
    position: relative;

    min-height: 220px;

    padding: 30px;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 18px 50px rgba(0,0,0,0.18);

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


.dh-infra-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(25,167,255,0.38);

    background:
        linear-gradient(
            145deg,
            rgba(25,167,255,0.08),
            rgba(255,255,255,0.025)
        );
}


/* =========================================================
   INFRASTRUCTURE ICON
   ========================================================= */

.dh-infra-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 23px;

    border:
        1px solid rgba(25,167,255,0.20);

    border-radius: 12px;

    background:
        rgba(25,167,255,0.08);

    color: #19a7ff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.5px;

    box-shadow:
        inset 0 0 20px rgba(25,167,255,0.04);
}


/* =========================================================
   INFRASTRUCTURE TITLE
   ========================================================= */

.dh-infra-card h3 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 750;
}


/* =========================================================
   INFRASTRUCTURE TEXT
   ========================================================= */

.dh-infra-card p {
    margin: 0;

    color: #8294a8;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .dh-infrastructure-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .dh-infrastructure {
        padding: 80px 0;
    }


    .dh-infrastructure-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .dh-infra-card {
        min-height: auto;

        padding: 25px;
    }

}

/* =========================================================
   DARHOST - WHY DARHOST
   ========================================================= */

.dh-why-darhost {
    position: relative;

    padding: 115px 0;

    background:
        #07111f;

    overflow: hidden;
}


/* Background glow */

.dh-why-darhost::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -280px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(25,167,255,0.065);

    filter: blur(110px);

    pointer-events: none;
}


.dh-why-darhost .dh-container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.dh-why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(350px, 0.95fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.dh-why-content {
    max-width: 650px;
}


.dh-why-content .dh-badge {
    margin-bottom: 20px;
}


.dh-why-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;
}


.dh-why-content h2 span {
    display: block;

    color: #19a7ff;
}


.dh-why-content > p {
    max-width: 600px;

    margin: 0 0 40px;

    color: #899bae;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.dh-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px 30px;
}


.dh-benefit {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.dh-benefit-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 43px;
    height: 43px;

    border:
        1px solid rgba(25,167,255,0.18);

    border-radius: 10px;

    background:
        rgba(25,167,255,0.07);

    font-size: 17px;
}


.dh-benefit h3 {
    margin: 2px 0 6px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.3;
}


.dh-benefit p {
    margin: 0;

    color: #778a9f;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   STATUS PANEL
   ========================================================= */

.dh-status-panel {
    position: relative;

    padding: 32px;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);

    overflow: hidden;
}


/* Top glow */

.dh-status-panel::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #19a7ff,
            transparent
        );
}


/* =========================================================
   STATUS HEADER
   ========================================================= */

.dh-status-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}


.dh-status-label {
    display: block;

    margin-bottom: 7px;

    color: #19a7ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.dh-status-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;

    font-weight: 750;
}


/* Online badge */

.dh-status-online {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 10px;

    border:
        1px solid rgba(50,220,140,0.18);

    border-radius: 20px;

    background:
        rgba(50,220,140,0.06);

    color: #67dca3;

    font-size: 10px;

    font-weight: 700;
}


.dh-status-online span {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #42d994;

    box-shadow:
        0 0 10px rgba(66,217,148,0.6);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.dh-status-line {
    height: 1px;

    margin: 25px 0 5px;

    background:
        rgba(255,255,255,0.07);
}


/* =========================================================
   STATUS ITEMS
   ========================================================= */

.dh-status-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.055);
}


.dh-status-item span {
    display: block;

    margin-bottom: 5px;

    color: #6f8195;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.dh-status-item strong {
    color: #dce7f2;

    font-size: 13px;

    font-weight: 650;
}


.dh-status-ready {
    color: #55d89a;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


/* =========================================================
   STATUS FOOTER
   ========================================================= */

.dh-status-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 22px;

    padding: 15px;

    border-radius: 10px;

    background:
        rgba(25,167,255,0.055);
}


.dh-status-footer span {
    color: #75889d;

    font-size: 11px;
}


.dh-status-footer strong {
    color: #5bc4ff;

    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .dh-why-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .dh-why-content {
        max-width: 800px;
    }


    .dh-status-panel {
        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .dh-why-darhost {
        padding: 80px 0;
    }


    .dh-benefits {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .dh-status-panel {
        padding: 24px;

        border-radius: 16px;
    }


    .dh-status-header h3 {
        font-size: 21px;
    }

}


@media (max-width: 420px) {

    .dh-status-header {
        flex-direction: column;
    }


    .dh-status-online {
        align-self: flex-start;
    }

}

/* =========================================================
   DARHOST FAQ
   ========================================================= */

.dh-faq {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #071321 0%,
            #06101d 100%
        );

    overflow: hidden;
}


.dh-faq::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 45%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(25,167,255,0.045);

    filter: blur(110px);

    pointer-events: none;
}


.dh-faq .dh-container {
    position: relative;

    z-index: 2;

    max-width: 900px;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.dh-faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 100%;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.dh-faq-item {
    border:
        1px solid rgba(255,255,255,0.075);

    border-radius: 13px;

    background:
        rgba(255,255,255,0.025);

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.dh-faq-item:hover {
    border-color:
        rgba(25,167,255,0.22);
}


/* =========================================================
   QUESTION
   ========================================================= */

.dh-faq-question {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    padding: 22px 24px;

    border: 0;

    background: transparent;

    color: #ffffff;

    text-align: left;

    font-family: inherit;

    font-size: 15px;

    font-weight: 650;

    cursor: pointer;
}


.dh-faq-question:hover {
    color: #ffffff;
}


.dh-faq-question > span:first-child {
    flex: 1;
}


/* =========================================================
   PLUS ICON
   ========================================================= */

.dh-faq-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    border:
        1px solid rgba(25,167,255,0.20);

    border-radius: 7px;

    background:
        rgba(25,167,255,0.06);

    color: #19a7ff;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


/* =========================================================
   ANSWER
   ========================================================= */

.dh-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.3s ease;
}


.dh-faq-answer p {
    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 24px;

    color: #8294a8;

    font-size: 13px;

    line-height: 1.75;

    transition:
        padding 0.3s ease;
}


/* =========================================================
   ACTIVE FAQ
   ========================================================= */

.dh-faq-item.active {
    border-color:
        rgba(25,167,255,0.30);

    background:
        rgba(25,167,255,0.035);
}


.dh-faq-item.active .dh-faq-answer {
    grid-template-rows: 1fr;
}


.dh-faq-item.active .dh-faq-answer p {
    padding:
        0 24px 23px;
}


.dh-faq-item.active .dh-faq-icon {
    background:
        rgba(25,167,255,0.12);

    transform:
        rotate(45deg);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

    .dh-faq {
        padding: 80px 0;
    }


    .dh-faq-question {
        padding: 19px 18px;

        font-size: 14px;
    }


    .dh-faq-answer p {
        padding-left: 18px;

        padding-right: 18px;
    }


    .dh-faq-item.active .dh-faq-answer p {
        padding:
            0 18px 20px;
    }

}

/* =========================================================
   DARHOST FOOTER
   ========================================================= */

.dh-footer {
    position: relative;

    padding: 75px 0 0;

    background:
        #050d18;

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

    overflow: hidden;
}


/* Top glow */

.dh-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 500px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(25,167,255,0.65),
            transparent
        );
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.dh-footer-main {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.8fr)
        repeat(3, 1fr);

    gap: 55px;

    padding-bottom: 60px;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.dh-footer-brand {
    max-width: 360px;
}


.dh-footer-logo {
    display: inline-flex;

    margin-bottom: 22px;
}


.dh-footer-brand > p {
    margin: 0;

    max-width: 330px;

    color: #708297;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER STATUS
   ========================================================= */

.dh-footer-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    padding: 7px 11px;

    border:
        1px solid rgba(66,217,148,0.15);

    border-radius: 20px;

    background:
        rgba(66,217,148,0.045);

    color: #70cfa0;

    font-size: 10px;

    font-weight: 700;
}


.dh-footer-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #42d994;

    box-shadow:
        0 0 9px rgba(66,217,148,0.55);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.dh-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.dh-footer-column h3 {
    margin: 5px 0 22px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


.dh-footer-column a {
    margin-bottom: 13px;

    color: #718398;

    text-decoration: none;

    font-size: 12px;

    line-height: 1.5;

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


.dh-footer-column a:hover {
    color: #19a7ff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.dh-footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 70px;

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


.dh-footer-copyright {
    color: #596c80;

    font-size: 11px;

    line-height: 1.5;
}


.dh-footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}


.dh-footer-legal a {
    color: #596c80;

    text-decoration: none;

    font-size: 11px;

    transition:
        color 0.2s ease;
}


.dh-footer-legal a:hover {
    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .dh-footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 35px;
    }


    .dh-footer-brand {
        grid-column:
            1 / -1;

        max-width: 550px;
    }

}


@media (max-width: 600px) {

    .dh-footer {
        padding-top: 60px;
    }


    .dh-footer-main {
        grid-template-columns:
            1fr 1fr;

        gap: 35px 25px;

        padding-bottom: 45px;
    }


    .dh-footer-brand {
        grid-column:
            1 / -1;
    }


    .dh-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 10px;

        padding: 20px 0;
    }

}


@media (max-width: 400px) {

    .dh-footer-main {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   DarHost VPS Order Page
   ========================================================= */

.dh-order-page {
    background: #07111f;
    min-height: 100vh;
    padding-bottom: 80px;
}

.dh-order-hero {
    padding: 90px 0 70px;
}

.dh-order-hero .dh-section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.dh-order-hero .dh-section-heading h1 {
    margin: 18px 0 12px;
    font-size: 46px;
    line-height: 1.15;
}

.dh-order-hero .dh-section-heading p {
    margin: 0;
    font-size: 17px;
    opacity: .75;
}

.dh-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.dh-order-card {
    background: rgba(15, 30, 50, .88);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.dh-order-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.dh-order-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .6;
    margin-bottom: 8px;
}

.dh-order-card h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.dh-order-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
}

.dh-order-price strong {
    font-size: 34px;
    line-height: 1;
}

.dh-order-price span {
    font-size: 15px;
    opacity: .65;
}

.dh-order-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dh-order-specs .dh-spec {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    padding: 15px 16px;
}

.dh-order-specs .dh-spec span {
    display: block;
    font-size: 12px;
    opacity: .55;
    margin-bottom: 5px;
}

.dh-order-specs .dh-spec strong {
    display: block;
    font-size: 15px;
}

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

.dh-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dh-form-group label {
    font-size: 14px;
    font-weight: 600;
}

.dh-form-group input {
    width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.045);
    color: inherit;
    outline: none;
    font-size: 15px;
}

.dh-form-group input:focus {
    border-color: rgba(255,255,255,.30);
}

.dh-form-group input::placeholder {
    opacity: .45;
}

.dh-order-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 5px;
}

.dh-order-submit:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.dh-order-note {
    margin: 2px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    opacity: .5;
}

.dh-order-error {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: rgba(15,30,50,.88);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    padding: 50px 35px;
}

.dh-order-error h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.dh-order-error p {
    margin: 0 0 28px;
    opacity: .7;
}

@media (max-width: 800px) {

    .dh-order-hero {
        padding: 60px 0 50px;
    }

    .dh-order-hero .dh-section-heading h1 {
        font-size: 36px;
    }

    .dh-order-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dh-order-card {
        padding: 24px;
    }

}

@media (max-width: 480px) {

    .dh-order-hero .dh-section-heading h1 {
        font-size: 31px;
    }

    .dh-order-specs {
        grid-template-columns: 1fr;
    }

    .dh-order-card {
        padding: 20px;
    }

}

/* =========================================================
   VPS Order Page - Text Visibility Fix
   ========================================================= */

.dh-order-page,
.dh-order-page h1,
.dh-order-page h2,
.dh-order-page h3,
.dh-order-page p,
.dh-order-page label,
.dh-order-page strong,
.dh-order-page span {
    color: #ffffff;
}

.dh-order-page .dh-section-heading p,
.dh-order-page .dh-order-label,
.dh-order-page .dh-order-price span,
.dh-order-page .dh-order-note {
    color: rgba(255,255,255,.70);
}

.dh-order-page .dh-order-card {
    color: #ffffff;
}

.dh-order-page .dh-order-card h2 {
    color: #ffffff;
}

.dh-order-page .dh-order-specs .dh-spec span {
    color: rgba(255,255,255,.60);
}

.dh-order-page .dh-order-specs .dh-spec strong {
    color: #ffffff;
}

.dh-order-page .dh-form-group label {
    color: #ffffff;
}

.dh-order-page .dh-form-group input {
    color: #ffffff;
}

.dh-order-page .dh-form-group input::placeholder {
    color: rgba(255,255,255,.50);
}

.dh-order-page .dh-order-error h2 {
    color: #ffffff;
}

.dh-order-page .dh-order-error p {
    color: rgba(255,255,255,.70);
}


/* =========================================================
   DarHost VPS Order - Mobile Overflow Fix
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.dh-order-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.dh-order-page *,
.dh-order-page *::before,
.dh-order-page *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.dh-order-page .dh-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.dh-order-grid {
    width: 100%;
    max-width: 1100px;
}

.dh-order-card {
    width: 100%;
    min-width: 0;
}

.dh-order-card-header {
    min-width: 0;
}

.dh-order-card-header h2 {
    overflow-wrap: anywhere;
}

.dh-order-specs {
    width: 100%;
}

.dh-form-group,
.dh-form-group input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 800px) {

    .dh-order-page .dh-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .dh-order-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .dh-order-card {
        width: 100%;
        min-width: 0;
    }

    .dh-order-card-header {
        width: 100%;
        flex-wrap: wrap;
    }

}


/* =========================================================
   DarHost - Mobile Header & Order Alignment Fix
   ========================================================= */

@media (max-width: 800px) {

    /* Main page */
    .dh-order-page {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    /* Order container */
    .dh-order-page .dh-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero */
    .dh-order-hero {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .dh-order-hero .dh-section-heading {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Order cards */
    .dh-order-grid {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .dh-order-card {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Header inner */
    .dh-header-inner {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Mobile menu */
    .dh-header {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Hamburger / menu button */
    .dh-menu-toggle,
    .dh-mobile-menu-toggle,
    .dh-nav-toggle,
    .dh-menu-button {
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* Small phones */
@media (max-width: 480px) {

    .dh-order-page .dh-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dh-order-hero .dh-section-heading h1 {
        width: 100%;
        font-size: 30px;
        text-align: center;
    }

    .dh-order-hero .dh-section-heading p {
        width: 100%;
        text-align: center;
    }

    .dh-order-card {
        padding: 20px;
    }

}


/* =========================================================
   Mobile VPS Order Cards - Final Center Fix
   ========================================================= */

@media (max-width: 800px) {

    .dh-order-page .dh-order-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        transform: none !important;
    }

    .dh-order-page .dh-order-card {
        display: block;
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        transform: none !important;
    }

    .dh-order-page .dh-order-card-header {
        width: 100% !important;
    }

}

@media (max-width: 480px) {

    .dh-order-page .dh-order-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    .dh-order-page .dh-order-card {
        width: 100% !important;
        max-width: 100% !important;
    }

}


/* =========================================================
   12B.1 - VPS ORDER MOBILE CENTER FIX
   ========================================================= */

@media (max-width: 800px) {

    main.dh-order-page {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    main.dh-order-page .dh-order-hero {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    main.dh-order-page .dh-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box !important;
    }

    main.dh-order-page .dh-section-heading {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    main.dh-order-page .dh-order-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 0 !important;

        box-sizing: border-box !important;
        transform: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
    }

    main.dh-order-page .dh-order-card {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        box-sizing: border-box !important;

        transform: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
    }

    main.dh-order-page .dh-order-card * {
        max-width: 100%;
        box-sizing: border-box;
    }

}

@media (max-width: 480px) {

    main.dh-order-page .dh-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    main.dh-order-page .dh-order-grid {
        width: 100% !important;
    }

    main.dh-order-page .dh-order-card {
        width: 100% !important;
    }

}



/* =========================================================
   FINAL MOBILE LAYOUT FIX
   ========================================================= */

@media (max-width: 800px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main.darhost-home {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main.darhost-home .dh-plans {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    main.darhost-home .dh-plans .dh-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        box-sizing: border-box !important;
    }

    main.darhost-home .dh-plans .dh-plan-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    main.darhost-home .dh-plans .dh-plan-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        grid-column: 1 / -1 !important;
    }

}

@media (max-width: 480px) {

    main.darhost-home .dh-plans .dh-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

}

/* =========================================
   DarHost VPS Provisioning Result
   ========================================= */

.dh-vps-result {
    max-width: 900px;
    margin: 30px auto;
}

.dh-vps-success,
.dh-vps-error {
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.dh-vps-success {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.dh-vps-success h2 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
}

.dh-vps-success > p {
    margin: 0 0 25px;
    color: #6b7280;
}

.dh-vps-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.dh-vps-details > div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 18px;
}

.dh-vps-details strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6b7280;
    margin-bottom: 6px;
}

.dh-vps-details span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    word-break: break-word;
}

.dh-vps-error {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.dh-vps-error h2 {
    margin: 0 0 8px;
    color: #b91c1c;
}

.dh-vps-error p {
    margin: 0;
    color: #7f1d1d;
}

@media (max-width: 700px) {
    .dh-vps-details {
        grid-template-columns: 1fr;
    }

    .dh-vps-success,
    .dh-vps-error {
        padding: 20px;
    }
}


/* VPS credentials actions */

.dh-copy-btn,
.dh-password-toggle {
    border: 0;
    border-radius: 8px;
    padding: 7px 12px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.dh-copy-btn {
    background: #eef2ff;
    color: #3730a3;
}

.dh-copy-btn:hover {
    opacity: .85;
}

.dh-password-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dh-password-row .dh-vps-password {
    flex: 1;
    min-width: 180px;
    font-family: monospace;
    letter-spacing: 1px;
}

.dh-password-row .dh-password-toggle,
.dh-password-row .dh-copy-btn {
    margin-top: 0;
}

.dh-password-toggle {
    background: #f3f4f6;
    color: #374151;
}

.dh-password-toggle:hover {
    opacity: .85;
}

.dh-copy-btn.dh-copied {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 700px) {
    .dh-password-row {
        align-items: stretch;
    }

    .dh-password-row .dh-vps-password {
        width: 100%;
        flex-basis: 100%;
    }
}

/* ============================================================
   DARHOST MY VPS
   ============================================================ */

.dh-my-vps-page {
    padding: 60px 0 80px;
}

.dh-my-vps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.dh-my-vps-title {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
}

.dh-my-vps-welcome {
    margin: 8px 0 0;
    color: #667085;
}

.dh-my-vps-logout {
    white-space: nowrap;
}

.dh-my-vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.dh-my-vps-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.dh-my-vps-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.dh-my-vps-hostname {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.dh-my-vps-plan {
    margin: 6px 0 0;
    color: #667085;
    font-size: 14px;
}

.dh-my-vps-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 13px;
    font-weight: 600;
}

.dh-my-vps-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
}

.dh-my-vps-details {
    display: grid;
    gap: 0;
    margin-bottom: 22px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    overflow: hidden;
}

.dh-my-vps-detail {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 15px;
    border-bottom: 1px solid #eaecf0;
}

.dh-my-vps-detail:last-child {
    border-bottom: 0;
}

.dh-my-vps-label {
    color: #667085;
    font-size: 14px;
}

.dh-my-vps-value {
    color: #101828;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.dh-my-vps-ssh {
    background: #101828;
    color: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.dh-my-vps-ssh-label {
    display: block;
    color: #98a2b3;
    font-size: 12px;
    margin-bottom: 8px;
}

.dh-my-vps-ssh-command {
    display: block;
    font-family: monospace;
    font-size: 13px;
    word-break: break-all;
}

.dh-my-vps-copy {
    width: 100%;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    background: #2563eb;
    color: #fff;
    transition: opacity .2s ease;
}

.dh-my-vps-copy:hover {
    opacity: .9;
}

.dh-my-vps-empty {
    text-align: center;
    padding: 50px 25px;
    background: #fff;
    border: 1px dashed #d0d5dd;
    border-radius: 18px;
}

.dh-my-vps-empty h2 {
    margin-top: 0;
}

.dh-my-vps-login {
    text-align: center;
    padding: 70px 25px;
}

@media (max-width: 700px) {

    .dh-my-vps-page {
        padding: 40px 0 60px;
    }

    .dh-my-vps-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dh-my-vps-title {
        font-size: 30px;
    }

    .dh-my-vps-card {
        padding: 20px;
    }

    .dh-my-vps-card-header {
        flex-direction: column;
    }

    .dh-my-vps-detail {
        flex-direction: column;
        gap: 5px;
    }

    .dh-my-vps-value {
        text-align: left;
    }
}


/* ============================================================
   DARHOST PROFESSIONAL VPS DASHBOARD
   ============================================================ */

.dh-my-vps-page {
    background: #f7f9fc;
    min-height: 70vh;
}


/* ============================================================
   HERO
   ============================================================ */

.dh-my-vps-dashboard-hero {
    padding: 55px 0 40px;
    background: #ffffff;
    border-bottom: 1px solid #eaecf0;
}

.dh-my-vps-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.dh-my-vps-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dh-my-vps-dashboard-top h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.15;
    color: #101828;
}

.dh-my-vps-dashboard-top h1 span {
    color: #2563eb;
}

.dh-my-vps-dashboard-top p {
    margin: 12px 0 0;
    max-width: 620px;
    color: #667085;
    font-size: 16px;
}


/* ============================================================
   USER BOX
   ============================================================ */

.dh-my-vps-user-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    white-space: nowrap;
}

.dh-my-vps-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.dh-my-vps-user-box strong {
    display: block;
    color: #101828;
    font-size: 14px;
}

.dh-my-vps-user-box span {
    display: block;
    margin-top: 2px;
    color: #667085;
    font-size: 12px;
}

.dh-my-vps-logout {
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid #d0d5dd;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.dh-my-vps-logout:hover {
    color: #2563eb;
}


/* ============================================================
   SUMMARY
   ============================================================ */

.dh-my-vps-summary-section {
    padding: 25px 0 10px;
}

.dh-my-vps-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dh-my-vps-summary-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(16, 24, 40, .04);
}

.dh-my-vps-summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
}

.dh-my-vps-summary-icon.dh-summary-green {
    background: #ecfdf3;
    color: #12b76a;
    font-size: 22px;
}

.dh-my-vps-summary-card span {
    display: block;
    color: #667085;
    font-size: 13px;
}

.dh-my-vps-summary-card strong {
    display: block;
    margin-top: 3px;
    color: #101828;
    font-size: 25px;
    line-height: 1.1;
}


/* ============================================================
   SERVICES HEADER
   ============================================================ */

.dh-my-vps-services {
    padding: 25px 0 80px;
}

.dh-my-vps-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.dh-my-vps-section-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 27px;
}

.dh-my-vps-service-count {
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #027a48;
    font-size: 13px;
    font-weight: 700;
}


/* ============================================================
   VPS GRID
   ============================================================ */

.dh-my-vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 22px;
}


/* ============================================================
   VPS CARD
   ============================================================ */

.dh-my-vps-card {
    position: relative;
    overflow: hidden;
    padding: 25px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(16, 24, 40, .05);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.dh-my-vps-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .09);
}

.dh-my-vps-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.dh-my-vps-server-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.dh-vps-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.dh-vps-status-active {
    background: #ecfdf3;
    color: #027a48;
}

.dh-vps-status-active::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #12b76a;
}


.dh-vps-status-stopped {
    background: #fef3f2;
    color: #b42318;
}

.dh-vps-status-stopped::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f04438;
}

.dh-vps-status-unknown {
    background: #f2f4f7;
    color: #344054;
}

.dh-vps-status-unknown::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #98a2b3;
}


/* ============================================================
   SERVER NAME
   ============================================================ */

.dh-my-vps-server-name {
    margin: 22px 0;
}

.dh-my-vps-server-name span {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-size: 12px;
}

.dh-my-vps-server-name h3 {
    margin: 0;
    color: #101828;
    font-size: 25px;
    line-height: 1.2;
}

.dh-my-vps-server-name strong {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 7px;
    background: #f2f4f7;
    color: #344054;
    font-size: 12px;
}


/* ============================================================
   VPS DETAILS
   ============================================================ */

.dh-my-vps-details {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #eaecf0;
    border-radius: 12px;
}

.dh-my-vps-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 14px;
    border-bottom: 1px solid #eaecf0;
}

.dh-my-vps-detail:last-child {
    border-bottom: 0;
}

.dh-my-vps-detail span {
    color: #667085;
    font-size: 13px;
}

.dh-my-vps-detail strong {
    color: #101828;
    font-size: 13px;
    text-align: right;
}

.dh-my-vps-detail strong::selection {
    background: #dbeafe;
}


/* ============================================================
   SSH
   ============================================================ */

.dh-my-vps-ssh {
    padding: 15px;
    background: #101828;
    border-radius: 13px;
}

.dh-my-vps-ssh-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 11px;
}

.dh-my-vps-ssh-heading span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.dh-my-vps-ssh-heading small {
    color: #98a2b3;
    font-size: 10px;
}

.dh-my-vps-ssh-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dh-my-vps-ssh-row code {
    flex: 1;
    min-width: 0;
    padding: 9px 10px;
    overflow-x: auto;
    border-radius: 8px;
    background: #1d2939;
    color: #e4e7ec;
    font-family: monospace;
    font-size: 12px;
    white-space: nowrap;
}

.dh-vps-copy {
    flex-shrink: 0;
    padding: 9px 13px;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: opacity .2s ease;
}

.dh-vps-copy:hover {
    opacity: .9;
}


/* ============================================================
   ACTION
   ============================================================ */

.dh-my-vps-actions {
    margin-top: 15px;
}

.dh-my-vps-manage {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 1;
}

.dh-my-vps-manage span {
    font-size: 18px;
}


/* ============================================================
   EMPTY / LOGIN
   ============================================================ */

.dh-my-vps-empty,
.dh-my-vps-login-box {
    padding: 60px 25px;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    text-align: center;
}

.dh-my-vps-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 15px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.dh-my-vps-empty h2,
.dh-my-vps-login-box h1 {
    margin-top: 0;
    color: #101828;
}

.dh-my-vps-empty p,
.dh-my-vps-login-box p {
    color: #667085;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .dh-my-vps-dashboard-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .dh-my-vps-user-box {
        width: 100%;
        box-sizing: border-box;
    }

    .dh-my-vps-summary-grid {
        grid-template-columns: 1fr;
    }

    .dh-my-vps-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dh-my-vps-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 500px) {

    .dh-my-vps-dashboard-hero {
        padding: 40px 0 30px;
    }

    .dh-my-vps-dashboard-top h1 {
        font-size: 34px;
    }

    .dh-my-vps-card {
        padding: 19px;
    }

    .dh-my-vps-detail {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .dh-my-vps-detail strong {
        text-align: left;
    }

    .dh-my-vps-ssh-row {
        align-items: stretch;
        flex-direction: column;
    }

    .dh-vps-copy {
        width: 100%;
    }

    .dh-my-vps-ssh-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

}



/* =========================================================
   DARHOST VPS POWER CONTROL
   ========================================================= */

.dh-power-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.dh-power-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        opacity 0.18s ease;
}

.dh-power-button span {
    font-size: 15px;
    line-height: 1;
}


/* START */

.dh-power-start {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #16a34a,
        #15803d
    );

    box-shadow:
        0 6px 18px rgba(22, 163, 74, 0.18);
}

.dh-power-start:hover:not(:disabled) {
    transform: translateY(-1px);

    box-shadow:
        0 9px 24px rgba(22, 163, 74, 0.26);
}


/* REBOOT */

.dh-power-reboot {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    box-shadow:
        0 6px 18px rgba(37, 99, 235, 0.18);
}

.dh-power-reboot:hover:not(:disabled) {
    transform: translateY(-1px);

    box-shadow:
        0 9px 24px rgba(37, 99, 235, 0.26);
}


/* SHUTDOWN */

.dh-power-stop {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #dc2626,
        #b91c1c
    );

    box-shadow:
        0 6px 18px rgba(220, 38, 38, 0.18);
}

.dh-power-stop:hover:not(:disabled) {
    transform: translateY(-1px);

    box-shadow:
        0 9px 24px rgba(220, 38, 38, 0.26);
}


/* DISABLED */

.dh-power-button:disabled {
    opacity: 0.42;
    cursor: not-allowed;

    transform: none !important;

    box-shadow: none !important;
}


/* LOADING / ACTION STATE */

.dh-power-button:active:not(:disabled) {
    transform: scale(0.98);
}


/* POWER NOTICE */

.dh-manage-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-top: 20px;
    padding: 15px 17px;

    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 12px;

    background: rgba(37, 99, 235, 0.045);
}

.dh-manage-notice::before {
    content: "✓";

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

    flex: 0 0 26px;
    width: 26px;
    height: 26px;

    border-radius: 50%;

    color: #2563eb;
    background: rgba(37, 99, 235, 0.10);

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

.dh-manage-notice strong {
    display: block;

    margin-bottom: 3px;

    color: #172033;

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

.dh-manage-notice p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .dh-power-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dh-power-button {
        width: 100%;
        min-height: 50px;
    }

}


/* =========================================================
   DARHOST MANAGE VPS DASHBOARD
   ========================================================= */

.dh-manage-vps-page {
    padding: 50px 0 80px;
    background: #f7f9fc;
}

.dh-manage-vps-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back link */

.dh-manage-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.dh-manage-back:hover {
    color: #2563eb;
    transform: translateX(-2px);
}

/* Hero */

.dh-manage-hero {
    background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
    border-radius: 20px;
    padding: 34px;
    margin-bottom: 24px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .12);
}

.dh-manage-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dh-manage-hero h1 {
    margin: 6px 0 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
}

.dh-manage-hero p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.dh-manage-label {
    display: inline-block;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Status */

.dh-manage-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.dh-manage-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.dh-manage-status.is-running::before {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}

.dh-manage-status.is-stopped::before {
    background: #ef4444;
}

/* Main layout */

.dh-manage-vps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.dh-manage-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Cards */

.dh-manage-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .05);
}

.dh-manage-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid #eef2f7;
}

.dh-manage-card-header h2 {
    margin: 3px 0 0;
    font-size: 19px;
    color: #0f172a;
}

.dh-manage-card-header span {
    color: #64748b;
    font-size: 13px;
}

.dh-manage-card-body {
    padding: 24px;
}

/* Card badge */

.dh-manage-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 7px;
    background: #ecfdf5;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
}

/* VPS details */

.dh-manage-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dh-manage-info-item {
    padding: 20px 24px;
    border-bottom: 1px solid #eef2f7;
}

.dh-manage-info-item:nth-child(odd) {
    border-right: 1px solid #eef2f7;
}

.dh-manage-info-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.dh-manage-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.dh-manage-info-item strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    word-break: break-word;
}

/* Power control */

.dh-power-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px;
}

.dh-power-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 125px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.dh-power-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15,23,42,.12);
}

.dh-power-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.dh-power-start {
    background: #16a34a;
}

.dh-power-reboot {
    background: #2563eb;
}

.dh-power-stop {
    background: #dc2626;
}

.dh-manage-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 24px 24px;
    padding: 15px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
}

.dh-manage-notice strong {
    display: block;
    margin-bottom: 3px;
    color: #334155;
    font-size: 13px;
}

.dh-manage-notice p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* SSH */

.dh-manage-ssh {
    padding: 24px;
}

.dh-manage-ssh-label {
    display: block;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.dh-manage-ssh-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 16px;
    background: #0f172a;
    border-radius: 11px;
    overflow: hidden;
}

.dh-manage-ssh-box code {
    flex: 1;
    color: #e2e8f0;
    font-size: 13px;
    white-space: nowrap;
    overflow-x: auto;
}

.dh-manage-copy {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.dh-manage-copy:hover {
    background: #1d4ed8;
}

/* Sidebar */

.dh-manage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dh-manage-sidebar .dh-manage-card {
    border-radius: 16px;
}

.dh-manage-sidebar .dh-manage-card-header {
    padding: 18px 20px;
}

.dh-manage-sidebar .dh-manage-card-header h2 {
    font-size: 16px;
}

.dh-manage-sidebar .dh-manage-card-body {
    padding: 20px;
}

/* Current status */

.dh-manage-current-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.dh-manage-current-status::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #94a3b8;
}

.dh-manage-current-status.is-running::before {
    background: #22c55e;
}

.dh-manage-current-status.is-stopped::before {
    background: #ef4444;
}

/* Sidebar links */

.dh-manage-security-link,
.dh-manage-support-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
}

.dh-manage-security-link:hover,
.dh-manage-support-link:hover {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
}

.dh-manage-sidebar p {
    margin: 0 0 15px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

/* Mobile */

@media (max-width: 900px) {

    .dh-manage-vps-layout {
        grid-template-columns: 1fr;
    }

    .dh-manage-sidebar {
        order: 2;
    }

    .dh-manage-hero-top {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 600px) {

    .dh-manage-vps-page {
        padding: 30px 0 60px;
    }

    .dh-manage-vps-wrap {
        padding: 0 14px;
    }

    .dh-manage-hero {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .dh-manage-hero h1 {
        font-size: 26px;
    }

    .dh-manage-card-header {
        padding: 18px;
    }

    .dh-manage-card-body {
        padding: 18px;
    }

    .dh-manage-info-grid {
        grid-template-columns: 1fr;
    }

    .dh-manage-info-item {
        padding: 16px 18px;
    }

    .dh-manage-info-item:nth-child(odd) {
        border-right: 0;
    }

    .dh-manage-info-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #eef2f7;
    }

    .dh-manage-info-item:last-child {
        border-bottom: 0;
    }

    .dh-power-actions {
        padding: 18px;
        flex-direction: column;
    }

    .dh-power-btn {
        width: 100%;
    }

    .dh-manage-notice {
        margin: 0 18px 18px;
    }

    .dh-manage-ssh {
        padding: 18px;
    }

    .dh-manage-ssh-box {
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
    }

    .dh-manage-copy {
        width: 100%;
    }

}



/* =========================================================
   DARHOST MANAGE VPS — PREMIUM POLISH
   ========================================================= */

.dh-manage-vps-page {
    background: #f6f8fb;
    color: #172033;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.dh-manage-vps-hero {
    padding: 34px 0 38px;
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
}

.dh-manage-vps-hero .dh-container {
    max-width: 1180px;
    margin: 0 auto;
}

.dh-manage-vps-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 30px;
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.dh-manage-vps-back:hover {
    color: #2563eb;
}

.dh-manage-vps-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dh-manage-vps-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dh-manage-vps-title-row h1 {
    margin: 0;
    color: #111827;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.03em;
}

.dh-manage-vps-title-row p {
    margin: 9px 0 0;
    color: #667085;
    font-size: 15px;
    font-weight: 500;
}

/* ---------------------------------------------------------
   LIVE STATUS
   --------------------------------------------------------- */

.dh-manage-vps-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 9px 15px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
    font-size: 13px;
    font-weight: 700;
}

/* ---------------------------------------------------------
   MAIN CONTENT
   --------------------------------------------------------- */

.dh-manage-vps-content {
    padding: 38px 0 70px;
}

.dh-manage-vps-content .dh-container {
    max-width: 1180px;
    margin: 0 auto;
}

.dh-manage-vps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.dh-manage-vps-main {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dh-manage-vps-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ---------------------------------------------------------
   CARDS
   --------------------------------------------------------- */

.dh-manage-card {
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(16, 24, 40, .045);
    overflow: hidden;
    transition:
        box-shadow .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.dh-manage-card:hover {
    border-color: #dbe2ea;
    box-shadow: 0 8px 25px rgba(16, 24, 40, .07);
}

.dh-manage-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 25px;
    border-bottom: 1px solid #edf0f4;
}

.dh-manage-card-header > div > span {
    display: block;
    margin-bottom: 5px;
    color: #8a94a6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dh-manage-card-header h2 {
    margin: 0;
    color: #182230;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 750;
}

.dh-manage-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
}

/* ---------------------------------------------------------
   DANGER ZONE
   --------------------------------------------------------- */

.dh-manage-danger-card {
    border-color: #fecaca;
}

.dh-manage-danger-card:hover {
    border-color: #fca5a5;
}

.dh-manage-danger-card .dh-manage-card-header {
    border-bottom-color: #fee2e2;
}

.dh-manage-danger-card .dh-manage-card-header > div > span {
    color: #dc2626;
}

.dh-manage-danger-card .dh-manage-card-header h2 {
    color: #991b1b;
}

.dh-manage-danger-text {
    margin: 0;
    padding: 21px 25px 5px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.dh-vps-delete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    margin: 16px 25px 10px;
    padding: 0 20px;
    border: 1px solid #dc2626;
    border-radius: 10px;
    background: #dc2626;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.dh-vps-delete-button span {
    font-size: 18px;
    line-height: 1;
}

.dh-vps-delete-button:not(:disabled):hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(220, 38, 38, .18);
}

.dh-vps-delete-button:not(:disabled):active {
    transform: translateY(0);
}

.dh-vps-delete-button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.dh-manage-danger-note {
    margin: 0;
    padding: 0 25px 22px;
    color: #8a94a6;
    font-size: 12px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   VPS DETAILS
   --------------------------------------------------------- */


.dh-manage-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dh-manage-detail {
    min-width: 0;
    padding: 21px 25px;
    border-bottom: 1px solid #edf0f4;
}

.dh-manage-detail:nth-child(odd) {
    border-right: 1px solid #edf0f4;
}

.dh-manage-detail:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.dh-manage-detail > span {
    display: block;
    margin-bottom: 7px;
    color: #8a94a6;
    font-size: 12px;
    font-weight: 600;
}

.dh-manage-detail strong {
    display: block;
    overflow: hidden;
    color: #202938;
    font-size: 15px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   POWER CONTROL
   --------------------------------------------------------- */

.dh-power-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 23px 25px 20px;
}

.dh-power-button {
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.dh-power-button span {
    margin-right: 6px;
    font-size: 13px;
}

.dh-power-button:not(:disabled):hover {
    transform: translateY(-1px);
}

.dh-power-button:not(:disabled):active {
    transform: translateY(0);
}

.dh-power-button:disabled {
    cursor: not-allowed;
    opacity: .42;
    box-shadow: none;
}

.dh-power-start {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #15803d;
}

.dh-power-start:not(:disabled):hover {
    box-shadow: 0 5px 14px rgba(22, 163, 74, .12);
}

.dh-power-reboot {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.dh-power-reboot:not(:disabled):hover {
    box-shadow: 0 5px 14px rgba(37, 99, 235, .12);
}

.dh-power-stop {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #dc2626;
}

.dh-power-stop:not(:disabled):hover {
    box-shadow: 0 5px 14px rgba(220, 38, 38, .12);
}

/* ---------------------------------------------------------
   POWER NOTICE
   --------------------------------------------------------- */

.dh-manage-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 25px 24px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e6ebf1;
    border-radius: 10px;
}

.dh-manage-notice strong {
    display: block;
    margin-bottom: 3px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.dh-manage-notice p {
    margin: 0;
    color: #7b8494;
    font-size: 12px;
    line-height: 1.55;
}

/* ---------------------------------------------------------
   SSH
   --------------------------------------------------------- */

.dh-manage-ssh {
    padding: 24px 25px 26px;
}

.dh-manage-ssh-label {
    margin-bottom: 9px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dh-manage-ssh-row {
    display: flex;
    align-items: stretch;
    min-height: 52px;
    overflow: hidden;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 11px;
}

.dh-manage-ssh-row code {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0 16px;
    overflow-x: auto;
    color: #e5e7eb;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    white-space: nowrap;
}

.dh-manage-copy {
    flex: 0 0 auto;
    padding: 0 19px;
    border: 0;
    border-left: 1px solid #374151;
    background: #1f2937;
    color: #f9fafb;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.dh-manage-copy:hover {
    background: #374151;
}

/* ---------------------------------------------------------
   SIDEBAR
   --------------------------------------------------------- */

.dh-manage-vps-sidebar .dh-manage-card {
    padding: 23px;
}

.dh-manage-status-card {
    min-height: 175px;
}

.dh-manage-sidebar-label {
    display: block;
    margin-bottom: 10px;
    color: #8a94a6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.dh-manage-big-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 21px;
    font-weight: 800;
}

.dh-status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #94a3b8;
}

.dh-manage-status-card p {
    margin: 0;
    color: #7b8494;
    font-size: 13px;
    line-height: 1.6;
}

/* ---------------------------------------------------------
   SIDEBAR HEADINGS
   --------------------------------------------------------- */

.dh-manage-sidebar-heading {
    margin-bottom: 17px;
}

.dh-manage-sidebar-heading > span {
    display: block;
    margin-bottom: 5px;
    color: #8a94a6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.dh-manage-sidebar-heading h3 {
    margin: 0;
    color: #202938;
    font-size: 17px;
    font-weight: 750;
}

/* ---------------------------------------------------------
   SECURITY
   --------------------------------------------------------- */

.dh-manage-security-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #e4e8ee;
    border-radius: 9px;
    background: #f8fafc;
    color: #98a2b3;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    cursor: not-allowed;
}

.dh-manage-security-button span {
    font-size: 17px;
}

.dh-manage-sidebar-note {
    margin: 11px 0 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.55;
}

/* ---------------------------------------------------------
   SUPPORT
   --------------------------------------------------------- */

.dh-manage-help-card h3 {
    margin: 0 0 8px;
    color: #202938;
    font-size: 17px;
    font-weight: 750;
}

.dh-manage-help-card p {
    margin: 0 0 17px;
    color: #7b8494;
    font-size: 13px;
    line-height: 1.65;
}

.dh-manage-help-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.dh-manage-help-link:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------
   ERROR / LOGIN
   --------------------------------------------------------- */

.dh-manage-vps-error,
.dh-manage-vps-login {
    max-width: 620px;
    margin: 30px auto;
    padding: 45px 35px;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .06);
    text-align: center;
}

.dh-manage-vps-error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff1f2;
    color: #dc2626;
    font-size: 22px;
    font-weight: 800;
}

.dh-manage-vps-error h2,
.dh-manage-vps-login h1 {
    margin: 0 0 10px;
    color: #182230;
}

.dh-manage-vps-error p,
.dh-manage-vps-login p {
    margin: 0 0 24px;
    color: #667085;
    line-height: 1.65;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .dh-manage-vps-layout {
        grid-template-columns: 1fr;
    }

    .dh-manage-vps-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dh-manage-help-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {

    .dh-manage-vps-hero {
        padding: 25px 0 28px;
    }

    .dh-manage-vps-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .dh-manage-vps-title-row h1 {
        font-size: 29px;
    }

    .dh-manage-vps-status {
        min-width: 82px;
    }

    .dh-manage-vps-content {
        padding: 25px 0 50px;
    }

    .dh-manage-vps-layout {
        gap: 17px;
    }

    .dh-manage-vps-main,
    .dh-manage-vps-sidebar {
        gap: 17px;
    }

    .dh-manage-vps-sidebar {
        display: flex;
    }

    .dh-manage-card-header {
        padding: 20px;
    }

    .dh-manage-details {
        grid-template-columns: 1fr;
    }

    .dh-manage-detail,
    .dh-manage-detail:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid #edf0f4;
    }

    .dh-manage-detail:last-child {
        border-bottom: 0;
    }

    .dh-power-actions {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .dh-manage-notice {
        margin: 0 20px 20px;
    }

    .dh-manage-ssh {
        padding: 20px;
    }

    .dh-manage-ssh-row {
        min-height: 48px;
    }

    .dh-manage-ssh-row code {
        font-size: 12px;
    }

    .dh-manage-copy {
        padding: 0 14px;
    }

    .dh-manage-vps-sidebar .dh-manage-card {
        padding: 20px;
    }
}
.dh-status-dot.is-running {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}

.dh-status-dot.is-stopped {
    background: #ef4444;
}

.dh-status-dot.is-unknown {
    background: #f59e0b;
}

.dh-status-dot.is-unavailable {
    background: #ef4444;
}

.dh-manage-security-button:not(:disabled) {
    background: #fff;
    color: #202938;
    border-color: #d8dee8;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.dh-manage-security-button:not(:disabled):hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.dh-manage-security-button:disabled {
    opacity: .75;
}

.dh-manage-password-result {
    display: none;
    margin-top: 14px;
    padding: 13px;
    border: 1px solid #bbf7d0;
    border-radius: 9px;
    background: #f0fdf4;
}

.dh-manage-password-result.is-visible {
    display: block;
}

.dh-manage-password-result-label {
    margin-bottom: 6px;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
}

.dh-manage-password-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dh-manage-password-value code {
    flex: 1;
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid #dcfce7;
    border-radius: 7px;
    background: #fff;
    color: #166534;
    font-size: 12px;
    word-break: break-all;
}

.dh-manage-password-copy {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid #bbf7d0;
    border-radius: 7px;
    background: #fff;
    color: #166534;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.dh-manage-password-copy:hover {
    background: #f0fdf4;
}

.dh-manage-password-note {
    margin: 9px 0 0;
    color: #4b5563;
    font-size: 10px;
    line-height: 1.5;
}

/* VPS LIVE STATUS BADGE */
.dh-manage-vps-status.is-running {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #027a48;
}

.dh-manage-vps-status.is-stopped {
    background: #fef3f2;
    border: 1px solid #fecdca;
    color: #b42318;
}

/* =========================================================
   HEADER RESPONSIVE FIX
   ========================================================= */

.dh-header-inner {
    box-sizing: border-box;
}

@media (max-width: 950px) {

    .dh-header-inner {
        padding-left: 20px;
        padding-right: 20px;
        gap: 15px;
    }

    .dh-navigation {
        gap: 14px;
        margin-right: 8px;
    }

    .dh-navigation a {
        font-size: 12px;
    }

    .dh-header-actions {
        gap: 10px;
    }

    .dh-header-button {
        min-height: 38px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 11px;
    }

}

@media (max-width: 800px) {

    .dh-navigation,
    .dh-header-actions {
        display: none;
    }

    .dh-mobile-toggle {
        display: flex;
    }

}

/* =========================================================
   MOBILE HERO BUTTONS CENTER FIX
   ========================================================= */

@media (max-width: 800px) {

    .dh-hero-buttons {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .dh-hero-buttons .dh-btn {
        width: auto;
        min-width: 220px;
    }

}
