* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #050812;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    zoom: 0.70;
    position: relative;
    overflow-x: hidden;
}

/* Ensure content is above stars */
.navbar,
.page-wrapper,
.page-content,
.container,
.footer {
    position: relative;
    z-index: 1;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    min-height: 100vh; /* Always at least full viewport height */
    padding-top: 120px; /* More space from top for Configure page */
    padding-bottom: 60px; /* More space before footer */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 40, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-link.active {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

.nav-discord {
    background: #5865F2;
    color: white;
    margin-left: 8px;
}

.nav-discord:hover {
    background: #4752C4;
}

.nav-discord svg {
    width: 18px;
    height: 18px;
}

.container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 30px 30px 0 30px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    margin-top: 40px; /* Add some top spacing */
    margin-bottom: 40px;
}

h1 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
}

.config-section {
    margin-bottom: 20px;
}

.config-section:last-of-type {
    margin-bottom: 5px;
}

label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

select, input[type="range"] {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: rgba(255, 255, 255, 0.9);
    padding-right: 40px;
}

select:hover, select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: white;
    outline: none;
}

input[type="range"] {
    padding: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

/* Webkit (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    margin-top: -6px;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #f0f0f0;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Firefox */
input[type="range"]::-moz-range-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

input[type="range"]::-moz-range-thumb:hover {
    background: #f0f0f0;
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Remove default progress fill colors */
input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.3) !important;
}

input[type="range"]::-moz-range-progress {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    height: 6px;
}

.value-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.value-display span {
    color: white;
    font-weight: 600;
}

.value-display .current-value {
    color: white;
    font-size: 18px;
}

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.summary {
    background: transparent;
    color: white;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    margin-top: 5px;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary h2 {
    margin: 0;
    font-size: 20px;
}

.price-loading {
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-storage {
    border-bottom: none;
}

.features-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.feature-item {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
}

.feature-item span {
    display: flex;
    align-items: center;
}

.pricing-breakdown {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.recurring-section {
    margin-bottom: 20px;
}

.recurring-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.recurring-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
}

.total-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.total-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.total-price {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .total-price {
        font-size: 28px;
    }
    
    .continue-button {
        font-size: 16px;
        padding: 14px;
    }
}

.continue-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.continue-button:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.continue-arrow {
    margin-right: 8px;
    font-size: 20px;
}

.cpu-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 14px;
    color: white;
}

.cpu-info strong {
    color: white;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.footer {
    background: rgba(20, 20, 40, 0.9);
    color: white;
    padding: 40px 0 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 0.5fr 0.7fr 1.2fr;
    column-gap: 60px;
    padding-bottom: 30px;
}

/* Reduce spacing between Pages and the next column */
.footer-section:nth-child(2) {
    margin-right: -150px;
}

.footer-section:nth-child(3) {
    padding-left: 10px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    max-width: 350px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 125vh; /* 125% of viewport to push footer further below */
    padding: 80px 20px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 20, 40, 0.8);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.4);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.6);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.4) rgba(20, 20, 40, 0.8);
}

/* Account Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(102, 126, 234, 0.5);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-dropdown-button:hover {
    background: rgba(102, 126, 234, 0.65);
}

.nav-dropdown-button.active {
    background: rgba(102, 126, 234, 0.7);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 20, 40, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-dropdown-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.nav-dropdown-item:hover {
    background: rgba(102, 126, 234, 0.2);
    color: white;
}

.nav-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

/* Register Button Styling */
.nav-register {
    background: rgba(34, 197, 94, 0.3);
    color: white;
    margin-left: 8px;
}

.nav-register:hover {
    background: rgba(34, 197, 94, 0.4);
}

.nav-register.active {
    background: rgba(34, 197, 94, 0.5);
}

/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    /* Make navbar more mobile-friendly */
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 4px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    /* Dropdown for mobile */
    .nav-dropdown-menu {
        min-width: 220px;
        right: -10px;
        background: rgba(20, 20, 40, 0.98);
    }
    
    .nav-dropdown-item {
        padding: 14px 18px;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .nav-dropdown-item svg {
        width: 20px;
        height: 20px;
    }
    
    /* Ensure dropdown button is clickable */
    .nav-dropdown-button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Click/Touch support for dropdown */
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Register Page Styles */
.register-container {
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 60px 50px;
    max-width: 550px;
    width: 100%;
    text-align: center;
}

.register-header {
    margin-bottom: 50px;
}

.register-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.register-header h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.register-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.register-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.auth-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.discord-button {
    border-color: rgba(88, 101, 242, 0.4);
}

.discord-button:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.6);
}

.auth-icon {
    width: 24px;
    height: 24px;
}

.terms-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.terms-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .register-container {
        padding: 50px 35px;
        margin: 20px;
        max-width: 90%;
    }
    
    .register-logo {
        width: 64px;
        height: 64px;
    }
    
    .register-header h1 {
        font-size: 36px;
    }
    
    .register-subtitle {
        font-size: 16px;
    }
    
    .auth-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .terms-text {
        font-size: 12px;
    }
}


/* ============================================
   PLANS PAGE STYLES
   ============================================ */

.plans-page {
    width: 100%;
    min-height: 125vh;
    padding: 60px 20px 150px;
}

.plans-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Sidebar */
.plans-sidebar {
    flex: 0 0 250px;
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.category-buttons,
.performance-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-button {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
}

.filter-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-button.active {
    background: rgba(102, 126, 234, 0.6);
    color: white;
    border-color: rgba(102, 126, 234, 0.8);
    font-weight: 600;
}

/* Main Content */
.plans-main {
    flex: 1;
}

.plans-header {
    text-align: center;
    margin-bottom: 50px;
}

.plans-header h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plans-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.no-plans {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    padding: 60px 20px;
}

/* Plan Card */
.plan-card {
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-memory {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.plan-price {
    color: rgba(102, 126, 234, 1);
    font-size: 24px;
    font-weight: 600;
}

.plan-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 24px;
    min-height: 24px;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
    flex: 1;
}

.plan-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.plan-spec svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.plan-button:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-container {
        flex-direction: column;
    }
    
    .plans-sidebar {
        position: static;
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .category-buttons,
    .performance-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .filter-button {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .plans-page {
        padding: 40px 15px 80px;
    }
    
    .plans-header h1 {
        font-size: 32px;
    }
    
    .plans-header p {
        font-size: 16px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 24px;
    }
    
    .plan-memory {
        font-size: 28px;
    }
    
    .plan-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .plans-sidebar {
        padding: 20px;
    }
    
    .filter-button {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Plan Price with Discount Styling */
.plan-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.plan-price-original {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.plan-price-discounted {
    color: rgba(102, 126, 234, 1);
    font-size: 24px;
    font-weight: 600;
}

/* Custom Plan Card Styling */
.plan-card-custom {
    border: 2px solid rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
}

.plan-card-custom:hover {
    border-color: rgba(102, 126, 234, 0.8);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(102, 126, 234, 0.08) 100%);
}

.plan-custom-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: -8px 0 16px 0;
    line-height: 1.4;
}

/* Dedicated Server CPU Display */
.plan-cpu-display {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    margin: -8px 0 8px 0;
}
