/* Authentication Pages Styles */

/* Auth Page Container */
.auth-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #222;
}

.auth-card-login {
    max-width: 420px;
    margin: 0 auto;
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}

.auth-header p {
    font-size: 16px;
    color: #888;
    margin: 0;
}

/* Auth Alerts */
.auth-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-alert a {
    color: inherit;
    text-decoration: underline;
}

.auth-alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.auth-alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #51cf66;
}

.auth-alert-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #74b9ff;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #222;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.optional-tag {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    padding: 2px 8px;
    background: #1a1a1a;
    border-radius: 4px;
}

.form-hint {
    font-size: 13px;
    color: #666;
    margin: -10px 0 15px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}

.form-group input:disabled {
    background: #0d0d0d;
    color: #666;
    cursor: not-allowed;
}

.form-group small {
    font-size: 12px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row-between {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* Checkbox */
.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #aaa;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #c41e3a;
}

.checkbox-label span {
    line-height: 1.4;
}

.checkbox-label a {
    color: #c41e3a;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Auth Buttons */
.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.auth-btn-primary {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.auth-btn-outline {
    background: transparent;
    border: 2px solid #c41e3a;
    color: #c41e3a;
}

.auth-btn-outline:hover {
    background: #c41e3a;
    color: #fff;
}

/* Auth Links */
.auth-link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 14px;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333;
}

.auth-divider span {
    padding: 0 15px;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer p {
    color: #888;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.auth-footer a {
    color: #c41e3a;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Benefits Section */
.auth-benefits {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid #1a1a1a;
}

.auth-benefits h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: #aaa;
}

/* ======================== */
/* Account Page Styles      */
/* ======================== */

.account-page {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 20px 80px;
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Account Sidebar */
.account-sidebar {
    background: #111;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #222;
    height: fit-content;
    position: sticky;
    top: 110px;
}

.account-user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
}

.account-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 15px;
}

.account-user-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.account-user-email {
    font-size: 13px;
    color: #888;
}

/* Account Navigation */
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-nav-link,
.account-nav-link:visited {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #aaa;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.account-nav-link:hover {
    background: #1a1a1a;
    color: #fff;
}

.account-nav-link.active,
.account-nav-link.active:visited {
    background: rgba(196, 30, 58, 0.15);
    color: #c41e3a;
}

.account-nav-link .nav-icon {
    font-size: 18px;
}

.account-nav-divider {
    height: 1px;
    background: #222;
    margin: 10px 0;
}

.logout-link,
.logout-link:visited {
    color: #ff6b6b;
}

.logout-link:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

/* Account Content */
.account-content {
    background: #111;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #222;
}

.account-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
}

/* Account Status Badge */
.account-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 700;
}

.account-status-badge.free {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #2a2a4e;
    color: #aaa;
}

.account-status-badge.pro {
    background: linear-gradient(135deg, #3d2e00 0%, #4a3600 100%);
    border: 1px solid #ffd700;
    color: #ffd700;
}

.account-status-badge .badge-icon {
    font-size: 20px;
}

.account-status-badge .badge-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-status-badge .upgrade-link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 12px;
    margin-left: 10px;
    transition: color 0.2s;
}

.account-status-badge .upgrade-link:hover {
    color: #ff4757;
}

.section-desc {
    font-size: 14px;
    color: #888;
    margin: 0 0 25px 0;
}

.account-form {
    max-width: 600px;
}

/* Security Card */
.security-card {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #1a1a1a;
}

.security-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.security-info {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #1a1a1a;
}

.security-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.security-info p {
    font-size: 14px;
    color: #aaa;
    margin: 8px 0;
}

.security-info strong {
    color: #fff;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.empty-state p {
    font-size: 14px;
    color: #888;
    margin: 0 0 25px 0;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #1a1a1a;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-number {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.order-date {
    font-size: 13px;
    color: #888;
}

.order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-processing {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-completed,
.status-delivered {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.status-cancelled {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.order-total {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.order-view-link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.order-view-link:hover {
    text-decoration: underline;
}

/* Login Required Modal */
.login-required-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-required-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-required-modal {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    border: 1px solid #222;
}

.login-required-modal h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px 0;
}

.login-required-modal p {
    font-size: 15px;
    color: #aaa;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.login-required-modal .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-required-modal .modal-close {
    margin-top: 15px;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.login-required-modal .modal-close:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .account-container {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
    
    .account-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .account-nav-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
        padding: 10px;
    }
    
    .account-nav-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .auth-card {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-header h1 {
        font-size: 26px;
    }
    
    .account-content {
        padding: 20px;
    }
    
    .account-section h2 {
        font-size: 20px;
    }
}

/* Subscription Section Styles */
.subscription-section {
    max-width: 600px;
}

/* PRO Avatar Badge */
.account-avatar {
    position: relative;
}

.account-avatar.pro-avatar {
    border: 2px solid #ffd43f;
}

.avatar-pro-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 14px;
    background: #1a1a1a;
    border-radius: 50%;
    padding: 2px;
}

.name-pro-badge {
    background: linear-gradient(135deg, #ffd43f 0%, #ffb800 100%);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.subscription-status-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #333;
    margin-bottom: 30px;
}

.subscription-status-card.pro-active {
    border-color: #ffd43f;
    background: linear-gradient(135deg, #1a1600 0%, #0d0d0d 100%);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.status-badge.badge-pro {
    background: linear-gradient(135deg, #ffd43f 0%, #ffb800 100%);
    color: #000;
}

.status-badge.badge-free {
    background: #333;
    color: #fff;
}

.subscription-info {
    margin-bottom: 20px;
}

.subscription-info .status-text {
    color: #fff;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.subscription-info .renewal-info {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.subscription-info .cancel-info {
    color: #ff6b6b;
    font-size: 14px;
    margin: 0;
}

.pro-benefits {
    background: rgba(255, 212, 63, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.pro-benefits h4 {
    color: #ffd43f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #ccc;
    padding: 6px 0;
    font-size: 14px;
}

.subscription-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.auth-btn-text {
    background: transparent;
    color: #888;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 16px;
}

.auth-btn-text:hover {
    color: #ff6b6b;
}

/* Upgrade CTA */
.upgrade-cta {
    text-align: center;
    padding: 20px 0;
}

.upgrade-cta h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.price-tag {
    margin-bottom: 25px;
}

.price-tag .currency {
    color: #ffd43f;
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.price-tag .amount {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-tag .period {
    color: #888;
    font-size: 16px;
}

.pro-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    display: inline-block;
}

.pro-benefits-list li {
    color: #ccc;
    padding: 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-benefits-list li .check {
    color: #4ade80;
    font-weight: 700;
}

.auth-btn-pro {
    background: linear-gradient(135deg, #ffd43f 0%, #ffb800 100%);
    color: #000;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.auth-btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 212, 63, 0.3);
}

.upgrade-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.coming-soon {
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

/* Subscription History */
.subscription-history {
    margin-top: 30px;
}

.subscription-history h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #333;
}

.history-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    border-radius: 8px;
}

.history-details {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center;
}

.history-action {
    color: #fff;
    font-weight: 500;
}

.history-amount {
    color: #4ade80;
    font-weight: 600;
}

.history-date {
    color: #888;
    font-size: 13px;
}

@media (max-width: 600px) {
    .subscription-status-card {
        padding: 20px;
    }
    
    .price-tag .amount {
        font-size: 36px;
    }
    
    .subscription-actions {
        flex-direction: column;
    }
    
    .history-item {
        flex-wrap: wrap;
    }
    
    .history-date {
        width: 100%;
        margin-top: 8px;
        padding-left: 52px;
    }
}

/* ============================================
   Plan Selector (Registration Page)
   ============================================ */

.plan-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.plan-option {
    cursor: pointer;
    display: block;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.plan-option:hover .plan-card {
    border-color: #555;
}

.plan-option.selected .plan-card,
.plan-option input:checked + .plan-card {
    border-color: #c41e3a;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
}

.plan-card-pro {
    border-color: #c41e3a;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c41e3a 0%, #ff4757 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.plan-name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #c41e3a;
}

.plan-price small {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    border-bottom: 1px solid #222;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.disabled {
    color: #555;
}

.plan-features .check {
    color: #4ade80;
    font-weight: bold;
}

.plan-features .check.pro {
    color: #f59e0b;
}

.plan-features .x {
    color: #555;
}

/* Responsive plan selector */
@media (max-width: 600px) {
    .plan-selector {
        grid-template-columns: 1fr;
    }
    
    .plan-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .plan-price {
        font-size: 28px;
    }
}

/* Fighter Profile Section */
.nav-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-badge.pending {
    background: #f59e0b;
    color: #000;
}

.fighter-status-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.fighter-status-card.pending {
    background: linear-gradient(135deg, #3d2e00 0%, #2a2000 100%);
    border: 1px solid #f59e0b;
}

.fighter-status-card.rejected {
    background: linear-gradient(135deg, #3d0000 0%, #2a0000 100%);
    border: 1px solid #ef4444;
}

.fighter-status-card .status-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.fighter-status-card .status-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.fighter-status-card .status-content p {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.fighter-status-card .status-content small {
    font-size: 12px;
    color: #666;
}

.fighter-current-profile {
    display: flex;
    gap: 25px;
    background: #0d0d0d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #1a1a1a;
}

.fighter-photo-preview {
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}

.fighter-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fighter-photo-preview .no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
}

.fighter-current-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
}

.fighter-current-info .nickname {
    color: #c41e3a;
    font-style: italic;
    margin: 0 0 10px 0;
}

.fighter-current-info p {
    color: #aaa;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.view-profile-link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-profile-link:hover {
    text-decoration: underline;
}

.fighter-edit-form h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

@media (max-width: 600px) {
    .fighter-current-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .fighter-status-card {
        flex-direction: column;
        text-align: center;
    }
}

/* My Tickets Section */
.tickets-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-tickets-group {
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.event-tickets-group.past-event {
    opacity: 0.7;
}

.event-tickets-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #222;
}

.event-tickets-header .event-info {
    flex: 1;
}

.event-tickets-header .event-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.event-tickets-header .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.event-tickets-header .event-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-tickets-header .ticket-count {
    background: #c41e3a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.tickets-list {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-card {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    align-items: center;
    border: 1px solid #1a1a1a;
    transition: all 0.2s ease;
}

.ticket-card:hover {
    border-color: #333;
}

.ticket-card.ticket-used {
    opacity: 0.6;
    border-color: #222;
}

.ticket-card.ticket-valid {
    border-left: 3px solid #28a745;
}

.ticket-card.ticket-used {
    border-left: 3px solid #666;
}

.ticket-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-type-badge {
    background: rgba(196, 30, 58, 0.15);
    color: #c41e3a;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}

.ticket-code {
    font-size: 14px;
    color: #888;
}

.ticket-code .code {
    font-family: 'Monaco', 'Consolas', monospace;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.ticket-attendee {
    font-size: 13px;
    color: #666;
}

.ticket-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 90px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-valid {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.status-badge.status-used {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

.used-date {
    font-size: 11px;
    color: #666;
    text-align: center;
}

.ticket-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-ticket-view,
.btn-ticket-qr,
.btn-ticket-wallet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-ticket-view {
    background: #c41e3a;
    color: #fff;
}

.btn-ticket-view:hover {
    background: #a01830;
}

.btn-ticket-qr {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
}

.btn-ticket-qr:hover {
    background: #222;
    border-color: #444;
}

.btn-ticket-wallet {
    background: #000;
    color: #fff;
    border: 1px solid #333;
}

.btn-ticket-wallet:hover {
    background: #1a1a1a;
    border-color: #444;
}

/* Tickets section mobile responsive */
@media (max-width: 768px) {
    .event-tickets-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-tickets-header .ticket-count {
        align-self: flex-start;
    }
    
    .event-tickets-header .event-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .ticket-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ticket-status {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .ticket-actions {
        flex-direction: row;
    }
    
    .btn-ticket-view,
    .btn-ticket-qr {
        flex: 1;
        text-align: center;
    }
}