
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


::selection {
    background: rgba(34, 197, 94, 0.3);
    color: #f0fff4;
}

::-moz-selection {
    background: rgba(34, 197, 94, 0.3);
    color: #f0fff4;
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg, #030a05);
}

::-webkit-scrollbar-thumb {
    background: rgba(195, 255, 202, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 255, 202, 0.25);
}

fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}

legend {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text, #d4ffe0);
    margin-bottom: 16px;
    padding: 0;
}


.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid rgba(195, 255, 202, 0.3);
    transition: all 0.2s ease;
    overflow: hidden;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-primary, #22c55e);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
    line-height: 1.4;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: var(--color-primary, #22c55e);
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child {
    background: var(--color-primary, #22c55e);
    border-color: var(--color-primary, #22c55e);
    animation: cbx-wave 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child::before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes cbx-wave {
    50% {
        transform: scale(0.9);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg, #030a05);
    color: var(--color-text, #d4ffe0);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-lg, 24px);
    flex-grow: 1;
    width: 100%;
}

a {
    color: var(--color-primary, #22c55e);
    text-decoration: none;
    transition: color var(--transition-fast, 150ms ease);
}

a:hover {
    color: var(--color-primary-hover, #16a34a);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-bright, #f0fff4);
    margin-bottom: 0.75em;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-3xl, 2rem);
    margin-bottom: var(--space-lg, 24px);
    
}

h2 {
    font-size: var(--font-2xl, 1.5rem);
    margin: var(--space-xl, 32px) 0 var(--space-md, 16px);
    
}

h3 {
    font-size: var(--font-xl, 1.25rem);
    margin-bottom: var(--space-md, 16px);
}

h4 {
    font-size: var(--font-lg, 1.125rem);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted, #8fb896);
}

p.subtitle {
    font-size: var(--font-base, 1rem);
    color: var(--color-text-muted, #8fb896);
    margin-top: calc(-1 * var(--space-lg, 24px));
    margin-bottom: var(--space-xl, 32px);
}

code,
.code-inline {
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-sm, 6px);
    font-family: 'JetBrains Mono', Consolas, Monaco, monospace;
    font-size: 0.875em;
    color: var(--color-primary, #22c55e);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg, 24px) 0;
    border-bottom: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
    margin-bottom: var(--space-xl, 32px);
    flex-wrap: wrap;
    gap: var(--space-md, 16px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 100;
}


.header-public-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-brand {
    text-decoration: none;
}

.header-brand h2 {
    margin: 0;
    color: var(--color-text-bright, #e1ffe6);
}

.main-nav {
    display: flex;
    gap: var(--space-xs, 4px);
    align-items: center;
    flex-wrap: wrap;
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    padding: var(--space-xs, 4px);
    border-radius: var(--radius-full, 9999px);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
}

.main-nav a {
    color: var(--color-text-muted, #8fb896);
    text-decoration: none;
    padding: var(--space-sm, 8px) var(--space-md, 16px);
    border-radius: var(--radius-full, 9999px);
    transition: all var(--transition-fast, 150ms ease);
    font-size: var(--font-sm, 0.875rem);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-text, #d4ffe0);
    background-color: var(--color-primary-light, rgba(34, 197, 94, 0.15));
}

.main-nav a.active {
    background-color: var(--color-primary, #22c55e);
    color: var(--color-bg, #030a05);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: var(--space-sm, 8px);
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    padding: var(--space-sm, 8px) var(--space-md, 16px);
    border-radius: var(--radius-full, 9999px);
    transition: all var(--transition-base, 250ms ease);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
}

.user-profile:hover {
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
    border-color: var(--border-hover, rgba(195, 255, 202, 0.2));
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.2));
}

a.user-profile-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: var(--space-sm, 8px);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full, 9999px);
    background: linear-gradient(135deg, var(--color-primary, #22c55e), var(--color-accent, #10b981));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-bg, #030a05);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-text, #d4ffe0);
}

.user-profile .notification-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full, 9999px);
    background: var(--color-primary-light, rgba(34, 197, 94, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast, 150ms ease);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    margin-left: var(--space-sm, 8px);
}

.user-profile .notification-link:hover {
    background: rgba(34, 197, 94, 0.25);
    transform: scale(1.05);
}

.user-profile .notification-link svg {
    width: 18px;
    height: 18px;
}

.user-profile .notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-error, #ef4444);
    color: white;
    border-radius: var(--radius-full, 9999px);
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--color-bg, #030a05);
}

.notification {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full, 9999px);
    background: var(--color-primary-light, rgba(34, 197, 94, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast, 150ms ease);
    cursor: pointer;
    flex-shrink: 0;
}

.notification svg {
    width: 16px;
    height: 16px;
}

.notification:hover {
    background: rgba(34, 197, 94, 0.25);
    transform: scale(1.05);
}


svg {
    fill: none;
    stroke: #c3ffca;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}


.card-icon,
.icon-container,
.benefit-icon,
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(2, 12, 5, 0.85) !important;
    border: 1px solid rgba(110, 255, 132, 0.15) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(110, 255, 132, 0.05) !important;
    transition: all 0.4s ease;
}


.card-icon:hover,
.icon-container:hover,
.benefit-icon:hover,
.feature-icon:hover,
*:hover>.card-icon,
*:hover>.icon-container,
*:hover>.benefit-icon,
*:hover>.feature-icon,
*:hover>.feature-icon {
    background: rgba(16, 60, 28, 0.9) !important;
    border-color: rgba(110, 255, 132, 0.35) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(110, 255, 132, 0.15) !important;
}

.card-icon svg,
.card-icon i,
.icon-container svg,
.icon-container i,
.benefit-icon svg,
.benefit-icon i,
.feature-icon svg,
.feature-icon i,
.stat-icon svg,
.stat-icon i,
.icon-sphere i {
    color: #6eff84 !important;
    stroke: #6eff84 !important;
    filter: drop-shadow(0 0 8px rgba(110, 255, 132, 0.7)) !important;
    line-height: 1 !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


.console-actions button i {
    font-size: 1.2rem !important;
    vertical-align: middle;
}

.admin-nav-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 25px;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    color: rgba(195, 255, 202, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.admin-nav-item:hover {
    background: rgba(29, 128, 56, 0.15);
    color: #c3ffca;
}

.admin-nav-item.active {
    background: rgba(5, 59, 17, 0.4);
    border: 1px solid rgba(195, 255, 202, 0.1);
    color: #6eff84;
    font-weight: 500;
}


.btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm, 8px);
    padding: var(--space-sm, 8px) var(--space-lg, 24px);
    border-radius: var(--radius-md, 10px);
    font-size: var(--font-sm, 0.875rem);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast, 150ms ease);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.5;
}

.btn:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
    outline: 2px solid var(--color-primary, #22c55e);
    outline-offset: 2px;
    box-shadow: var(--focus-ring, 0 0 0 3px rgba(34, 197, 94, 0.4));
}

.btn svg,
button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
    
}

.btn-primary,
button.btn-primary {
    background: linear-gradient(135deg, var(--color-primary, #22c55e), var(--color-accent, #10b981));
    color: var(--color-bg, #030a05);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}


.btn-primary svg,
button.btn-primary svg {
    stroke: var(--color-bg, #030a05);
}

.btn-primary:hover,
button.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
    filter: brightness(1.1);
}

.btn-primary:active,
button.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.btn-secondary,
button.btn-secondary {
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    color: var(--color-text, #d4ffe0);
    border: 1px solid var(--border-default, rgba(195, 255, 202, 0.12));
}

.btn-secondary:hover,
button.btn-secondary:hover {
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
    border-color: var(--border-hover, rgba(195, 255, 202, 0.2));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.2));
}

.btn-danger,
button.btn-danger,
.btn-secondary.danger,
button.btn-secondary.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover,
button.btn-danger:hover,
.btn-secondary.danger:hover,
button.btn-secondary.danger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fecaca;
    transform: translateY(-2px);
}

.btn.small,
button.small {
    padding: 6px 14px;
    font-size: var(--font-xs, 0.75rem);
    gap: 4px;
    border-radius: var(--radius-sm, 6px);
}

.btn.small svg,
button.small svg {
    width: 14px;
    height: 14px;
}

.btn.icon-only,
button.icon-only {
    padding: var(--space-sm, 8px);
    gap: 0;
    background-color: transparent;
    border: none;
    border-radius: var(--radius-md, 10px);
}

.btn.icon-only:hover,
button.icon-only:hover {
    background: var(--color-primary-light, rgba(34, 197, 94, 0.15));
}

.btn.icon-only svg,
button.icon-only svg {
    width: 18px;
    height: 18px;
    margin: 0;
    stroke: var(--color-text-muted, #8fb896);
    transition: stroke var(--transition-fast, 150ms ease);
}

.btn.icon-only:hover svg,
button.icon-only:hover svg {
    stroke: var(--color-text, #d4ffe0);
}

.btn.icon-only.danger svg,
button.icon-only.danger svg {
    stroke: #fca5a5;
}

.btn.icon-only.danger:hover svg,
button.icon-only.danger:hover svg {
    stroke: #fecaca;
}


.page-actions {
    margin-bottom: var(--space-xl, 32px);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md, 16px);
}

.btn:disabled,
button:disabled {
    background: rgba(195, 255, 202, 0.05) !important;
    color: var(--color-text-muted, #8fb896) !important;
    border-color: var(--border-subtle, rgba(195, 255, 202, 0.08)) !important;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
}


.page-actions {
    margin-bottom: var(--space-xl, 32px);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md, 16px);
}


.form-group {
    margin-bottom: var(--space-lg, 24px);
}

label {
    display: block;
    margin-bottom: var(--space-sm, 8px);
    font-weight: 500;
    font-size: var(--font-sm, 0.875rem);
    color: var(--color-text, #d4ffe0);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: var(--space-sm, 8px) var(--space-md, 16px);
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    border: 1px solid var(--border-default, rgba(195, 255, 202, 0.12));
    border-radius: var(--radius-md, 10px);
    color: var(--color-text, #d4ffe0);
    font-size: var(--font-base, 1rem);
    font-family: inherit;
    transition: all var(--transition-fast, 150ms ease);
    line-height: 1.5;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1em;
    padding-right: 36px;
    cursor: pointer;
}

select option {
    background: #0a1f0e;
    color: var(--color-text, #d4ffe0);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary, #22c55e);
    box-shadow: var(--focus-ring, 0 0 0 3px rgba(34, 197, 94, 0.4));
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-muted, #8fb896);
    opacity: 0.6;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-sm, 8px);
    vertical-align: middle;
    accent-color: var(--color-primary, #22c55e);
}


.neon-checkbox {
    --primary: #6eff84;
    --primary-dark: #1d8038;
    --primary-light: #c3ffca;
    --size: 22px;
    
    position: relative;
    width: var(--size);
    height: var(--size);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.neon-checkbox input {
    display: none;
}

.neon-checkbox__frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.neon-checkbox__box {
    position: absolute;
    inset: 0;
    background: rgba(8, 32, 15, 0.8);
    border-radius: 4px;
    border: 2px solid var(--primary-dark);
    transition: all 0.4s ease;
}

.neon-checkbox__check-container {
    position: absolute;
    inset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-checkbox__check {
    width: 80%;
    height: 80%;
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.neon-checkbox__glow {
    position: absolute;
    inset: -2px;
    border-radius: 6px;
    background: var(--primary);
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.neon-checkbox__borders {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    overflow: hidden;
}

.neon-checkbox__borders span {
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neon-checkbox__borders span:nth-child(1) {
    top: 0;
    left: -100%;
    animation: borderFlow1 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 1px;
    height: 40px;
    animation: borderFlow2 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(3) {
    bottom: 0;
    right: -100%;
    animation: borderFlow3 2s linear infinite;
}

.neon-checkbox__borders span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 40px;
    animation: borderFlow4 2s linear infinite;
}

.neon-checkbox__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 6px var(--primary);
}

.neon-checkbox__rings {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.neon-checkbox__rings .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--primary);
    opacity: 0;
    transform: scale(0);
}

.neon-checkbox__sparks span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
}


.neon-checkbox:hover .neon-checkbox__box {
    border-color: var(--primary);
    transform: scale(1.05);
}


.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__box {
    border-color: var(--primary);
    background: rgba(110, 255, 132, 0.1);
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__check {
    stroke-dashoffset: 0;
    transform: scale(1.1);
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__glow {
    opacity: 0.2;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__borders span {
    opacity: 1;
}


.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__particles span {
    animation: particleExplosion 0.6s ease-out forwards;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__rings .ring {
    animation: ringPulse 0.6s ease-out forwards;
}

.neon-checkbox input:checked~.neon-checkbox__frame .neon-checkbox__sparks span {
    animation: sparkFlash 0.6s ease-out forwards;
}


@keyframes borderFlow1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes borderFlow2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200%);
    }
}

@keyframes borderFlow3 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes borderFlow4 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200%);
    }
}

@keyframes particleExplosion {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + var(--x, 20px)), calc(-50% + var(--y, 20px))) scale(0);
        opacity: 0;
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes sparkFlash {
    0% {
        transform: rotate(var(--r, 0deg)) translateX(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: rotate(var(--r, 0deg)) translateX(30px) scale(0);
        opacity: 0;
    }
}


.neon-checkbox__particles span:nth-child(1) {
    --x: 25px;
    --y: -25px;
}

.neon-checkbox__particles span:nth-child(2) {
    --x: -25px;
    --y: -25px;
}

.neon-checkbox__particles span:nth-child(3) {
    --x: 25px;
    --y: 25px;
}

.neon-checkbox__particles span:nth-child(4) {
    --x: -25px;
    --y: 25px;
}

.neon-checkbox__particles span:nth-child(5) {
    --x: 35px;
    --y: 0px;
}

.neon-checkbox__particles span:nth-child(6) {
    --x: -35px;
    --y: 0px;
}

.neon-checkbox__particles span:nth-child(7) {
    --x: 0px;
    --y: 35px;
}

.neon-checkbox__particles span:nth-child(8) {
    --x: 0px;
    --y: -35px;
}

.neon-checkbox__particles span:nth-child(9) {
    --x: 20px;
    --y: -30px;
}

.neon-checkbox__particles span:nth-child(10) {
    --x: -20px;
    --y: 30px;
}

.neon-checkbox__particles span:nth-child(11) {
    --x: 30px;
    --y: 20px;
}

.neon-checkbox__particles span:nth-child(12) {
    --x: -30px;
    --y: -20px;
}


.neon-checkbox__sparks span:nth-child(1) {
    --r: 0deg;
    top: 50%;
    left: 50%;
}

.neon-checkbox__sparks span:nth-child(2) {
    --r: 90deg;
    top: 50%;
    left: 50%;
}

.neon-checkbox__sparks span:nth-child(3) {
    --r: 180deg;
    top: 50%;
    left: 50%;
}

.neon-checkbox__sparks span:nth-child(4) {
    --r: 270deg;
    top: 50%;
    left: 50%;
}


.neon-checkbox__rings .ring:nth-child(1) {
    animation-delay: 0s;
}

.neon-checkbox__rings .ring:nth-child(2) {
    animation-delay: 0.1s;
}

.neon-checkbox__rings .ring:nth-child(3) {
    animation-delay: 0.2s;
}


.toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.toggle-switch-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-switch-label {
    width: 50px;
    height: 26px;
    background-color: #2f3e35;
    border-radius: 26px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.4s;
    border: 1px solid rgba(195, 255, 202, 0.2);
}

.toggle-switch-label::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #e1ffe6;
    transition: transform 0.4s;
    border-radius: 50%;
}

.toggle-switch-checkbox:checked+.toggle-switch-label {
    background-color: #22c55e;
    border-color: #22c55e;
}

.toggle-switch-checkbox:checked+.toggle-switch-label::after {
    transform: translateX(24px);
    background-color: #fff;
}

.toggle-switch-checkbox:focus+.toggle-switch-label {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.toggle-switch-text {
    font-size: 0.9rem;
    color: #e1ffe6;
}


::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8) sepia(1) hue-rotate(90deg);
    cursor: pointer;
    transition: opacity var(--transition-fast, 150ms ease);
    opacity: 0.7;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}



@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg, 16px);
    padding: var(--space-lg, 24px);
    margin-bottom: var(--space-lg, 24px);
    transition: transform var(--transition-spring, 400ms cubic-bezier(0.16, 1, 0.3, 1)),
        background var(--transition-base, 250ms ease),
        border-color var(--transition-base, 250ms ease),
        box-shadow var(--transition-base, 250ms ease);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.15), transparent);
    pointer-events: none;
}

.card:hover {
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
    transform: translateY(-3px);
    border-color: var(--border-hover, rgba(195, 255, 202, 0.2));
    box-shadow: var(--shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.25));
}

.card:focus-visible {
    outline: 2px solid var(--color-primary, #22c55e);
    outline-offset: 2px;
}


.cards-container .card:nth-child(1) {
    animation-delay: 0s;
}

.cards-container .card:nth-child(2) {
    animation-delay: 0.08s;
}

.cards-container .card:nth-child(3) {
    animation-delay: 0.16s;
}

.cards-container .card:nth-child(4) {
    animation-delay: 0.24s;
}

.cards-container .card:nth-child(5) {
    animation-delay: 0.32s;
}

.cards-container .card:nth-child(6) {
    animation-delay: 0.4s;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md, 10px);
    background: linear-gradient(135deg, var(--color-primary-light, rgba(34, 197, 94, 0.15)), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg, 24px);
    margin-bottom: var(--space-2xl, 48px);
}

.management-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg, 24px);
    margin-bottom: var(--space-2xl, 48px);
}

.management-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: var(--space-lg, 24px);
    text-decoration: none;
    color: var(--color-text, #d4ffe0);
    transition: transform var(--transition-spring, 400ms cubic-bezier(0.16, 1, 0.3, 1)),
        background var(--transition-base, 250ms ease),
        border-color var(--transition-base, 250ms ease),
        box-shadow var(--transition-base, 250ms ease);
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.management-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.15), transparent);
    pointer-events: none;
}

.management-card:hover {
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.25));
    border-color: var(--border-hover, rgba(195, 255, 202, 0.2));
}

.management-card:focus-visible {
    outline: 2px solid var(--color-primary, #22c55e);
    outline-offset: 2px;
}


.management-cards .management-card:nth-child(1) {
    animation-delay: 0s;
}

.management-cards .management-card:nth-child(2) {
    animation-delay: 0.08s;
}

.management-cards .management-card:nth-child(3) {
    animation-delay: 0.16s;
}

.management-cards .management-card:nth-child(4) {
    animation-delay: 0.24s;
}

.management-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.management-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted, #8fb896);
    margin-bottom: 0;
}



.dashboard-root .dashboard-hero {
    margin-bottom: var(--space-2xl, 48px);
    position: relative;
}


.dashboard-root .card,
.dashboard-root .management-card {
    animation: cardReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dashboard-root .cards-container .card:nth-child(1),
.dashboard-root .management-cards .management-card:nth-child(1) {
    animation-delay: 0s;
}

.dashboard-root .cards-container .card:nth-child(2),
.dashboard-root .management-cards .management-card:nth-child(2) {
    animation-delay: 0.08s;
}

.dashboard-root .cards-container .card:nth-child(3),
.dashboard-root .management-cards .management-card:nth-child(3) {
    animation-delay: 0.16s;
}

.dashboard-root .cards-container .card:nth-child(4),
.dashboard-root .management-cards .management-card:nth-child(4) {
    animation-delay: 0.24s;
}

.dashboard-root .welcome-card.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(12, 52, 23, 0.4) 0%, rgba(5, 19, 8, 0.7) 100%);
    border: 1px solid rgba(110, 255, 132, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(110, 255, 132, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.dashboard-root .credits-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-root .credits-section:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(110, 255, 132, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(110, 255, 132, 0.1);
}

.dashboard-root .dashboard-stats .card {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    background: linear-gradient(135deg, rgba(12, 52, 23, 0.35) 0%, rgba(5, 19, 8, 0.7) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(110, 255, 132, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-root .dashboard-stats .card:hover {
    background: linear-gradient(135deg, rgba(110, 255, 132, 0.1) 0%, rgba(5, 19, 8, 0.85) 100%);
    transform: translateY(-5px);
    border-color: rgba(110, 255, 132, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(110, 255, 132, 0.1);
}

.dashboard-root .management-card {
    display: flex;
    align-items: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(12, 52, 23, 0.3) 0%, rgba(5, 19, 8, 0.65) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(110, 255, 132, 0.15);
    border-radius: 24px;
    text-decoration: none;
    transition: all var(--transition-spring, 400ms cubic-bezier(0.16, 1, 0.3, 1));
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-root .management-card:hover {
    background: linear-gradient(135deg, rgba(12, 52, 23, 0.5) 0%, rgba(5, 19, 8, 0.8) 100%);
    transform: translateY(-3px);
    border-color: rgba(110, 255, 132, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(110, 255, 132, 0.1);
}

.dashboard-root .feedback-card.card {
    background: linear-gradient(135deg, rgba(12, 52, 23, 0.35) 0%, rgba(5, 19, 8, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 255, 132, 0.15);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.dashboard-root .welcome-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.dashboard-root .welcome-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.dashboard-root .welcome-icon i {
    width: 42px;
    height: 42px;
    font-size: 42px;
    color: #6eff84 !important;
    filter: drop-shadow(0 0 15px rgba(110, 255, 132, 0.8)) !important;
    line-height: 1 !important;
}

.dashboard-root .welcome-text h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dashboard-root .welcome-text p {
    font-size: 1.1rem;
    color: #8fb896;
    opacity: 0.9;
}

.dashboard-root .credits-section div h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8fb896;
    margin-bottom: 4px;
}

.dashboard-root .credits-section div p {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6eff84;
    text-shadow: 0 0 10px rgba(110, 255, 132, 0.4);
}

.dashboard-root .credits-section svg {
    width: 24px;
    height: 24px;
    stroke: rgba(110, 255, 132, 0.5);
}

.dashboard-root .dashboard-stats h2,
.dashboard-root .dashboard-management h2,
.dashboard-root .dashboard-feedback h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-root .dashboard-stats h2::before,
.dashboard-root .dashboard-management h2::before,
.dashboard-root .dashboard-feedback h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: #6eff84;
    border-radius: 2px;
    box-shadow: 0 0 10px #6eff84;
}

.dashboard-root .dashboard-stats .card .card-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 14px;
}

.dashboard-root .dashboard-stats .card .card-icon svg,
.dashboard-root .dashboard-stats .card .card-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.dashboard-root .dashboard-stats .card .card-content h3 {
    font-size: 0.95rem;
    color: #8fb896;
    margin-bottom: 5px;
}

.dashboard-root .dashboard-stats .card .card-content p {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.dashboard-root .management-card .card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 18px;
    margin-right: 20px;
}

.dashboard-root .management-card .card-icon svg,
.dashboard-root .management-card .card-icon i {
    width: 28px;
    height: 28px;
    font-size: 28px;
    line-height: 1;
}

.dashboard-root .management-card:hover .card-icon {
    transform: rotate(-5deg) scale(1.1);
}

.dashboard-root .management-card-content h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 6px;
}

.dashboard-root .management-card-content p {
    font-size: 0.95rem;
    color: #8fb896;
}

.dashboard-root .feedback-card.card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(2, 12, 5, 0.85);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(110, 255, 132, 0.15);
}

.dashboard-root .feedback-card.card .card-icon svg,
.dashboard-root .feedback-card.card .card-icon i {
    width: 24px;
    height: 24px;
    color: #6eff84;
    stroke: #6eff84;
    font-size: 24px;
    filter: drop-shadow(0 0 6px rgba(110, 255, 132, 0.6));
}

.dashboard-root .feedback-text h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: var(--space-sm, 8px);
}

.feedback-card .card-icon {
    margin-right: 0;
    margin-bottom: 0;
    background: rgba(110, 255, 132, 0.1);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-text {
    flex: 1;
    min-width: 300px;
}

.feedback-text p {
    color: var(--color-text-muted, #8fb896);
    font-size: var(--font-sm, 0.875rem);
    margin-bottom: 0;
}

.trustpilot {
    display: flex;
    align-items: center;
    font-size: var(--font-base, 1rem);
    font-weight: 600;
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    padding: var(--space-sm, 8px) var(--space-lg, 24px);
    border-radius: var(--radius-md, 10px);
    text-decoration: none;
    color: var(--color-text, #d4ffe0);
    transition: all var(--transition-fast, 150ms ease);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
}

.trustpilot:hover {
    background: var(--color-bg-card-hover, rgba(12, 48, 22, 0.7));
    border-color: var(--border-hover, rgba(195, 255, 202, 0.2));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 8px 24px rgba(0, 0, 0, 0.2));
}

.trustpilot-star {
    color: #00b67a;
    margin-left: var(--space-sm, 8px);
    font-size: 1.25rem;
}

.feedback-text h3 {
    margin-bottom: var(--space-sm, 8px);
}



@keyframes errorIconPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.4));
    }
}

@keyframes errorReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.error-page {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: errorReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.error-icon {
    margin-bottom: 30px;
}

.error-icon svg {
    stroke: var(--color-error, #ff6b6b);
    stroke-width: 1.5;
    animation: errorIconPulse 2.5s ease-in-out infinite;
    will-change: filter;
}

.error-page h1 {
    font-size: 4rem;
    color: var(--color-error, #ff6b6b);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.error-message {
    font-size: 1.2rem;
    color: var(--color-text, #c3ffca);
    margin-bottom: 20px;
}

.error-details {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-md, 10px);
    padding: var(--space-md, 16px);
    margin: 20px 0;
    text-align: left;
}

.error-details p {
    margin: 0;
    font-size: var(--font-sm, 0.9rem);
    color: #ff8a8a;
    word-break: break-word;
}

.error-actions {
    display: flex;
    gap: var(--space-md, 16px);
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}



@keyframes maintenanceReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.maintenance-card {
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.25) 0%, rgba(5, 19, 8, 0.4) 100%);
    border: 1px solid var(--border-default, rgba(195, 255, 202, 0.12));
    border-radius: var(--radius-lg, 16px);
    padding: 50px 40px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: maintenanceReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
    pointer-events: none;
}

.maintenance-icon {
    margin-bottom: var(--space-lg, 24px);
}

.maintenance-icon svg {
    width: 80px;
    height: 80px;
    stroke: #ffc107;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.3));
    animation: errorIconPulse 2s ease-in-out infinite;
    will-change: filter;
}

.maintenance-card h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.maintenance-card .subtitle {
    opacity: 0.75;
    margin-bottom: var(--space-xl, 32px);
    line-height: 1.7;
    font-size: 0.95rem;
}

.maintenance-info-box {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: var(--radius-md, 10px);
    padding: 20px;
    margin-bottom: var(--space-lg, 24px);
}

.maintenance-info-box h4 {
    color: #ffc107;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.maintenance-info-box p {
    margin: 0;
    opacity: 0.8;
    font-size: var(--font-sm, 0.9rem);
    line-height: 1.5;
}

.maintenance-duration {
    font-size: var(--font-sm, 0.9rem);
    opacity: 0.6;
    margin-bottom: var(--space-xl, 32px);
}

.maintenance-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm, 12px);
    flex-wrap: wrap;
}

.maintenance-staff-link {
    margin-top: var(--space-lg, 24px);
    opacity: 0.5;
    font-size: 0.85rem;
    transition: opacity var(--transition-fast, 150ms ease);
}

.maintenance-staff-link:hover {
    opacity: 0.8;
}

.maintenance-staff-link a {
    color: var(--color-text, #d4ffe0);
    text-decoration: none;
}

.maintenance-staff-link a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 35px 24px;
    }

    .maintenance-card h1 {
        font-size: 1.5rem;
    }

    .maintenance-actions {
        flex-direction: column;
        align-items: center;
    }

    .maintenance-actions .btn {
        width: 100%;
        justify-content: center;
    }
}




.hero-section {
    background: linear-gradient(120deg, rgba(29, 128, 56, 0.2) 0%, rgba(12, 52, 23, 0.2) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    text-align: center;
    border: 1px solid rgba(195, 255, 202, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(29, 128, 56, 0.15) 0%, rgba(5, 19, 8, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}


.feature-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 3px solid #1d8038;
}

.feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(29, 128, 56, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}


.quests-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.quest-card {
    
    display: flex;
    flex-direction: column;
    border-left: 4px solid #1d8038;
    
}

.quest-card.completed {
    border-left-color: #aaa;
    opacity: 0.7;
}

.quest-card.claimable {
    border-left-color: #ffc107;
    
}

.quest-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.quest-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 0;
}


.quest-icon svg {
    width: 22px;
    height: 22px;
}

.quest-title h3 {
    font-size: 1.2rem;
    margin: 0;
}

.quest-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.quest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.quest-reward {
    font-size: 1.1rem;
    font-weight: bold;
    color: #6eff84;
}

.quest-action button.claim {
    background-color: #ffc107;
    color: #333;
}

.quest-action button.claim:hover {
    background-color: #ffda6a;
}


.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    
    gap: 25px;
}

.service-card {
    
    display: flex;
    flex-direction: column;
    border-left: 4px solid;
    
}


.service-card.status-online {
    border-left-color: #28a745;
}

.service-card.status-offline {
    border-left-color: #dc3545;
}

.service-card.status-starting {
    border-left-color: #ffc107;
}

.service-card.status-suspended {
    border-left-color: #6c757d;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    min-width: 0;
    
}

.service-icon {
    border-radius: 8px;
    margin-right: 0;
    flex-shrink: 0;
}

.service-icon svg {
    width: 22px;
    height: 22px;
}

.service-title h3 {
    font-size: 1.3rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.3;
}

.service-status {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-online .service-status {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-offline .service-status {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.status-starting .service-status {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-suspended .service-status {
    background-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.service-details {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-details strong {
    color: #c3ffca;
    opacity: 1;
    font-weight: 500;
}

.service-details br {
    margin-bottom: 5px;
    display: block;
    content: "";
}




.service-actions {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(195, 255, 202, 0.1);
    display: flex;
    
    flex-wrap: wrap;
    
    gap: 10px;
    
    justify-content: flex-start;
    
}


.service-actions .btn.small,
.service-actions button.small,
.service-actions a.small {
    
    flex: 0 1 auto;
    
    padding: 8px 12px;
    
    font-size: 0.8rem;
    
    gap: 4px;
    
    min-height: auto;
    
    background-color: rgba(195, 255, 202, 0.08);
    
    border: 1px solid rgba(195, 255, 202, 0.15);
    
    border-radius: 6px;
    color: #c3ffca;
    
    display: inline-flex;
    
    align-items: center;
    justify-content: center;
}

.service-actions .btn.small svg,
.service-actions button.small svg,
.service-actions a.small svg {
    width: 14px;
    
    height: 14px;
    margin-bottom: 0;
    
    stroke: currentColor;
    
}

.service-actions .btn.small:hover,
.service-actions button.small:hover,
.service-actions a.small:hover {
    background-color: rgba(195, 255, 202, 0.15);
    border-color: rgba(195, 255, 202, 0.3);
    color: #e1ffe6;
}


.service-actions button.small.danger,
.service-actions a.small.danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #ffacac;
}

.service-actions button.small.danger svg,
.service-actions a.small.danger svg {
    stroke: #ff8a8a;
}

.service-actions button.small.danger:hover,
.service-actions a.small.danger:hover {
    background-color: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.4);
    color: #ffc2c2;
}

.service-actions button.small.danger:hover svg,
.service-actions a.small.danger:hover svg {
    stroke: #ffacac;
}


.service-actions button.small.primary,
.service-actions a.small.primary {
    background-color: rgba(29, 128, 56, 0.2);
    border-color: rgba(29, 128, 56, 0.3);
    color: #e1ffe6;
}

.service-actions button.small.primary svg,
.service-actions a.small.primary svg {
    stroke: #c3ffca;
}

.service-actions button.small.primary:hover,
.service-actions a.small.primary:hover {
    background-color: rgba(29, 128, 56, 0.3);
    border-color: rgba(29, 128, 56, 0.5);
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.1) 0%, rgba(5, 19, 8, 0.1) 100%);
    
    border-radius: 10px;
    
    padding: 0;
    
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(195, 255, 202, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.2) 0%, rgba(5, 19, 8, 0.2) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(195, 255, 202, 0.15);
}

.product-image {
    height: 180px;
    background-color: rgba(0, 0, 0, 0.2);
    
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-content p.description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: auto;
}

.product-price {
    font-size: 1rem;
    opacity: 0.9;
}

.product-price strong {
    font-size: 1.2rem;
    color: #6eff84;
}


.pagination {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 8px 15px;
    background-color: rgba(29, 128, 56, 0.2);
    border-radius: 6px;
    text-decoration: none;
    color: #c3ffca;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.pagination a:hover {
    background-color: rgba(29, 128, 56, 0.4);
}

.pagination span.current {
    background-color: #1d8038;
    color: #fff;
    font-weight: bold;
}

.pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(195, 255, 202, 0.1);
}


.balance-display {
    background: linear-gradient(90deg, rgba(29, 128, 56, 0.15) 0%, rgba(12, 52, 23, 0.15) 100%);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(195, 255, 202, 0.1);
}

.balance-display h3 {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.balance-display .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6eff84;
    line-height: 1;
}


.total-due {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.15) 0%, rgba(100, 20, 30, 0.15) 100%);
    border-left: 4px solid #dc3545;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}

.total-due.paid {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.15) 0%, rgba(20, 80, 40, 0.15) 100%);
    border-left: 4px solid #28a745;
}

.total-due span {
    font-size: 1.1rem;
}

.total-due strong {
    font-size: 1.4rem;
    color: #ff8a8a;
    transition: color 0.3s ease;
}

.total-due.paid strong {
    color: #6eff84;
}


@keyframes fileRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-row-fade-in {
    opacity: 0;
    animation: fileRowFadeIn 0.4s ease forwards;
}


.status-paid,
.status-active {
    color: #28a745;
    font-weight: 500;
}

.status-unpaid,
.status-pending,
.status-open,
.status-connecting {
    color: #ffc107;
    font-weight: 500;
}

.status-overdue,
.status-error,
.status-offline {
    color: #dc3545;
    font-weight: 500;
}

.status-closed,
.status-suspended {
    color: #6c757d;
    opacity: 0.8;
    font-weight: 500;
}

.status-customer-reply {
    color: #17a2b8;
    font-weight: 500;
}

.status-answered {
    color: #28a745;
    font-weight: 500;
}




.faq-item {
    margin-bottom: 10px;
    background: rgba(29, 128, 56, 0.08);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(195, 255, 202, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: rgba(29, 128, 56, 0.12);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: rgba(29, 128, 56, 0.2);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-answer {
    padding: 0px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    font-size: 0.95rem;
}

.faq-item.active .faq-question {
    background: rgba(29, 128, 56, 0.18);
}

.faq-item.active .faq-question .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    
    padding: 20px 20px;
}

.faq-answer p {
    margin-bottom: 0.8em;
}

.faq-answer ol,
.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 1em;
}


.data-table {
    width: 100%;
    border-collapse: collapse;
    
    font-size: 0.9rem;
    border-spacing: 0;
    
}

.data-table th,
.data-table td {
    padding: 14px 18px;
    
    text-align: left;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
    vertical-align: middle;
    
    transition: background-color 0.2s ease;
    
}

.data-table th {
    font-weight: 600;
    opacity: 0.8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    
}

.data-table tbody tr:last-child td {
    border-bottom: none;
    
}


.card .data-table tbody tr:last-child td {
    border-bottom: none;
}



.data-table tbody tr:hover td {
    background-color: rgba(29, 128, 56, 0.08);
    
}


.data-table tbody tr:hover td:first-child {
    border-top-left-radius: 8px;
    
    border-bottom-left-radius: 8px;
    
}

.data-table tbody tr:hover td:last-child {
    border-top-right-radius: 8px;
    
    border-bottom-right-radius: 8px;
    
}


.data-table td:last-child {
    
    text-align: right;
    white-space: nowrap;
    
}


.data-table td .table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    
    position: relative;
    
}



.data-table.files th:first-child,

.data-table.files td:first-child {
    width: 40px;
    padding-right: 10px;
    
    padding-left: 18px;
    
    text-align: center;
}

.data-table.files td svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.data-table.files a {
    font-weight: 500;
}



.badge {
    
    background-color: rgba(108, 117, 125, 0.2);
    color: #aaa;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 5px;
    vertical-align: middle;
}




.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    
    gap: 15px;
    margin-bottom: 25px;
}

.page-header h2 {
    
    margin: 0;
    flex-grow: 1;
    
}

.page-header .page-actions {
    
    margin-bottom: 0;
    flex-shrink: 0;
    
}


.service-management-container {
    display: flex;
    gap: 25px;
    
    margin-top: 30px;
    align-items: flex-start;
    
}


.admin-layout-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(195, 255, 202, 0.1);
    width: 240px;
    height: 100vh;
    padding: 20px;
    flex-shrink: 0;
    overflow-y: auto;
    position: sticky;
    top: 0;
}

.admin-main-content {
    padding: 20px;
    flex-grow: 1;
}

.admin-main-content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
}

.admin-main-content .header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.service-sidebar-nav {
    flex: 0 0 220px;
    
    background: linear-gradient(180deg, rgba(12, 52, 23, 0.12) 0%, rgba(5, 19, 8, 0.12) 100%);
    
    border-radius: 10px;
    padding: 20px 15px;
    
    height: fit-content;
    
    border: 1px solid rgba(195, 255, 202, 0.1);
    position: sticky;
    
    top: 20px;
    
}

.service-sidebar-nav h3 {
    font-size: 0.9rem;
    
    opacity: 0.7;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    
    padding: 10px 15px;
    
    margin-bottom: 5px;
    border-radius: 6px;
    color: #c3ffca;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.service-sidebar-nav li a svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.service-sidebar-nav li a:hover {
    background-color: rgba(29, 128, 56, 0.15);
    color: #e1ffe6;
}

.service-sidebar-nav li a:hover svg {
    opacity: 1;
}

.service-sidebar-nav li a.active {
    background-color: rgba(29, 128, 56, 0.3);
    color: #fff;
    
    font-weight: 600;
}

.service-sidebar-nav li a.active svg {
    opacity: 1;
}

.service-content {
    flex-grow: 1;
    
    min-width: 0;
    
    
}

.service-content>h2:first-child {
    
    margin-top: 0;
    margin-bottom: 25px;
    
}


.service-content>.card {
    margin-bottom: 25px;
}





.console-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.console-header-flex h3 {
    margin: 0;
}

.console-actions {
    display: flex;
    gap: 10px;
}

.terminal-container {
    padding: 2px;
    background: linear-gradient(135deg, rgba(110, 255, 132, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(110, 255, 132, 0.05);
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(110, 255, 132, 0.1);
}

.terminal-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

#terminal {
    height: 650px;
    
    background-color: #020804;
    padding: 20px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.4;
    overflow-y: auto;
    color: #ffffff;
}

.terminal-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg,
            rgba(255, 0, 0, 0.02),
            rgba(0, 255, 0, 0.01),
            rgba(0, 0, 255, 0.02));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.6;
}

.terminal-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(110, 255, 132, 0.05);
    pointer-events: none;
    z-index: 11;
}


#terminal::-webkit-scrollbar {
    width: 8px;
}

#terminal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

#terminal::-webkit-scrollbar-thumb {
    background: rgba(110, 255, 132, 0.2);
    border-radius: 4px;
}

#terminal::-webkit-scrollbar-thumb:hover {
    background: rgba(110, 255, 132, 0.4);
    box-shadow: 0 0 10px rgba(110, 255, 132, 0.3);
}


.console-command-bar {
    display: flex;
    gap: 12px;
    padding: 5px;
}

.command-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(110, 255, 132, 0.15);
    border-radius: 8px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.command-input-wrapper:focus-within {
    border-color: rgba(110, 255, 132, 0.5);
    box-shadow: 0 0 15px rgba(110, 255, 132, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.prompt-symbol {
    color: #6eff84;
    font-weight: bold;
    font-family: monospace;
    margin-right: 12px;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(110, 255, 132, 0.5);
}

#commandInput {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 0 !important;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.95rem;
    box-shadow: none !important;
}

#commandInput::placeholder {
    color: rgba(143, 184, 150, 0.4);
}


.file-manager-wrapper {
    background: var(--color-bg-card, rgba(8, 32, 15, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.08));
    overflow: hidden;
    position: relative;
}

.file-manager-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
}


.file-manager-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 22px;
    background: linear-gradient(180deg, rgba(110, 255, 132, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(195, 255, 202, 0.06);
}

.file-manager-breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 32px;
}

.file-manager-breadcrumb a {
    color: rgba(195, 255, 202, 0.6);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.file-manager-breadcrumb a:hover {
    color: #c3ffca;
    background: rgba(110, 255, 132, 0.08);
}

.file-manager-breadcrumb a:last-child {
    color: #e1ffe6;
    font-weight: 600;
}

.file-manager-breadcrumb span {
    margin: 0 2px;
    opacity: 0.3;
    font-size: 0.85rem;
    color: rgba(195, 255, 202, 0.4);
}

.file-manager-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}


.file-manager-wrapper .upload-progress-container {
    padding: 12px 22px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.06);
    background: rgba(110, 255, 132, 0.02);
}


.file-listing-body {
    position: relative;
}


.file-manager-wrapper .data-table {
    margin-bottom: 0;
}

.file-manager-wrapper .data-table thead th {
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(195, 255, 202, 0.06);
    padding: 12px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(195, 255, 202, 0.45);
    white-space: nowrap;
}

.file-manager-wrapper .data-table thead th:first-child {
    padding-left: 22px;
}

.file-manager-wrapper .data-table thead th:last-child {
    padding-right: 22px;
}

.file-manager-wrapper .data-table tbody tr {
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.file-manager-wrapper .data-table tbody tr:hover {
    background: rgba(110, 255, 132, 0.04) !important;
    border-left-color: rgba(110, 255, 132, 0.4);
}

.file-manager-wrapper .data-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.03);
    vertical-align: middle;
}

.file-manager-wrapper .data-table tbody td:first-child {
    padding-left: 19px;
}

.file-manager-wrapper .data-table tbody td:last-child {
    padding-right: 22px;
}

.file-manager-wrapper .data-table tbody tr:last-child td {
    border-bottom: none;
}


.file-manager-wrapper .data-table tbody td svg {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.file-manager-wrapper .data-table tbody tr:hover td svg {
    opacity: 0.8;
}


.file-icon-cell {
    width: 30px;
    text-align: center;
    vertical-align: middle !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: table-cell;
}

.file-icon-cell i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(195, 255, 202, 0.55);
    font-size: 18px;
    opacity: 0.65;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.file-manager-wrapper .data-table tbody tr:hover .file-icon-cell i {
    opacity: 1;
    transform: scale(1.1);
}


.file-manager-wrapper .data-table a.item-link {
    font-weight: 500;
    color: #c3ffca;
    text-decoration: none;
    transition: color 0.2s ease;
}

.file-manager-wrapper .data-table a.item-link:hover {
    color: #e1ffe6;
    text-decoration: underline;
    text-underline-offset: 3px;
}


.file-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(195, 255, 202, 0.5);
    font-size: 0.9rem;
}

.file-loading-state svg {
    opacity: 0.4;
    stroke: #6eff84;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

@keyframes spin-icon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-icon {
    animation: spin-icon 1s linear infinite;
}


.file-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(195, 255, 202, 0.4);
}

.file-empty-state svg {
    opacity: 0.2;
    stroke: #6eff84;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 8px;
}

.file-empty-state p {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(195, 255, 202, 0.5);
    margin: 0;
}

.file-empty-state span {
    font-size: 0.85rem;
    opacity: 0.6;
}


.file-row-fade-in {
    animation: fileRowFadeIn 0.3s ease forwards;
    opacity: 0;
}

@keyframes fileRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.drop-zone-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 5, 0.85);
    border: 2px dashed rgba(110, 255, 132, 0.4);
    border-radius: inherit;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.drag-over .drop-zone-overlay {
    display: flex;
}

.drop-zone-content {
    text-align: center;
    color: rgba(110, 255, 132, 0.7);
}

.drop-zone-content svg {
    opacity: 0.5;
    stroke: #6eff84;
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 10px;
}

.drop-zone-content p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}



.settings-section {
    background: rgba(29, 128, 56, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(195, 255, 202, 0.1);
    margin-bottom: 30px;
}

.settings-section h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
    padding-bottom: 10px;
    margin-top: 0;
}


.danger-zone {
    border-left: 4px solid #dc3545 !important;
    background: rgba(220, 53, 69, 0.05);
}


.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0f7831;
    
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(195, 255, 202, 0.2);
}

.profile-avatar-preview svg {
    width: 40px;
    height: 40px;
}

.profile-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-actions button {
    margin-top: 5px;
}

.profile-settings-card h3 {
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.two-factor-status {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.status-badge-2fa {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge-2fa.enabled {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-badge-2fa.disabled {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.account-info p {
    margin-bottom: 8px;
    
    font-size: 0.95rem;
}

.account-info strong {
    color: #e1ffe6;
    min-width: 150px;
    
    display: inline-block;
    opacity: 0.8;
}

.account-info span {
    
    color: #c3ffca;
}



.ticket-details-header {
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.2) 0%, rgba(5, 19, 8, 0.2) 100%);
    border: 1px solid rgba(195, 255, 202, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ticket-details-header .info span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 3px;
}

.ticket-details-header .info strong {
    color: #e1ffe6;
}

.ticket-status-badge {
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
}


.ticket-status-badge.status-open {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.ticket-status-badge.status-answered {
    background-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.ticket-status-badge.status-customer-reply {
    background-color: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
}

.ticket-status-badge.status-closed {
    background-color: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.ticket-chat-container {
    margin-bottom: 25px;
}

.chat-message {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.chat-message .avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.chat-message .message-content {
    background: rgba(12, 52, 23, 0.25);
    border: 1px solid rgba(195, 255, 202, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    flex-grow: 1;
}

.chat-message .message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(195, 255, 202, 0.1);
}

.chat-message .message-sender {
    font-weight: 600;
    color: #e1ffe6;
}

.chat-message .message-sender .badge {
    
    margin-left: 8px;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

.chat-message .message-sender .badge.staff {
    background-color: #1d8038;
    color: #fff;
}

.chat-message .message-sender .badge.customer {
    background-color: #6c757d;
    color: #fff;
}

.chat-message .message-timestamp {
    font-size: 0.8rem;
    opacity: 0.6;
}

.chat-message .message-body {
    font-size: 0.95rem;
    line-height: 1.7;
}

.chat-message .message-body p:last-child {
    margin-bottom: 0;
}

.chat-message .message-body code {
    
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    white-space: pre-wrap;
    
    word-break: break-all;
}


.chat-message.staff-reply .message-content {
    background: rgba(29, 128, 56, 0.15);
    border-color: rgba(29, 128, 56, 0.2);
}

.ticket-reply-form .form-group {
    margin-bottom: 15px;
}

.ticket-reply-form textarea {
    min-height: 120px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(29, 128, 56, 0.2);
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 8px rgba(29, 128, 56, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(29, 128, 56, 0);
    }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}


.skeleton {
    background: linear-gradient(90deg,
            rgba(195, 255, 202, 0.05) 25%,
            rgba(195, 255, 202, 0.1) 50%,
            rgba(195, 255, 202, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: var(--radius-md, 10px);
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text:last-child {
    width: 70%;
}

.skeleton-heading {
    height: 1.5em;
    width: 60%;
    margin-bottom: 1em;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-card {
    padding: 20px;
    min-height: 150px;
}

.skeleton-stat {
    height: 2em;
    width: 80%;
    margin: 10px auto;
}

.skeleton-progress {
    height: 6px;
    width: 100%;
    margin-top: 10px;
}


.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 10, 5, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: inherit;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(195, 255, 202, 0.1);
    border-top-color: #6eff84;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #8fb896;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    stroke: #6eff84;
    opacity: 0.5;
}

.empty-state h3 {
    color: #c3ffca;
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
}


.error-state {
    text-align: center;
    padding: 40px 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg, 16px);
}

.error-state svg {
    width: 48px;
    height: 48px;
    stroke: #fca5a5;
    margin-bottom: 15px;
}

.error-state h3 {
    color: #fecaca;
    margin-bottom: 10px;
}

.error-state p {
    color: #fca5a5;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.modal-content {
    background: linear-gradient(145deg, #0a2a10 0%, #051308 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(195, 255, 202, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.visible .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #8fb896;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: #fca5a5;
}


.modal-overlay.blocking {
    pointer-events: none;
}

.modal-overlay.blocking .modal-content {
    pointer-events: auto;
}

.modal-overlay.blocking .modal-close-btn {
    display: none;
}


.modal-content.danger {
    border-left: 4px solid #ef4444;
}

.modal-content.danger h3 {
    color: #fecaca;
}

.modal-content.warning {
    border-left: 4px solid #ffc107;
}

.modal-content.warning h3 {
    color: #ffd966;
}


.progress-bar-fill.warning {
    background: linear-gradient(90deg, #ffc107, #ffda6a);
}

.progress-bar-fill.danger {
    background: linear-gradient(90deg, #ef4444, #f87171);
}


.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #16a34a, #059669);
    color: var(--color-bg, #030a05);
}

.btn-secondary:hover,
button.btn-secondary:hover {
    background: rgba(34, 197, 94, 0.15);
    color: #e1ffe6;
}


.btn svg,
button svg {
    transition: stroke 0.2s ease;
}

.btn-primary svg,
button.btn-primary svg,
input[type="submit"] svg {
    stroke: var(--color-bg, #030a05);
}

.btn-secondary svg,
button.btn-secondary svg {
    stroke: currentColor;
}


@media (max-width: 992px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        
        overflow-x: auto;
        
        padding-bottom: 10px;
    }

    .user-profile {
        justify-content: center;
        
    }

    .welcome-card {
        flex-direction: column;
        align-items: stretch;
        
        text-align: left;
    }

    .credits-section {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: left;
        justify-content: space-between;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cards-container,
    .management-cards,
    .quests-container,
    .services-container,
    .product-grid {
        grid-template-columns: 1fr;
        
    }

    .service-management-container {
        flex-direction: column;
    }

    .service-sidebar-nav {
        flex: 0 0 auto;
        width: 100%;
        position: static;
        
        margin-bottom: 25px;
    }

    

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .feedback-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .feedback-card .card-icon {
        margin: 0 auto 15px auto;
    }

    
    .feedback-text {
        margin-left: 0;
    }

    .trustpilot {
        justify-content: center;
    }

    

    .page-actions {
        justify-content: center;
    }

    
    .page-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .page-header .page-actions {
        justify-content: center;
    }

    .data-table {
        font-size: 0.85rem;
    }

    
    .data-table th,
    .data-table td {
        padding: 12px 10px;
    }

    
    
    .file-manager-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
    }

    .file-manager-breadcrumb {
        margin-bottom: 10px;
        justify-content: center;
    }

    .file-manager-actions {
        justify-content: center;
    }

    .service-actions {
        
        gap: 8px;
    }

    .service-actions .btn.small,
    .service-actions button.small,
    .service-actions a.small {
        flex-grow: 1;
        
        justify-content: center;
        
    }

    .ticket-details-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {
    .container {
        padding: var(--space-sm, 8px);
    }

    h1 {
        font-size: var(--font-xl, 1.25rem);
    }

    h2 {
        font-size: var(--font-lg, 1.125rem);
    }

    .user-profile {
        padding: 8px 10px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }

    .username {
        font-size: 0.9rem;
    }

    .notification {
        width: 32px;
        height: 32px;
    }

    .btn,
    button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .card,
    .service-card,
    .quest-card,
    .product-card {
        padding: 20px;
        border-radius: var(--radius-md, 10px);
    }

    
    .credits-section p {
        font-size: 1.2rem;
    }

    .service-sidebar-nav {
        flex: 0 0 auto;
        width: 100%;
        padding: 15px;
    }

    

    .data-table th,
    .data-table td {
        padding: 10px 5px;
    }

    
    .file-manager-header {
        padding: 15px;
    }

    .product-content {
        padding: 15px;
    }

    .file-manager-header.card {
        padding: 15px;
    }

    
    .chat-message {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    
    .chat-message .avatar {
        align-self: flex-start;
        margin-bottom: 5px;
    }

    
    .chat-message .message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        border: none;
        padding-bottom: 0;
    }

    .chat-message .message-timestamp {
        order: -1;
        opacity: 0.8;
    }

    
}


.card-content h3,
.management-card-content h3,
.service-title h3,
.welcome-text h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.data-table td {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}


:focus-visible {
    outline: 2px solid var(--color-primary, #22c55e);
    outline-offset: 2px;
}


:focus:not(:focus-visible) {
    outline: none;
}


.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.15) 0%, rgba(5, 19, 8, 0.2) 100%);
    border: 1px solid rgba(195, 255, 202, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.notification-item:hover {
    background: linear-gradient(145deg, rgba(12, 52, 23, 0.25) 0%, rgba(5, 19, 8, 0.3) 100%);
    border-color: rgba(195, 255, 202, 0.2);
    transform: translateY(-2px);
}

.notification-item.unread {
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.15) 0%, rgba(12, 52, 23, 0.2) 100%);
    border-left: 3px solid #6eff84;
}

.notification-item.unread .notification-message {
    font-weight: 500;
    color: #e1ffe6;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 18px;
    height: 18px;
    stroke: #6eff84;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #c3ffca;
}

.notification-timestamp {
    font-size: 0.8rem;
    color: #8fb896;
    opacity: 0.7;
}

.notifications-empty {
    text-align: center;
    padding: 60px 20px;
    color: #8fb896;
    opacity: 0.8;
}

.notifications-empty svg {
    width: 48px;
    height: 48px;
    stroke: #6eff84;
    opacity: 0.5;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.main-footer {
    background: linear-gradient(180deg, rgba(5, 19, 8, 0.8) 0%, rgba(3, 10, 5, 0.95) 100%);
    border-top: 1px solid rgba(195, 255, 202, 0.1);
    padding: 40px 0;
    margin-top: auto;
}

.main-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #8fb896;
    font-size: 0.9rem;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #8fb896;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #6eff84;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #8fb896;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #6eff84;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}



.console-page-header {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 25px;
    margin-bottom: 25px;
}

.resource-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.resource-stats-container .stat-item {
    text-align: center;
}

.resource-stats-container .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #8fb896;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-stats-container .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6eff84;
    margin-bottom: 8px;
}

.resource-stats-container .progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
}

.resource-stats-container .progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #10b981);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.server-status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.server-status-card h4 {
    margin: 0 0 15px 0;
    color: #e1ffe6;
    font-size: 1rem;
}

.server-visual {
    width: 120px;
    height: 120px;
    position: relative;
}

.server-fan {
    width: 100%;
    height: 100%;
    position: relative;
}

.fan-housing-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fan-blades-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fan-blade-group {
    transform-origin: 50px 50px;
}

.fan-blade {
    opacity: 0.85;
    filter: drop-shadow(0 0 2px rgba(110, 255, 132, 0.3));
}

#server-fan-blades {
    transform-origin: center;
    
}


#server-fan-blades.idle {
    animation: fan-spin 4s linear infinite;
}


#server-fan-blades.running {
    animation: fan-spin 2s linear infinite;
}


#server-fan-blades.high-load {
    animation: fan-spin 0.5s linear infinite;
}


#server-fan-blades.stopped {
    animation: none;
}

@keyframes fan-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.console-control-panel {
    padding: 25px;
}

.console-control-panel h3 {
    margin: 0 0 20px 0;
    color: #e1ffe6;
}

.console-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#terminal {
    background: #000;
    border-radius: 8px;
    height: 600px;
    margin-bottom: 15px;
    border: 1px solid rgba(195, 255, 202, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
}

#commandForm {
    display: flex;
    gap: 10px;
}

#commandForm input[type="text"] {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(195, 255, 202, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: #d4ffe0;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.9rem;
}

#commandForm input[type="text"]:focus {
    outline: none;
    border-color: #6eff84;
}

.console-event-log {
    padding: 20px;
}

.console-event-log h4 {
    margin: 0 0 15px 0;
    color: #e1ffe6;
    font-size: 1rem;
}

.console-event-log ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.console-event-log li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
    font-size: 0.9rem;
    color: #c3ffca;
}

.console-event-log li:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .console-page-header {
        grid-template-columns: 1fr;
    }

    .server-status-card {
        order: -1;
    }
}


.server-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.arx-status-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    content: ""; 
}

.arx-status-dot::before, .arx-status-dot::after {
    display: none !important; 
}

.arx-status-dot--online {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e, 0 0 20px rgba(34, 197, 94, 0.4);
}

.arx-status-dot--starting,
.arx-status-dot--stopping,
.arx-status-dot--installing {
    background: #eab308;
    box-shadow: 0 0 8px #eab308, 0 0 20px rgba(234, 179, 8, 0.4);
    animation: arx-led-blink 1s ease-in-out infinite;
}

.arx-status-dot--offline {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444, 0 0 20px rgba(239, 68, 68, 0.3);
}

@keyframes arx-led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.arx-status-dot-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c3ffca;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cpu-load-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #6eff84;
    opacity: 0.85;
}


.ip-copy-btn {
    cursor: pointer;
    color: #c3ffca;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    font-family: 'JetBrains Mono', Consolas, monospace;
    letter-spacing: 0.5px;
}

.ip-copy-btn:hover {
    background: rgba(110, 255, 132, 0.12);
    border-color: rgba(110, 255, 132, 0.3);
    color: #6eff84;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 255, 132, 0.15), inset 0 0 10px rgba(110, 255, 132, 0.05);
}

.ip-copy-btn i {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ip-copy-btn:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.ip-copy-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}


.user-profile-wrapper {
    position: relative;
    z-index: 2000;
}

.user-profile {
    cursor: pointer;
}

.user-profile .dropdown-arrow {
    transition: transform 0.2s ease;
}

.user-profile.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: linear-gradient(160deg, #0a2a10 0%, #051308 100%);
    border: 1px solid rgba(195, 255, 202, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: all 0.25s ease;
    z-index: 2100;
    overflow: hidden;
}

.dropdown-menu.show,
.dropdown-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.dropdown-header strong {
    display: block;
    color: #e1ffe6;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.dropdown-header span {
    font-size: 0.8rem;
    color: #8fb896;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    
    padding: 12px 18px;
    color: #c3ffca;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(34, 197, 94, 0.15);
    color: #e1ffe6;
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    stroke: #6eff84;
    flex-shrink: 0;
}

.dropdown-item-highlight {
    background: rgba(34, 197, 94, 0.1);
    color: #6eff84;
}

.dropdown-item-highlight:hover {
    background: rgba(34, 197, 94, 0.2);
}

.dropdown-item-danger {
    color: #fca5a5;
}

.dropdown-item-danger:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
}

.dropdown-item-danger svg {
    stroke: #fca5a5;
}

.dropdown-badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.dropdown-divider {
    height: 1px;
    background: rgba(195, 255, 202, 0.1);
    margin: 8px 0;
}

.dropdown-logout-form {
    display: contents;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #c3ffca;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 10, 5, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 5px;
}

.mobile-nav-content a {
    padding: 15px;
    color: #c3ffca;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-content a:hover {
    background: rgba(34, 197, 94, 0.15);
}

.mobile-nav-content hr {
    border: none;
    border-top: 1px solid rgba(195, 255, 202, 0.1);
    margin: 15px 0;
}

.mobile-logout-form {
    width: 100%;
}

.mobile-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #22c55e;
    color: #030a05;
    padding: 10px 20px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


.plans-quick-access {
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.plans-quick-access h3 {
    color: #e1ffe6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.bot-quick-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.grid-plan-item {
    background: rgba(29, 128, 56, 0.1);
    border: 1px solid rgba(110, 255, 132, 0.1);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-plan-item:hover,
.grid-plan-item.active {
    background: rgba(29, 128, 56, 0.25);
    border-color: #6eff84;
    transform: translateY(-2px);
}

.grid-plan-name {
    color: #e1ffe6;
    font-weight: 600;
    margin-bottom: 5px;
}

.grid-plan-price {
    color: #6eff84;
    font-size: 0.9rem;
}


.bot-slider-container {
    position: relative;
    padding: 40px 0;
    margin: 20px 0;
}

.bot-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bot-slider-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.bot-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.bot-plan-item {
    flex: 0 0 320px;
    cursor: pointer;
}

.bot-card-premium {
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.1), rgba(29, 128, 56, 0.05));
    border: 2px solid rgba(195, 255, 202, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.bot-plan-item:hover .bot-card-premium {
    border-color: rgba(110, 255, 132, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bot-plan-item.active .bot-card-premium {
    border-color: #6eff84;
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.25), rgba(29, 128, 56, 0.15));
    box-shadow: 0 0 25px rgba(110, 255, 132, 0.25);
}

.bot-card-premium .active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #6eff84;
    color: #051308;
    padding: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.bot-plan-item.active .active-indicator {
    opacity: 1;
    transform: translateY(0);
}

.bot-card-premium .card-top {
    margin-bottom: 25px;
    padding-top: 10px;
}

.bot-plan-item.active .card-top {
    padding-top: 20px;
}

.bot-card-premium .plan-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e1ffe6;
    margin-bottom: 8px;
}

.bot-card-premium .plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6eff84;
    margin-bottom: 5px;
}

.bot-card-premium .plan-price span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.bot-card-premium .plan-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.bot-card-premium .plan-specs li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #c3ffca;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.bot-card-premium .plan-specs li:last-child {
    border-bottom: none;
}

.bot-card-premium .plan-specs li svg {
    width: 18px;
    height: 18px;
    stroke: #6eff84;
    flex-shrink: 0;
}

.bot-card-premium .plan-specs strong {
    color: #e1ffe6;
}

.bot-card-premium .select-plan-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(110, 255, 132, 0.1);
    border: 1px solid rgba(110, 255, 132, 0.3);
    border-radius: 8px;
    color: #6eff84;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bot-card-premium .select-plan-btn:hover {
    background: rgba(110, 255, 132, 0.2);
    border-color: #6eff84;
    transform: translateY(-2px);
}

.bot-plan-item.active .select-plan-btn {
    background: #6eff84;
    color: #051308;
    border-color: #6eff84;
}


.summary-panel {
    position: sticky;
    top: 100px;
}

.summary-panel h3 {
    margin-bottom: 20px;
    color: #e1ffe6;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #8fb896;
    font-size: 0.9rem;
}

.summary-item strong {
    color: #e1ffe6;
    font-size: 0.95rem;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.2), transparent);
    margin: 15px 0;
}

.summary-total {
    padding: 15px 0 !important;
}

.summary-total span {
    font-weight: 600;
    color: #c3ffca;
}

.summary-total strong {
    font-size: 1.5rem;
    color: #6eff84;
}

.summary-note {
    color: #8fb896;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.summary-note svg {
    stroke: #6eff84;
}


.config-note {
    background: rgba(110, 255, 132, 0.08);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.config-note svg {
    width: 20px;
    height: 20px;
    stroke: #6eff84;
    flex-shrink: 0;
    margin-top: 2px;
}

.config-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #c3ffca;
    line-height: 1.5;
}


.configuration-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
}

.configuration-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.configuration-header h1 {
    margin-bottom: 8px;
}

.config-page-subtitle {
    color: #8fb896;
    font-size: 1rem;
    margin: 0;
}

.config-options.card {
    padding: 0;
    overflow: hidden;
}

.config-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
}

.config-section:last-of-type {
    border-bottom: none;
}

.config-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e1ffe6;
}

.config-section h3 svg {
    width: 20px;
    height: 20px;
    stroke: #6eff84;
}


.plans-grid-container {
    position: relative;
    overflow: visible;
    padding-top: 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 5px;
}

.plan-card {
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.1), rgba(29, 128, 56, 0.05));
    border: 2px solid rgba(195, 255, 202, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.plan-card:hover {
    border-color: rgba(110, 255, 132, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-card.selected {
    border-color: #6eff84;
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.25), rgba(29, 128, 56, 0.15));
    box-shadow: 0 0 25px rgba(110, 255, 132, 0.25);
}



.plan-card .plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e1ffe6;
    margin-bottom: 8px;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6eff84;
    margin-bottom: 5px;
}

.plan-card .plan-price span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-card .plan-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.plan-card .plan-specs li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #c3ffca;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.plan-card .plan-specs li:last-child {
    border-bottom: none;
}

.plan-card .plan-specs li svg {
    width: 18px;
    height: 18px;
    stroke: #6eff84;
    flex-shrink: 0;
}

.plan-card .plan-specs strong {
    color: #e1ffe6;
}

.plan-card .select-plan-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(110, 255, 132, 0.1);
    border: 1px solid rgba(110, 255, 132, 0.3);
    border-radius: 8px;
    color: #6eff84;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card .select-plan-btn:hover {
    background: rgba(110, 255, 132, 0.2);
    border-color: #6eff84;
    transform: translateY(-2px);
}

.plan-card.selected .select-plan-btn {
    background: #6eff84;
    color: #051308;
    border-color: #6eff84;
}


.summary-panel {
    position: sticky;
    top: 100px;
}

.summary-panel h3 {
    margin-bottom: 20px;
    color: #e1ffe6;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #8fb896;
    font-size: 0.9rem;
}

.summary-item strong {
    color: #e1ffe6;
    font-size: 0.95rem;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.2), transparent);
    margin: 15px 0;
}

.summary-total {
    padding: 15px 0 !important;
}

.summary-total span {
    font-weight: 600;
    color: #c3ffca;
}

.summary-total strong {
    font-size: 1.5rem;
    color: #6eff84;
}

.summary-note {
    color: #8fb896;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.summary-note svg {
    stroke: #6eff84;
}


.config-note {
    background: rgba(110, 255, 132, 0.08);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.config-note svg {
    width: 20px;
    height: 20px;
    stroke: #6eff84;
    flex-shrink: 0;
    margin-top: 2px;
}

.config-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #c3ffca;
    line-height: 1.5;
}


.configuration-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
}

.configuration-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.configuration-header h1 {
    margin-bottom: 8px;
}

.config-page-subtitle {
    color: #8fb896;
    font-size: 1rem;
    margin: 0;
}

.config-options.card {
    padding: 0;
    overflow: hidden;
}

.config-section {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.1);
}

.config-section:last-of-type {
    border-bottom: none;
}

.config-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e1ffe6;
}

.config-section h3 svg {
    width: 20px;
    height: 20px;
    stroke: #6eff84;
}


.plans-grid-container {
    position: relative;
    overflow: visible;
    padding-top: 15px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 5px;
}

.plan-card {
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.1), rgba(29, 128, 56, 0.05));
    border: 2px solid rgba(195, 255, 202, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.plan-card:hover {
    border-color: rgba(110, 255, 132, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-card.selected {
    border-color: #6eff84;
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.25), rgba(29, 128, 56, 0.15));
    box-shadow: 0 0 25px rgba(110, 255, 132, 0.25);
}



.plan-card .plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e1ffe6;
    margin-bottom: 8px;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6eff84;
    margin-bottom: 5px;
}

.plan-card .plan-price span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-card .plan-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.plan-card .plan-specs li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #c3ffca;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.plan-card .plan-specs li:last-child {
    border-bottom: none;
}

.plan-card .plan-specs li svg {
    width: 18px;
    height: 18px;
    stroke: #6eff84;
    flex-shrink: 0;
}

.plan-card .plan-specs strong {
    color: #e1ffe6;
}

.plan-card .select-plan-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(110, 255, 132, 0.1);
    border: 1px solid rgba(110, 255, 132, 0.3);
    border-radius: 8px;
    color: #6eff84;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card .select-plan-btn:hover {
    background: rgba(110, 255, 132, 0.2);
    border-color: #6eff84;
    transform: translateY(-2px);
}

.plan-card.selected .select-plan-btn {
    background: #6eff84;
    color: #051308;
    border-color: #6eff84;
}


.summary-panel {
    position: sticky;
    top: 100px;
}

.summary-panel h3 {
    margin-bottom: 20px;
    color: #e1ffe6;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(195, 255, 202, 0.08);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #8fb896;
    font-size: 0.9rem;
}

.summary-item strong {
    color: #e1ffe6;
    font-size: 0.95rem;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 255, 202, 0.2), transparent);
    margin: 15px 0;
}

.summary-total {
    padding: 15px 0 !important;
}

.summary-total span {
    font-weight: 600;
    color: #c3ffca;
}

.summary-total strong {
    font-size: 1.5rem;
    color: #6eff84;
}

.summary-note {
    color: #8fb896;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.summary-note svg {
    stroke: #6eff84;
}


.config-note {
    background: rgba(110, 255, 132, 0.08);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.config-note svg {
    width: 20px;
    height: 20px;
    stroke: #6eff84;
    flex-shrink: 0;
    margin-top: 2px;
}

.config-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #c3ffca;
    line-height: 1.5;
}


.toast-notification {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 16px 24px;
    background: linear-gradient(145deg, #0f3c1a 0%, #08200d 100%);
    color: #e1ffe6;
    border-radius: 10px;
    border: 1px solid rgba(195, 255, 202, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.3s ease, transform 0.35s ease, visibility 0s linear 0s;
}

.toast-notification.success {
    background: linear-gradient(145deg, #105c2a 0%, #0f3c1a 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.toast-notification.error {
    background: linear-gradient(145deg, #5c1010 0%, #3c0f0f 100%);
    border-color: rgba(220, 53, 69, 0.3);
}

.toast-notification .toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-notification .toast-icon svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.toast-notification.success .toast-icon svg {
    stroke: #6eff84;
}

.toast-notification.error .toast-icon svg {
    stroke: #ff8a8a;
}

.toast-notification .toast-message {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}




.upload-progress-container {
    flex: 1;
    margin: 0 20px;
    min-width: 200px;
    animation: fadeIn 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted, #8fb896);
    margin-bottom: 5px;
}

.progress-bar-wrapper {
    height: 6px;
    background: rgba(110, 255, 132, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6eff84, #c3ffca);
    box-shadow: 0 0 10px #6eff84;
    transition: width 0.3s ease;
}


#fileListingArea {
    position: relative;
}

.drop-zone-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 32, 15, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #6eff84;
    border-radius: 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    margin: -1px;
    
}

#fileListingArea.drag-over .drop-zone-overlay {
    opacity: 1;
    visibility: visible;
}

.drop-zone-content {
    text-align: center;
    color: #6eff84;
}

.drop-zone-content svg {
    margin-bottom: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    animation: bounce 2s infinite;
}

.drop-zone-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    
    .header {
        padding: var(--space-md, 16px) !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .main-nav {
        display: none !important;
    }

    .user-profile-wrapper {
        margin-left: auto;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: -1;
        
        flex-shrink: 0;
    }

    .user-profile {
        padding: 4px 10px !important;
        gap: 6px !important;
    }

    .user-profile .avatar {
        width: 26px !important;
        height: 26px !important;
    }

    .user-profile .avatar svg {
        width: 14px !important;
        height: 14px !important;
    }

    .user-profile .username {
        display: inline-block !important;
        
        font-size: 0.8rem;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    
    #terminal {
        height: 350px !important;
    }

    .console-actions {
        justify-content: center;
    }

    
    .file-modified-col {
        display: none !important;
    }

    
    .service-management-container {
        flex-direction: column;
    }

    .service-sidebar-nav {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .service-content {
        width: 100%;
    }

    #subusers-table th,
    #subusers-table td {
        text-align: center !important;
    }

    #subusers-table .table-actions {
        justify-content: center !important;
    }

    
    #env-vars-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .data-table {
        font-size: 0.85rem;
    }
}


.actions-dropdown {
    position: absolute;
    background: linear-gradient(160deg, #0a2612 0%, #051308 100%);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    min-width: 160px;
    display: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.actions-dropdown.show {
    display: block !important;
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.actions-dropdown ul {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.actions-dropdown li {
    padding: 0;
}

.actions-dropdown button {
    width: 100%;
    padding: 10px 15px;
    background: none;
    border: none;
    color: #c3ffca;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.actions-dropdown button:hover {
    background: rgba(110, 255, 132, 0.1);
    color: #6eff84;
}

.actions-dropdown button.danger {
    color: #fca5a5;
}

.actions-dropdown button.danger:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #fecaca;
}

.actions-dropdown svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
    
    margin-bottom: 40px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.affiliate-card,
.earnings-card {
    padding-top: 32px;
    
}

.affiliate-code-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 255, 132, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 15px;
}

.affiliate-code-input {
    background: transparent;
    border: none;
    color: #6eff84;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    outline: none;
}

.copy-btn-absolute {
    margin-left: 10px;
}

.earnings-display {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(110, 255, 132, 0.05) 0%, rgba(110, 255, 132, 0) 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.earnings-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #6eff84;
    text-shadow: 0 0 20px rgba(110, 255, 132, 0.3);
    margin-top: 10px;
}


.tooltip-container {
    position: relative;
    cursor: help;
    
    font-size: 16px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 6px 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: #6eff84;
    color: #030a05;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    visibility: hidden;
    border: 1px solid #4ade80;
}

.tooltip::after {
    
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #6eff84 transparent transparent transparent;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.stat-icon {
    width: 26px;
    height: 26px;
    stroke: #6eff84;
    fill: none;
    stroke-width: 2.2;
    transition: all 0.2s ease;
    filter: drop-shadow(0 0 6px rgba(110, 255, 132, 0.4));
}

.tooltip-container:hover .stat-icon {
    stroke: #c3ffca;
    filter: drop-shadow(0 0 8px rgba(110, 255, 132, 0.8));
}


.resource-stats-container,
.stat-item {
    overflow: visible !important;
    
}

.icon-sphere {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 197, 94, 0.15);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.05);
    
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    
    transform: translateY(-4px);
    
}

.tooltip-container:hover .icon-sphere {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    border-color: #6eff84;
    transform: scale(1.1) translateY(-6px);
    
}

.stat-item {
    display: flex;
    align-items: center;
    
}


.stat-item .tooltip-container {
    margin-right: 12px;
    
}


@media (max-width: 768px) {
    .resource-stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .stat-item {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.03);
        padding: 12px 16px;
        border-radius: 12px;
        margin-bottom: 0 !important;
    }

    .tooltip-container {
        display: flex;
        align-items: center;
        margin-right: 0;
    }

    .tooltip-container .tooltip {
        display: inline-block !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        color: #8fb896;
        box-shadow: none;
        padding: 0;
        border: none;
        font-weight: 600;
        pointer-events: auto;
        white-space: normal;
        margin-right: 0;
        font-size: 0.95rem;
    }

    .tooltip-container .tooltip::after {
        display: none;
    }

    .icon-sphere {
        display: none !important;
    }

    .resource-stats-container .stat-value {
        font-size: 1rem;
        margin-bottom: 0;
        text-align: right;
    }

    .resource-stats-container .progress-bar {
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;
    }
}