/* ============================================
   Booster Profile Page - Modern Design
   ============================================ */

.booster-profile-page {
    background: var(--background-dark-grey, #0a0a0a);
    min-height: 100vh;
    position: relative;
    padding: 40px 0 80px;
}

.booster-profile-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 0;
    pointer-events: none;
}

.booster-profile-page__bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 199, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 199, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.booster-profile-page__bg-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.08) 0%, transparent 70%);
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.breadcrumbs-modern__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs-modern__link:hover {
    color: #FFC700;
}

.breadcrumbs-modern svg {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.breadcrumbs-modern__current {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* ============================================
   Profile Header
   ============================================ */
.booster-header {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.booster-header__main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.booster-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 199, 0, 0.2);
}

.booster-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booster-avatar__status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #4ade80;
    border: 3px solid var(--background-dark-grey, #0a0a0a);
    border-radius: 50%;
    animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.booster-header__info {
    flex: 1;
}

.booster-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #FFC700;
    margin-bottom: 12px;
}

.booster-header__badge svg {
    width: 16px;
    height: 16px;
}

.booster-header__name {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.booster-header__bio {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 600px;
}

.booster-header__stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.booster-quick-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.booster-quick-stat svg {
    color: #FFC700;
}

.booster-quick-stat--online {
    color: #4ade80;
}

.booster-status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   Stats Grid
   ============================================ */
.booster-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.booster-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.booster-stat-card:hover {
    background: rgba(255, 199, 0, 0.03);
    border-color: rgba(255, 199, 0, 0.2);
    transform: translateY(-2px);
}

.booster-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.booster-stat-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booster-stat-card__icon--number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 199, 0, 0.1);
    color: #FFC700;
    font-size: 20px;
    font-weight: 700;
}

.booster-stat-card__icon--success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.booster-stat-card__label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.booster-stat-card__value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   Section Title
   ============================================ */
.booster-section__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ============================================
   Reviews Section
   ============================================ */
.booster-reviews {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.booster-reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.booster-reviews__count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.review-card-modern {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.review-card-modern:hover {
    background: rgba(255, 199, 0, 0.03);
    border-color: rgba(255, 199, 0, 0.15);
}

.review-card-modern__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-card-modern__service {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.review-card-modern__service svg {
    color: #FFC700;
}

.review-card-modern__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #FFC700;
}

.review-card-modern__rating svg {
    width: 20px;
    height: 20px;
}

.review-card-modern__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 16px;
}

.review-card-modern__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Orders Section
   ============================================ */
.booster-orders {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.booster-orders__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.booster-orders__count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.orders-list {
    display: grid;
    gap: 16px;
}

.order-card-modern {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.order-card-modern:hover {
    background: rgba(255, 199, 0, 0.03);
    border-color: rgba(255, 199, 0, 0.15);
    transform: translateX(4px);
}

.order-card-modern__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.order-card-modern__id {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.order-card-modern__id svg {
    color: #FFC700;
}

.order-card-modern__status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-card-modern__status--completed {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.order-status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    margin-right: 4px;
}

.order-card-modern__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px;
}

.order-card-modern__details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.order-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.order-detail svg {
    color: #FFC700;
    flex-shrink: 0;
}

.order-card-modern__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.order-tag {
    padding: 4px 10px;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: #FFC700;
}

.order-card-modern__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.order-card-modern__date,
.order-card-modern__time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.order-card-modern__date svg,
.order-card-modern__time svg {
    width: 16px;
    height: 16px;
}

.orders-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.3);
}

.orders-empty svg {
    margin-bottom: 16px;
}

.orders-empty p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.booster-orders__more {
    text-align: center;
    margin-top: 24px;
}

/* ============================================
   Matches Section
   ============================================ */
.booster-matches {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.booster-matches__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.booster-matches__count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.match-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.match-card:hover {
    transform: translateY(-2px);
}

.match-card--win {
    border-left: 3px solid #4ade80;
}

.match-card--win:hover {
    background: rgba(74, 222, 128, 0.03);
    border-color: rgba(74, 222, 128, 0.2);
}

.match-card--loss {
    border-left: 3px solid #ef4444;
}

.match-card--loss:hover {
    background: rgba(239, 68, 68, 0.03);
    border-color: rgba(239, 68, 68, 0.2);
}

.match-card__result {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.match-card__result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.match-card--win .match-card__result-badge {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.match-card--loss .match-card__result-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.match-card__mmr {
    font-size: 14px;
    font-weight: 600;
}

.match-card__mmr--positive {
    color: #4ade80;
}

.match-card__mmr--negative {
    color: #ef4444;
}

.match-card__hero {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.match-card__hero img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.match-card__hero-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.match-card__game {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.match-card__kda {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
}

.match-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.booster-matches__more {
    text-align: center;
    margin-top: 24px;
}

/* ============================================
   Pagination
   ============================================ */
.pagination-modern {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pagination-modern__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-modern__item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.pagination-modern__item--active {
    background: #FFC700;
    border-color: #FFC700;
    color: #000;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn--lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn--primary {
    background: #FFC700;
    color: #000;
}

.btn--primary:hover {
    background: #ffb700;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .booster-header__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .booster-header__bio {
        max-width: 100%;
    }
    
    .booster-header__stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .booster-header__name {
        font-size: 28px;
    }
    
    .booster-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumbs-modern {
        flex-wrap: wrap;
    }
}

