/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-bg: #050508;
    --primary: #ef4444;              /* red */
    --primary-soft: rgba(239, 68, 68, 0.16);
    --accent: #f97316;               /* orange accent */
    --text-muted: #9ca3af;
}


/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #020202;
    color: #e5e7eb;
}

a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #ef4444;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #dc2626;
    border-color: #dc2626;
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link {
    color: #e5e7eb !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.navbar .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 0.375rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.navbar .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}


/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown-menu-dark {
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ffffff;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}


/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content {
    min-height: 10vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem 0;
    background:
        radial-gradient(circle at top left, rgba(248, 113, 113, 0.18), transparent 55%),
        radial-gradient(circle at top right, rgba(127, 29, 29, 0.32), transparent 55%),
        radial-gradient(circle at bottom, rgba(185, 28, 28, 0.2), transparent 65%),
        var(--primary-bg);
}

.content-title {
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.content-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
}

.text-muted-soft {
    color: var(--text-muted);
}


/* ============================================
   CARDS & PANELS
   ============================================ */
.glass-panel {
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.26), transparent 60%),
        rgba(10, 10, 10, 0.9);
    border-radius: 1.5rem;
    border: 1px solid rgba(248, 113, 113, 0.35);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(15, 23, 42, 0.8) inset;
}

.feature-card {
    background: rgba(10, 10, 10, 0.9);
    border-radius: 1.25rem;
    border: 1px solid rgba(55, 65, 81, 0.8);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 113, 113, 0.9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95);
}

.pricing-card {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 1.5rem;
    border: 1px solid rgba(55, 65, 81, 0.8);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 113, 113, 0.9);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95);
}


/* ============================================
   ICONS & BADGES
   ============================================ */
.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
}

.badge-pill {
    border-radius: 50rem;
}

.badge-crypto {
    background: rgba(127, 29, 29, 0.4);
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.8);
}

.badge-privacy {
    background: rgba(127, 29, 29, 0.5);
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.7);
}

.badge-support {
    background: rgba(24, 24, 27, 0.8);
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.5);
}


/* ============================================
   STATUS DOTS
   ============================================ */
.dot {
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    margin-right: 0.4rem;
}

.dot-green {
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.dot-yellow {
    background: #eab308;
}

.dot-red {
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(248, 113, 113, 0.35);
}

.crypto-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.6);
}


/* ============================================
   DOMAIN SEARCH
   ============================================ */
.domain-search-section {
    padding: 3rem 0 2rem 0;
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    border-bottom: 1px solid rgba(55, 65, 81, 0.4);
    background:
        radial-gradient(circle at top, rgba(127, 29, 29, 0.25), transparent 65%),
        #020617;
}

.domain-search-box {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.95);
    padding: 1.75rem 1.5rem;
}

.domain-search-input {
    background-color: #020617;
    border: 1px solid rgba(75, 85, 99, 0.9);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
}

.domain-search-input:hover,
.domain-search-input:focus {
    outline: none;
    border-color: rgba(75, 85, 99, 0.9);
    box-shadow: none;
    background-color: #020617;
    color: #ffffff;
}

.domain-search-input::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.domain-search-btn {
    border-radius: 999px;
    padding-inline: 1.9rem;
    white-space: nowrap;
}

.domain-search-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ============================================
   PAYMENT METHODS
   ============================================ */
.payments-section {
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    border-bottom: 1px solid rgba(55, 65, 81, 0.8);
    background:
        radial-gradient(circle at top, rgba(127, 29, 29, 0.28), transparent 65%),
        #020617;
}

.payment-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon-wrap img {
    max-width: 20px;
    max-height: 20px;
}

.crypto-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}


/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion-item {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.accordion-item:last-child {
    border-bottom: 0;
}

.accordion-button {
    background-color: transparent;
    color: #e5e7eb;
    box-shadow: none;
    border-radius: 0;
    border: 0;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: transparent;
    box-shadow: none;
    border: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.accordion-button::after {
    filter: invert(0.8);
}

.accordion-body {
    background-color: transparent;
    border: 0;
}


/* ============================================
   VPS TABLE
   ============================================ */
table.vps-table,
table.vps-table.table-dark,
table.vps-table.table-dark tbody,
table.vps-table.table-dark tbody tr,
table.vps-table.table-dark tbody tr td,
table.vps-table.table-dark tbody tr:nth-of-type(odd),
table.vps-table.table-dark tbody tr:nth-of-type(even),
table.vps-table.table-dark.table-striped tbody tr,
table.vps-table.table-dark.table-striped tbody tr td,
table.vps-table.table-dark.table-striped tbody tr:nth-of-type(odd),
table.vps-table.table-dark.table-striped tbody tr:nth-of-type(even) {
    background-color: transparent !important;
}

.vps-table {
    border-collapse: separate;
    border-spacing: 0 0.8rem;
    background: transparent;
    border-color: rgba(248, 113, 113, 0.25);
}

.vps-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.75);
    border: none;
    background: rgba(5, 5, 12, 0.9) !important;
    padding: 0.9rem 0.75rem;
}

.vps-table tbody tr {
    border: 10px solid #FFFFFF;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.vps-table tbody td {
    padding: 1rem 0.75rem;
    border: none;
}

.vps-table tbody tr:hover,
table.vps-table.table-dark tbody tr:hover,
table.vps-table.table-dark tbody tr:hover td {
    background-color: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(248, 113, 113, 0.6) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}

.vps-table .btn-primary {
    background: #ef4444;
    border-color: #ef4444;
    font-weight: 600;
}

.vps-table .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}


/* ============================================
   TABS
   ============================================ */
.nav-tabs {
    border-bottom: 2px solid rgba(248, 113, 113, 0.3);
}

.nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-tabs .nav-link:hover {
    color: #ffffff;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
}

.nav-tabs .nav-link.active {
    color: #ffffff;
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(248, 113, 113, 0.5);
    border-bottom-color: transparent;
}

.tab-content {
    padding-top: 1.5rem;
}


/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    background:
        radial-gradient(circle at top, rgba(127, 29, 29, 0.35), transparent 65%),
        #000000;
}

.footer-heading {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-link {
    display: inline-block;
    padding: 0.15rem 0;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom-text {
    color: #6b7280;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom-link:hover {
    color: #ffffff;
}


/* ============================================
   ALTERNATIVE NETWORK / SOCIAL
   ============================================ */
.alt-network-section {
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    background: #020617;
}

.alt-network-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alt-network-icon-wrap img {
    max-width: 32px;
    max-height: 32px;
}


/* ============================================
   MISCELLANEOUS
   ============================================ */
.code-bar {
    border-radius: 999px;
    height: 0.55rem;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.95), rgba(127, 29, 29, 0.9));
}

.flag-icon img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}


/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
    }

    .navbar .btn-outline-light {
        width: 100%;
        margin-top: 0.5rem;
    }

    .dropdown-menu-dark {
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
}

@media (max-width: 767.98px) {
    .content {
        text-align: center;
    }

    .content .btn {
        width: 100%;
    }

    .content .btn + .btn {
        margin-top: 0.75rem;
    }

    .domain-search-box {
        padding: 1.5rem 1.25rem;
    }

    .domain-search-btn {
        width: 100%;
        margin-top: 0.75rem;
    }
}
