/* Price Page Specifics */
.price-hero {
    background: url('../assets/price_hero.png') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 1) 100%);
}

.price-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
    /* Blue glow */
}

/* Price Table */
.price-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    padding: 20px 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.price-row:hover {
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.95));
    border-color: #0088cc;
    transform: scale(1.02) translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.2);
    z-index: 10;
}

.price-col {
    display: flex;
    align-items: center;
}

/* Tier Column */
.tier-col {
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.tier-icon {
    font-size: 1.8rem;
    width: 35px;
    text-align: center;
}

/* Tier Specific Colors for Icons */
.unranked {
    color: #a0a0a0;
}

.iron {
    color: #5c5c5c;
}

.bronze {
    color: #cd7f32;
}

.silver {
    color: #c0c0c0;
}

.gold {
    color: #ffd700;
}

.platinum {
    color: #00ced1;
}

.emerald {
    color: #50c878;
}

.diamond {
    color: #b9f2ff;
    text-shadow: 0 0 10px rgba(185, 242, 255, 0.6);
}

.master {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

/* Info Column */
.info-col {
    color: var(--text-muted);
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

/* Cost Column */
.cost-col {
    justify-content: flex-end;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

/* Responsive Price Table */
@media (max-width: 768px) {
    .price-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .price-col {
        justify-content: center;
    }

    .cost-col {
        align-items: center;
        color: #0088cc;
    }

    .price-hero {
        height: 50vh;
    }
}