/* Price Page Specifics */
.price-hero {
    background-image: url('../assets/darkteam_hero_bg.png') !important;
}

/* Price Table */
.price-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px 35px;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
}

.price-row:hover {
    background: #ffffff;
    border-color: var(--brand-accent);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 40px rgba(17, 48, 140, 0.12), 0 0 20px rgba(242, 205, 92, 0.1);
    z-index: 10;
}

.price-col {
    display: flex;
    align-items: center;
}

/* Tier Column */
.tier-col {
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--n-800);
}

.tier-icon {
    font-size: 2rem;
    width: 45px;
    text-align: center;
}

/* Tier Specific Colors for Icons */
.unranked {
    color: var(--n-400);
}

.iron {
    color: var(--tier-iron);
}

.bronze {
    color: var(--tier-bronze);
}

.silver {
    color: var(--tier-silver);
}

.gold {
    color: var(--tier-gold);
}

.platinum {
    color: var(--tier-platinum);
}

.emerald {
    color: var(--tier-emerald);
}

.diamond {
    color: var(--tier-diamond);
    filter: drop-shadow(0 0 5px rgba(77, 166, 255, 0.3));
}

.master {
    color: var(--tier-master);
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.3));
}

/* 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: 800;
    font-size: 1.25rem;
    color: var(--brand-primary);
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.cost-col div {
    color: var(--brand-primary);
    padding: 4px 12px;
    background: rgba(17, 48, 140, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.price-row:hover .cost-col div {
    background: var(--brand-accent);
    color: var(--brand-primary);
    box-shadow: 0 5px 15px rgba(242, 205, 92, 0.4);
}

/* Responsive Price Table */
@media (max-width: 768px) {
    .price-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding: 25px 20px;
    }

    .price-col {
        justify-content: center;
        font-size: 0.95rem;
    }

    .tier-col {
        font-size: 1.1rem;
    }

    .cost-col {
        align-items: center;
        margin-top: 5px;
    }

    .cost-col div {
        font-size: 1.15rem;
        padding: 8px 20px;
    }

    .price-hero {
        height: 45vh;
        min-height: 300px;
    }
}