/* Price List Section Styles */
.price-list-section {
    background: linear-gradient(135deg, rgba(255, 224, 236, 0.8) 0%, rgba(255, 192, 217, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    min-height: 100vh;
    position: relative;
}

.price-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    color: #ff1493;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.2);
    position: relative;
    z-index: 1;
}

/* Game Selector */
.game-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.game-tab {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #ff1493;
    border: 2px solid rgba(255, 20, 147, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.game-tab:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.game-tab.active {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* Price Table Container */
.price-table-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

.table-header {
    margin-bottom: 1.5rem;
}

.table-header h3 {
    color: #ff1493;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* Table Search */
.table-search {
    margin-bottom: 1.5rem;
}

.table-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.table-search input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.table-search input::placeholder {
    color: #999;
}

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.price-table thead {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
}

.price-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.price-table th:first-child {
    border-radius: 15px 0 0 0;
}

.price-table th:last-child {
    border-radius: 0 15px 0 0;
}

.price-table tbody tr {
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.price-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.05) 100%);
    transform: scale(1.01);
}

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

.price-table td {
    padding: 1rem;
    font-size: 0.9rem;
    color: #333;
}

.price-table td:first-child {
    font-weight: 600;
    color: #ff1493;
}

.price-table td:nth-child(3),
.price-table td:nth-child(4),
.price-table td:nth-child(5),
.price-table td:nth-child(6) {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.price-table td:last-child {
    font-weight: 600;
}

.status-ready {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-not-ready {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .game-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .price-table-container {
        padding: 1rem;
    }

    .table-header h3 {
        font-size: 1.4rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .table-wrapper {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .price-list-section {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .game-selector {
        gap: 0.5rem;
    }

    .game-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
}
