:root {
    --primary: #FF8B94; /* Soft Coral */
    --primary-hover: #FF727D;
    --secondary: #A8E6CF; /* Soft Mint */
    --bg: #FFFCF9; /* Creamy White */
    --text: #333333;
    --text-light: #666666;
    --card-bg: #FFFFFF;
    --border: #dddddd;
    --shadow: 0 4px 20px rgba(255, 139, 148, 0.1);
    --shadow-hover: 0 8px 30px rgba(255, 139, 148, 0.2);
    --font-main: 'Quicksand', 'Noto Sans SC', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo span {
    color: var(--text);
    font-weight: 400;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--card-bg);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.btn-text-short {
    display: none;
}

.contact-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Main Content */
.main-content {
    padding: 40px 0 80px;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.hero-section p {
    color: var(--text-light);
    font-size: 16px;
}

/* Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: #555;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(255, 139, 148, 0.2);
}

/* Pricing Table - Excel Style */
.table-responsive-wrapper {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
    border: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-size: 14px;
    color: #333;
}

.pricing-table thead {
    background: #f5f5f5;
    border-bottom: 2px solid #ccc;
}

.pricing-table th {
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: #333;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.pricing-table td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--border);
    color: #333;
}

.excel-header-row {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #555;
}

.excel-header-row td {
    border-bottom: 2px solid #ccc;
    padding-top: 15px;
}

.pricing-row:hover {
    background-color: #f0f8ff;
}

/* Column Density */
.col-region { width: 10%; font-weight: 600; }
.col-cpu { width: 20%; font-weight: 600; text-align: left; padding-left: 15px; }
.col-ram { width: 10%; }
.col-disk { width: 15%; }
.col-bandwidth { width: 10%; }
.col-ip { width: 10%; }
.col-price { width: 10%; font-weight: 700; color: #d32f2f; }
.col-desc { width: 15%; color: #666; font-size: 13px; }

.cell-label { display: none; }

/* Responsive */
@media (max-width: 900px) {
    .site-header .container {
        flex-direction: row;
        align-items: center;
    }
    
    .logo { font-size: 20px; }
    .contact-btn { padding: 8px 16px; font-size: 14px; }
    .btn-text-full { display: none; }
    .btn-text-short { display: inline; }

    .pricing-table { min-width: 100%; }
    .pricing-table thead { display: none; }
    
    .pricing-row {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--border);
        background: #fff;
        margin-bottom: 10px;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .excel-header-row { display: none; }

    .pricing-table td {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
        border: none;
        width: 100%;
        text-align: right;
    }
    
    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #666;
        text-align: left;
        width: 40%;
        flex-shrink: 0;
    }

    .col-region, .col-cpu {
        text-align: right;
        padding-left: 0;
    }
    
    .table-responsive-wrapper {
        border: none;
        box-shadow: none;
        background: transparent;
    }
}

.loading-state, .empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 14px;
}

.site-footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-light);
    font-size: 14px;
    border-top: 1px solid var(--border);
}