


.alert-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #0a2a10, #051308);
    border: 1px solid rgba(195, 255, 202, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.alert-toast.show {
    transform: translateX(0);
}

.alert-toast--success {
    border-left: 4px solid var(--color-success, #28a745);
}

.alert-toast--danger {
    border-left: 4px solid var(--color-error, #dc3545);
}

.alert-toast-close {
    background: none;
    border: none;
    color: var(--color-text-muted, #8fb896);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}


[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: linear-gradient(135deg, #171d23 0%, #0d1115 100%);
    color: #e2f1e8;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 6px;
    border: 1px solid rgba(195, 255, 202, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #171d23 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

[data-tooltip]:hover::before {
    transform: translateX(-50%);
}


.form-group {
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted, #c3ffca);
    margin-bottom: 10px;
    opacity: 0.8;
}

.form-group label.required::after {
    content: " *";
    color: var(--color-error, #ef4444);
}

.form-control,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select:not(.mc-dropdown-trigger),
textarea {
    width: 100%;
    padding: 14px 16px;
    background: #09150d;
    border: 1px solid #1ca042;
    border-radius: 12px;
    color: #e2f1e8;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.2px;
}


select:not(.mc-dropdown-trigger) {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236eff84' 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") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
    padding-right: 48px !important;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--color-bg-elevated, #071210);
    color: var(--color-text, #d4ffe0);
    padding: 12px;
}

select.form-control:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}


.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: var(--color-bg-card, rgba(29, 128, 56, 0.05));
    border: 2px solid var(--border-subtle, rgba(195, 255, 202, 0.1));
    border-radius: var(--radius-lg, 20px);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(110, 255, 132, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card:hover {
    border-color: var(--border-hover, rgba(110, 255, 132, 0.3));
    transform: translateY(-8px);
    background: rgba(29, 128, 56, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.selected {
    border-color: var(--color-primary, #6eff84);
    background: linear-gradient(145deg, rgba(29, 128, 56, 0.15) 0%, rgba(10, 30, 20, 0.6) 100%);
    box-shadow: 0 0 30px rgba(110, 255, 132, 0.15), inset 0 0 20px rgba(110, 255, 132, 0.05);
}


.plan-card.recommended-plan {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.recommended-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--color-primary), #22c55e);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    z-index: 2;
    white-space: nowrap;
}

.plan-card .plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-bright, #e1ffe6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.25px;
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary, #6eff84);
    margin-bottom: 12px;
}

.plan-card .plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.6;
    color: var(--color-text-muted, #c3ffca);
}

.plan-card .plan-specs {
    list-style: none;
    padding: 0;
    margin: 0 auto 15px;
    text-align: left;
    width: fit-content;
}

.plan-card .plan-specs li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted, #c3ffca);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.05);
}

.plan-card .plan-specs li:last-child {
    border-bottom: none;
}

.plan-card .plan-specs li svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary, #6eff84);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.select-plan-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: auto;
}

.selection-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(195, 255, 202, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plan-card.selected .selection-indicator {
    background: var(--color-primary, #6eff84);
    border-color: var(--color-primary, #6eff84);
}

.selection-indicator svg,
.selection-indicator i {
    width: 14px;
    height: 14px;
    stroke: var(--color-bg, #051308);
    color: var(--color-bg, #051308) !important;
    stroke-width: 4;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    filter: none !important;
}

.plan-card.selected .selection-indicator svg,
.plan-card.selected .selection-indicator i {
    opacity: 1;
    transform: scale(1);
}


.config-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

@media (max-width: 1100px) {
    .config-layout {
        grid-template-columns: 1fr;
    }
}

.config-panel,
.config-section,
.config-main {
    background: var(--color-bg-card, #0a180d);
    border: 1px solid var(--border-subtle, rgba(34, 197, 94, 0.2));
    border-radius: var(--radius-lg, 24px);
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.config-section:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

    .config-panel,
    .config-section,
    .config-main {
        padding: 20px;
        border-radius: 16px;
    }
}

.config-section h3,
.config-group-title,
.summary-panel h3,
.order-summary-sidebar h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-bright, #fff);
    margin-bottom: 24px;
}

.config-section h3 svg,
.config-group-title svg,
.summary-panel h3 svg,
.order-summary-sidebar h3 svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    color: var(--color-primary, #22c55e);
    stroke: var(--color-primary, #22c55e);
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.summary-panel,
.order-summary-sidebar {
    background: #0a180d !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.summary-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.summary-icon-box svg {
    width: 30px;
    height: 30px;
    color: #22c55e;
}


.addons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(195, 255, 202, 0.05);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 12px;
}

.addon-item:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.addon-item.selected {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.4);
}

.addon-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.addon-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(195, 255, 202, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.addon-item.selected .addon-checkbox {
    background: var(--color-primary, #6eff84);
    border-color: var(--color-primary, #6eff84);
}

.addon-checkbox svg,
.addon-checkbox i {
    width: 12px;
    height: 12px;
    stroke: var(--color-bg, #051308);
    color: var(--color-bg, #051308) !important;
    stroke-width: 4;
    font-size: 12px;
    opacity: 0;
    filter: none !important;
}

.addon-item.selected .addon-checkbox svg,
.addon-item.selected .addon-checkbox i {
    opacity: 1;
}

.addon-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-bright, #e1ffe6);
}

.addon-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary, #6eff84);
    background: rgba(110, 255, 132, 0.1);
    padding: 4px 12px;
    border-radius: 10px;
}


.summary-list {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    gap: 12px;
    border-bottom: 1px solid rgba(195, 255, 202, 0.05);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--color-text-muted, #c3ffca);
    opacity: 0.7;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-bright, #e1ffe6);
    text-align: right;
    max-width: 55%;
    word-break: break-word;
    line-height: 1.4;
}

.summary-total-container {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(110, 255, 132, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 25px;
    position: relative;
}

.summary-total-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-bright, #e1ffe6);
    opacity: 0.9;
}

.summary-total-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    color: var(--color-primary, #6eff84);
    text-shadow: 0 0 15px rgba(110, 255, 132, 0.3);
}

.summary-total-currency {
    font-size: 2.22rem;
    font-weight: 800;
    margin-right: 4px;
    line-height: 1;
}

.summary-total-value {
    font-size: 2.22rem;
    font-weight: 900;
    line-height: 1;
}

.summary-total-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-muted, #c3ffca);
    margin-left: 6px;
    opacity: 0.8;
}

.summary-total {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.summary-total .total-label {
    display: block;
    font-size: 0.9rem;
    color: #a0bca4;
    margin-bottom: 4px;
}

.summary-total .total-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #22c55e;
}


.spark-particle {
    position: absolute;
    pointer-events: none;
    background: var(--color-primary, #6eff84);
    border-radius: 50%;
    z-index: 100;
    box-shadow: 0 0 10px var(--color-primary, #6eff84);
}

@keyframes spark-fly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

.btn-checkout {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-checkout::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.btn-checkout:hover::after {
    left: 100%;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(34, 197, 94, 0.5);
    filter: brightness(1.1);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.checkout-note {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-text-muted, #c3ffca);
    font-size: 0.85rem;
    opacity: 0.8;
}

.checkout-note svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.config-header {
    background: #0a180d !important;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

.config-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a0a0a0);
    
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.config-header p {
    color: #86a388;
    font-size: 1.1rem;
}

.profile-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.profile-section-spacer {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid var(--border-subtle, rgba(195, 255, 202, 0.12));
    position: relative;
}

.profile-section-spacer::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-primary, #22c55e);
    box-shadow: 0 0 10px var(--color-primary, #22c55e);
}

.tfa-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.two-factor-section h4 {
    margin-top: 0;
    margin-bottom: var(--space-md, 16px);
    color: var(--color-text-bright, #fff);
    font-size: 1.125rem;
}

.two-factor-section .btn {
    margin-top: 16px;
}

.tfa-status.enabled {
    border-left: 3px solid #28a745;
}

.tfa-status.disabled {
    border-left: 3px solid #6c757d;
}

.tfa-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tfa-status.enabled .tfa-status-indicator {
    background: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.tfa-status.disabled .tfa-status-indicator {
    background: #6c757d;
}


.mc-dropdown {
    --mc-border: #1ca042;
    --mc-text: #e2f1e8;
    --mc-hover-bg: #0d2314;
    --mc-hover-text: #ffffff;
    --mc-panel: #09150d;
    --mc-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    position: relative;
    width: 100%;
    margin-bottom: 20px;
}


.mc-dropdown-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    margin-left: 4px;
}

.mc-dropdown-label-group svg {
    width: 20px;
    height: 20px;
    color: var(--mc-border);
}

.mc-dropdown-label-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.025em;
    margin: 0;
}


.mc-dropdown-trigger {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--mc-panel);
    border: 1px solid var(--mc-border);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 30;
    color: var(--mc-text);
    text-align: left;
}

.mc-dropdown-trigger:focus {
    outline: none;
}

.mc-dropdown-trigger .selected-content {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center;
    overflow: hidden;
    min-width: 0;
}

.mc-dropdown-trigger .icon-wrapper {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--mc-border);
}

.mc-dropdown-trigger .item-text {
    flex: 1 1 auto;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.mc-dropdown-trigger .chevron-icon {
    width: 20px;
    height: 20px;
    color: var(--mc-border);
    transition: transform 0.5s var(--mc-spring);
    margin-left: 16px;
}


.mc-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 40;
    background: var(--mc-panel);
    border: 1px solid rgba(28, 160, 66, 0.5);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: all 0.25s var(--mc-spring);
}

.mc-dropdown-list {
    padding: 6px 0;
    max-height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    list-style: none;
}


.mc-dropdown.dropdown-open {
    z-index: 50;
}

.mc-dropdown.dropdown-open .mc-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mc-dropdown.dropdown-open .chevron-icon {
    transform: rotate(180deg);
}

.mc-dropdown.dropdown-open .mc-dropdown-trigger {
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.15);
}


.mc-dropdown-item {
    cursor: pointer;
    padding: 12px 16px;
    
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    color: var(--mc-text);
    transition: all 0.2s ease;
    opacity: 0;
    overflow: hidden;
    min-width: 0;
    white-space: nowrap;
}

.mc-dropdown.dropdown-open .mc-dropdown-item {
    animation: mcSlideUpFade 0.2s var(--mc-spring) forwards;
}

.mc-dropdown-item:hover,
.mc-dropdown-item:focus {
    background-color: var(--mc-hover-bg, rgba(255, 255, 255, 0.08));
    color: #ffffff;
    
}

.mc-dropdown-item.active-item {
    background-color: rgba(34, 197, 94, 0.15);
    
    color: #22c55e;
    border-left: 3px solid #22c55e;
}

.mc-dropdown-item .icon-wrapper {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--mc-border);
    transition: color 0.15s;
}

.mc-dropdown-item:hover .icon-wrapper {
    color: #ffffff;
}

.mc-dropdown-item.active-item .icon-wrapper {
    color: #22c55e;
}

.mc-dropdown-item .item-text {
    flex: 1 1 auto;
    overflow: visible;
    text-overflow: ellipsis;
    min-width: 0;
    line-height: normal;
}


.mc-dropdown-item * {
    pointer-events: none;
}


.mc-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.mc-dropdown-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.mc-dropdown-list::-webkit-scrollbar-thumb {
    background: var(--mc-border);
    border-radius: 8px;
}


@keyframes mcSlideUpFade {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mcBoxPulse {
    0% {
        border-color: #22c55e;
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.6), inset 0 0 15px rgba(34, 197, 94, 0.3);
    }

    100% {
        border-color: var(--mc-border);
        box-shadow: 0 0 0px transparent, inset 0 0 0px transparent;
    }
}

@keyframes mcTextNeonGlow {
    0% {
        color: #ffffff;
        text-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e, 0 0 30px #22c55e;
        transform: scale(1.02);
    }

    100% {
        color: var(--mc-text);
        text-shadow: 0 0 0px transparent;
        transform: scale(1);
    }
}

@keyframes mcIconNeonGlow {
    0% {
        color: #22c55e;
        filter: drop-shadow(0 0 8px #22c55e) drop-shadow(0 0 15px #22c55e);
        transform: scale(1.2);
    }

    100% {
        color: var(--mc-border);
        filter: drop-shadow(0 0 0px transparent);
        transform: scale(1);
    }
}


.trigger-glow-active {
    animation: mcBoxPulse 0.5s ease-out forwards !important;
}

.trigger-glow-active .item-text {
    animation: mcTextNeonGlow 0.5s ease-out forwards !important;
    display: inline-block;
}

.trigger-glow-active .icon-wrapper {
    animation: mcIconNeonGlow 0.5s ease-out forwards !important;
}


.pagination-section {
    margin: 60px 0 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: rgba(5, 19, 8, 0.5);
    border: 1px solid rgba(110, 255, 132, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, rgba(29, 128, 56, 0.2) 0%, rgba(10, 30, 15, 0.6) 100%);
    border: 2px solid rgba(110, 255, 132, 0.35);
    border-radius: 14px;
    color: #c3ffca;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(110, 255, 132, 0.08);
}


.nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(110, 255, 132, 0.07),
            transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.nav-arrow:not(.disabled):hover::before {
    left: 100%;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.nav-arrow span {
    line-height: 1;
}


.nav-arrow:not(.disabled):hover {
    background: linear-gradient(135deg, #1d8038, #22c55e);
    border-color: #6eff84;
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.35),
        0 0 20px rgba(110, 255, 132, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


.nav-arrow:not(.disabled):active {
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition-duration: 0.1s;
}


.nav-arrow.prev-page:hover svg {
    transform: translateX(-4px);
}

.nav-arrow.next-page:hover svg {
    transform: translateX(4px);
}


.nav-arrow.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}


.page-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-indicator .current-idx {
    color: #22c55e;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.page-indicator .divider {
    opacity: 0.3;
}

.page-indicator .total-idx {
    opacity: 0.5;
}


@media (max-width: 600px) {
    .pagination-box {
        gap: 10px;
        padding: 10px 14px;
    }

    .nav-arrow span {
        display: none;
    }

    .nav-arrow {
        padding: 12px 18px;
    }
}