:root, [data-theme="light"] {
    --bg-color: #000000;
    --bg-color-alt: #f8f9fa;
    --text-color-black: #080808;
    --text-color: white;
    --text-color-muted: #cfcfcf;
    --primary-color: #000000;
    --primary-color-hover: #33363f;
    --secondary-color: #6c757d;
    --accent-color: #000000;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
}

.primary-button {
    color: #ffffff !important;
}

.secondary-button:hover,
.secondary-button:focus {
    color: #ffffff !important;
}

.button-text {
    color: #ffffff !important;
}

.modal-container {
    border: 1px solid #ffffff !important;
}

.logo-login img {
    width: 100px;
}

.logo-pc-menu img {
    width: 50%;
}

.logo-mobile-header img {
    width: 40%;
}

.plans-container {
    flex-wrap: wrap;
}

.plan {
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.plan::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.505), rgba(0, 0, 0, 0));
    z-index: 0;
}

@media (max-width: 980px) {
    .plan {
        width: 45%;
    }
}

.plan .plan-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 1;
    color: var(--text-color) !important;
}

.plan .plan-header .material-symbols-rounded {
    font-size: 145px;
}

.plan .plan-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    z-index: 1;
}

.plan .plan-content span, .plan .plan-content h3 {
    color: var(--text-color) !important;
}

.plan .plan-content span {
    opacity: 0.8;
}