:root {
    --vps-primary: #3B82F6;
    --vps-primary-light: #60A5FA;
    --vps-primary-dark: #2563EB;
    --vps-primary-darker: #1D4ED8;
    --vps-bg-dark: #0a0e1a;
    --vps-bg-darker: #0f172a;
    --vps-bg-card: rgba(15, 23, 42, 0.8);
    --linux-green: #10b981;
    --linux-green-dark: #059669;
}

.vps-table-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #f1f5f8 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.vps-table-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-hero-modern {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vps-primary);
    margin-bottom: 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #451a03;
    padding: 20px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.promo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.promo-text {
    flex: 1;
}

.promo-text strong {
    color: #7c2d12;
    font-size: 18px;
}

.hero-title-modern {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--vps-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-description-modern {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 40px;
}

.bgp-section {
    background: linear-gradient(135deg, var(--linux-green) 0%, var(--linux-green-dark) 100%);
    color: white;
    padding: 24px 30px;
    border-radius: 16px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.bgp-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.bgp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.bgp-content {
    position: relative;
    z-index: 1;
}

.bgp-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bgp-content p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
}

.bgp-flags {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.bgp-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.feature-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--vps-primary);
}

.feature-text {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.filter-tab:hover {
    border-color: var(--vps-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--vps-primary) 0%, var(--vps-primary-dark) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.section-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    padding: 16px 24px;
    margin: 30px 0 20px;
    border-radius: 12px;
    border-left: 4px solid var(--vps-primary);
}

.section-header.linux {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-left-color: var(--linux-green);
}

.section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vps-comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.08);
    margin-bottom: 30px;
}

.vps-table {
    width: 100%;
    border-collapse: collapse;
}

.vps-table thead {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.vps-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--vps-primary-dark);
}

.vps-table tbody tr {
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.vps-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.02);
    transform: scale(1.01);
}

.vps-table tbody tr:last-child {
    border-bottom: none;
}

.vps-table td {
    padding: 20px;
    vertical-align: middle;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.os-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.os-icon.linux {
    background: linear-gradient(135deg, var(--linux-green) 0%, var(--linux-green-dark) 100%);
}

.os-icon.windows {
    background: linear-gradient(135deg, var(--vps-primary) 0%, var(--vps-primary-dark) 100%);
}

.product-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.product-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vps-primary);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

.spec-icon {
    color: var(--vps-primary-light);
    font-size: 12px;
}

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

.flag-icon-inline {
    width: 24px;
    height: 18px;
}

.bandwidth-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bandwidth-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.bandwidth-speed {
    font-size: 13px;
    color: #6b7280;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.stock-indicator.available {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stock-indicator.limited {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--vps-primary);
}

.price-period {
    font-size: 14px;
    color: #6b7280;
}

.price-usd {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--vps-primary) 0%, var(--vps-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.datacenters-showcase {
    margin: 60px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
    border-radius: 20px;
}

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

.datacenters-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--vps-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.datacenters-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.datacenters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.datacenter-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.datacenter-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.datacenter-location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.datacenter-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.datacenter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.datacenter-card-modern:hover .datacenter-img {
    transform: scale(1.05);
}

.datacenter-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    display: flex;
    align-items: flex-end;
}

.datacenter-name {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.datacenter-info {
    padding: 24px;
}

.datacenter-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.datacenter-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.datacenter-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--vps-primary-dark);
}

.spec-badge i {
    font-size: 12px;
    color: var(--vps-primary);
}

.datacenter-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
}

.feature-check i {
    color: var(--linux-green);
    font-size: 12px;
}

.datacenters-footer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

.footer-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item i {
    font-size: 28px;
    color: var(--vps-primary);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.looking-glass-section {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.looking-glass-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-ips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.test-ip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.test-ip-label {
    font-weight: 600;
    color: #4b5563;
    font-size: 14px;
}

.test-ip-value {
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--vps-primary);
    font-size: 14px;
}

.tax-info-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    color: #6b7280;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .vps-comparison-table {
        overflow-x: auto;
    }
    .vps-table {
        min-width: 900px;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 32px;
    }
    .filter-tabs {
        gap: 8px;
    }
    .filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .bgp-section,
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    .datacenters-grid {
        grid-template-columns: 1fr;
    }
}