/* ===== Pages Common Styles ===== */

.page-content {
    padding-top: 132px; /* Banner (32px) + Navbar (~60px) + Spacing (40px) */
    min-height: 100vh;
    background: var(--bg-primary);
}

.page-header {
    text-align: center;
    padding: 40px 0 60px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 115, 214, 0.1);
    border: 1px solid rgba(0, 115, 214, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--purple-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Vouches Page ===== */

.vouches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    .vouches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vouches-grid {
        grid-template-columns: 1fr;
    }
}

.vouch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.vouch-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.vouch-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.vouch-stars .star {
    color: #a855f7;
    font-size: 18px;
}

.vouch-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 42px;
}

.vouch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vouch-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vouch-avatar {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.vouch-avatar.discord {
    background: #5865F2;
    color: white;
}

.vouch-avatar.ice {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.vouch-avatar.fahb {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.vouch-avatar.mafindo {
    background: #1a1a25;
    border: 2px solid var(--purple-primary);
}

.vouch-avatar.asmar {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.vouch-avatar.nico {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--green-accent);
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.vouch-username {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-badge {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--bg-secondary);
    border-radius: 4px;
    color: var(--text-muted);
}

.user-badge.ice {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.user-badge.fahb {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.vouch-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 50px;
}

/* ===== Status Page ===== */

.status-section {
    margin-bottom: 60px;
}

.status-section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.status-section-title::before {
    content: attr(data-text);
    position: absolute;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    top: -30px;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.status-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.status-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.status-card:hover .status-card-image img {
    transform: scale(1.05);
}

.status-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 115, 214, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
}

.status-card-info {
    padding: 16px;
}

.status-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 10px;
}

.status-card-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.game-badge.fortnite {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.game-badge.valo {
    background: rgba(255, 70, 85, 0.1);
    color: #ff4655;
    border-color: rgba(255, 70, 85, 0.3);
}

.game-badge.hwid {
    background: rgba(0, 115, 214, 0.1);
    color: var(--purple-primary);
    border-color: rgba(0, 115, 214, 0.3);
}

.game-badge.cod {
    background: rgba(255, 87, 34, 0.1);
    color: #ff5722;
    border-color: rgba(255, 87, 34, 0.3);
}

.status-badge-small {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status-badge-small.undetected {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-accent);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge-small.detected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge-small.updating {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.status-badge-small .status-dot {
    width: 5px;
    height: 5px;
}

/* ===== Nav Links for all pages ===== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

/* ===== Payment Methods Page ===== */
.payment-section {
    margin-bottom: 60px;
}

.payment-section-title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.payment-section-title .title-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    font-weight: 800;
    color: rgba(139, 92, 246, 0.08);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.payment-icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    background: white;
    border-radius: 8px;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-icon-card svg {
    width: 100%;
    height: 100%;
}

.payment-icon-card.crypto {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
}

.payment-icon-card.cashapp {
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 12px;
}

.payment-icon-card.paysafe {
    background: transparent;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .payment-section-title .title-bg {
        font-size: 50px;
    }
    
    .payment-icons-grid {
        justify-content: center;
    }
}
