/* User Dashboard Styles - MMO-Stock Design */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #667eea;
    --accent-secondary: #764ba2;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-color: rgba(102, 126, 234, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
}

.user-dashboard {
    min-height: 100vh;
    padding: 20px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* Sidebar Styles */
.dashboard-sidebar {
    flex: 0 0 280px;
}

.user-sidebar {
    position: sticky;
    top: 20px;
}

.user-menu-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.user-menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    pointer-events: none;
}

.user-menu-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 28px;
    color: white;
}

.user-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.user-menu-card:hover .user-avatar::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.user-menu-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.user-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.user-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.6s;
}

.user-nav-item:hover::before {
    left: 100%;
}

.user-nav-item:hover {
    background: rgba(102, 126, 234, 0.15);
    color: var(--text-primary);
    text-decoration: none;
    transform: translateX(5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.user-nav-item.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: var(--accent-color);
}

.user-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
}

.user-nav-item.logout {
    border-bottom: none;
    color: #dc3545;
}

.user-nav-item.logout:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.user-nav-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.user-nav-item:hover i {
    transform: scale(1.1);
}

.user-nav-item span {
    font-weight: 500;
}

/* Main Content Styles */
.dashboard-content {
    flex: 1;
}

.dashboard-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    pointer-events: none;
}

.dashboard-title {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.dashboard-subtitle {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* Cards Grid */
.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-card,
.stats-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.profile-card::before,
.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.profile-card:hover::before,
.stats-card:hover::before {
    left: 100%;
}

.profile-card:hover,
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.card-header {
    background: var(--gradient-primary);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 24px;
    margin-right: 15px;
    opacity: 0.9;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.profile-card:hover .card-icon::before,
.stats-card:hover .card-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.card-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

/* Profile Info */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    padding-left: 10px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    margin: 0 -10px;
}

.info-label {
    font-weight: 600;
    color: var(--text-primary);
}

.info-value {
    font-weight: 500;
    color: var(--text-secondary);
}

.info-value.balance {
    color: #00d4aa;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
}

.info-value.status.active {
    color: #28a745;
    font-weight: 600;
}

.status.inactive {
    color: #dc3545;
    font-weight: 600;
}

.role.admin {
    color: #ff6b35;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.role.moderator {
    color: #17a2b8;
    font-weight: 600;
}

.role.user {
    color: #6c757d;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-item:hover::before {
    opacity: 2;
}

.user-stat-icon {
    font-size: 2.5em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Modal Styles */
.modal-content {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 20px 25px !important;
}

.modal-title {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
}

.modal-body {
    background: transparent !important;
    padding: 25px !important;
    color: var(--text-primary) !important;
}

.modal-footer {
    background: rgba(255, 255, 255, 0.05) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 0 20px 20px !important;
    padding: 20px 25px !important;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group label {
    color: var(--text-primary) !important;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.modal-body .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: var(--text-primary) !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
}

.modal-body .form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    outline: none !important;
}

.modal-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.modal-body .form-text {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem;
    margin-top: 5px;
}

.modal-footer .btn {
    padding: 10px 20px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.modal-footer .btn-primary {
    background: var(--gradient-primary) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6) !important;
}

.modal-footer .btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.modal-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.close {
    color: white !important;
    opacity: 0.8 !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    text-shadow: none !important;
}

.close:hover {
    color: white !important;
    opacity: 1 !important;
}

/* Reviews Page Styles */
.reviews-container {
    padding: 25px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-heavy);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 50%, 
        rgba(102, 126, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-server-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-game {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.stars i.active {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--glass-bg);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.review-content {
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.review-text {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.review-text::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: var(--glass-bg);
    padding: 8px 14px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-date:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.review-date i {
    width: 20px;
    height: 20px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.review-status {
    display: flex;
    align-items: center;
}

.user-status-badge-alt2 {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-status-badge-alt2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.user-status-badge-alt2:hover::before {
    left: 100%;
}

/* Статус 1 - одобрен */
.user-status-badge-alt2.status-1 {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #10b981;
    border-color: #059669;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    text-shadow: 0 1px 2px rgba(5, 150, 105, 0.3);
}

.user-status-badge-alt2.status-1::after {
    content: '✓';
    font-weight: bold;
    color: #00c990;
}

/* Статус 0 - на модерации */
.user-status-badge-alt2.status-0 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    color: #f59e0b;
    border-color: #d97706;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    text-shadow: 0 1px 2px rgba(217, 119, 6, 0.3);
}

.user-status-badge-alt2.status-0::after {
    content: '⏳';
    color: #b45309;
}

/* Статус 2 - отклонен */
.user-status-badge-alt2.status-2 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    color: #dc2626;
    border-color: #b91c1c;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    text-shadow: 0 1px 2px rgba(185, 28, 28, 0.3);
}

.user-status-badge-alt2.status-2::after {
    content: '✗';
    font-weight: bold;
    color: #991b1b;
}

.review-server {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1em;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2em;
}

.star.empty {
    color: #ddd;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: var(--text-muted);
}



.review-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-actions .btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.review-actions .btn i {
    font-size: 0.8rem;
}

.empty-state {
    text-align: center;
    padding: 80px 30px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.empty-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.3;
}

.empty-icon i {
    font-size: 2.5rem;
    color: white;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state .btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.empty-state .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.empty-reviews {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-reviews i {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-reviews h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.empty-reviews p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Payment Page Styles */
.payment-container {
    padding: 20px;
}

.payment-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.payment-methods-section {
    margin-bottom: 30px;
}

.user-section-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.payment-method-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-method-card.selected {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.05);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.payment-method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
}

.payment-icon {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.payment-method-info {
    flex: 1;
}

.payment-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 5px 0;
}

.payment-description {
    font-size: 0.9em;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.amount-section {
    margin-bottom: 30px;
}

.amount-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.amount-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    background: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.amount-input.is-invalid {
    border-color: #dc3545;
}

.currency-symbol {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-muted);
}

.quick-amounts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.quick-amount-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
}

.quick-amount-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.amount-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: var(--text-muted);
}

.payment-submit {
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.payment-agreement {
    text-align: center;
}

.agreement-text {
    font-size: 0.9em;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.agreement-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.agreement-text a:hover {
    text-decoration: underline;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3em;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Servers Page Styles */
.servers-container {
    padding: 20px;
}

.user-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.user-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    pointer-events: none;
}

.info-icon {
    color: var(--accent-color);
    font-size: 1.5em;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-content h4 {
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.info-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Server Cards Grid */
.user-servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.user-server-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-light) !important;
    padding: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 320px !important;
}

.user-server-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent) !important;
    transition: left 0.8s !important;
    pointer-events: none !important;
}

.user-server-card:hover::before {
    left: 100% !important;
}

.user-server-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy) !important;
    border-color: var(--accent-color) !important;
}

.server-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 1.5rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.server-main {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.server-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.server-title-row {
    display: flex !important;
    justify-content: space-between !important;
    flex-direction: column !important;
}

.server-info {
    flex: 1;
}

.server-name {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    flex: 1 !important;
    color: var(--text-primary) !important;
}

.user-server-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.user-server-name a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.server-id-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    width: fit-content;
    max-width: 80px;
}

.server-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.rating-stars i.filled {
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
}

.rating-value {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--text-primary);
}

.server-id-badge {
    display: inline-block !important;
    background: rgba(102, 126, 234, 0.15) !important;
    color: var(--accent-color) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    backdrop-filter: blur(5px) !important;
}

.server-description {
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.server-description p {
    margin: 0 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.server-details {
    margin-top: auto;
    padding-top: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-item i {
    width: 20px;
    color: var(--accent-color);
    font-size: 1em;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 80px;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

.server-address {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
    color: var(--accent-color);
    margin-top: 4px;
}

.players-count {
    color: var(--text-primary);
    font-weight: 600;
}

.server-status {
    margin-top: 1rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
	justify-content: center;
}

.user-status-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 2px solid !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-status-badge.online {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

.user-status-badge.offline {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}

.user-status-badge.pending {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #f59e0b !important;
    border-color: #f59e0b !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2) !important;
}

.user-status-badge.approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.user-status-badge.banned {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Server Status Badges */
.user-status-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.user-status-badge.obt {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

.user-status-badge.zbt {
    background: rgba(139, 92, 246, 0.15) !important;
    color: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2) !important;
}

.user-status-badge.open {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

.user-status-badge.closed {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}

.user-status-badge.merged {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #f59e0b !important;
    border-color: #f59e0b !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2) !important;
}

.user-status-badge i {
    font-size: 0.8em;
}

.action-buttons {
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: center !important;
    margin-top: auto !important;
    padding-top: 1rem !important;
}

.action-buttons .btn {
    flex: 1 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid !important;
    backdrop-filter: blur(10px) !important;
}

.action-buttons .btn-outline-primary {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
}

.action-buttons .btn-outline-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
    background: rgba(59, 130, 246, 0.25) !important;
}

.action-buttons .btn-outline-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}

.action-buttons .btn-outline-danger:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
    background: rgba(239, 68, 68, 0.25) !important;
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
}

.action-buttons .btn i {
    font-size: 0.9em;
}

.action-buttons .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.action-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--glass-border);
}

.action-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.action-buttons .btn-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.action-buttons .btn-danger:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.servers-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.servers-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.servers-table tbody tr:hover {
    background: rgba(var(--primary-rgb), 0.05);
}

.server-id {
    font-weight: 600;
    color: var(--primary-color);
}

.players-count {
    font-weight: 500;
}

.user-status-badge-alt {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    margin: 2px;
    display: inline-block;
}

.user-status-badge-alt.online {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.user-status-badge-alt.offline {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.rating {
    font-weight: 600;
    color: var(--primary-color);
}



.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-title {
    color: #333;
    margin-bottom: 10px;
}

.empty-description {
    color: #666;
    margin-bottom: 30px;
}

/* Payment logs page styles */
.paylogs-container {
    margin-top: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.paylogs-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    pointer-events: none;
}

.user-paylogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.user-paylog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.user-paylog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.user-paylog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.3);
}

.user-paylog-card:hover::before {
    opacity: 2;
}

.user-paylog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.user-paylog-date {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 500;
}

.payment-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-status.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.payment-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.payment-status.failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.payment-status i {
    font-size: 0.8em;
}

.user-paylog-body {
    position: relative;
    z-index: 1;
}

.user-paylog-amount {
    font-size: 1.8em;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.user-paylog-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-paylog-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-paylog-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9em;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9em;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8em;
    color: var(--accent-color);
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 1;
}

.empty-paylogs {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.empty-paylogs i {
    font-size: 4em;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-paylogs h3 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 1.5em;
}

.empty-paylogs p {
    margin: 0 0 25px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.empty-paylogs .btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.empty-paylogs .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Giveaways page styles */
.giveaways-container {
    margin-top: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.giveaways-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    pointer-events: none;
}

.user-giveaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.user-giveaway-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.user-giveaway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.user-giveaway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.3);
}

.user-giveaway-card:hover::before {
    opacity: 2;
}

.user-giveaway-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.user-giveaway-info {
    flex: 1;
}

.user-giveaway-title {
    margin: 0 0 6px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-primary);
}

.user-giveaway-date {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-giveaway-date i {
    color: var(--accent-color);
}

.user-giveaway-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.user-giveaway-body {
    position: relative;
    z-index: 1;
}

.promo-section {
    background: rgba(102, 126, 234, 0.1);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.promo-code-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    pointer-events: none;
}

.promo-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.85em;
    position: relative;
    z-index: 1;
}

.promo-label i {
    color: var(--accent-color);
}

.promo-code-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-code {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
}

.promo-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    font-weight: 700;
    color: #cad4ff;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 8px;
}

.copy-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.empty-giveaways {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.empty-giveaways i {
    font-size: 4em;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-giveaways h3 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 1.5em;
}

.empty-giveaways p {
    margin: 0 0 25px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.empty-giveaways .btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.empty-giveaways .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.empty-giveaways p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Auth pages styles */
.auth-page {
    min-height: 100vh;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    pointer-events: none;
}

.auth-header {
    background: var(--gradient-primary);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.auth-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.auth-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.auth-content {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    color: var(--accent-color);
    width: 16px;
}

.form-input {
    padding: 15px 20px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(102, 126, 234, 0.05);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.auth-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    text-decoration: none;
    color: white;
}

.auth-btn.secondary {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
}

.auth-btn.secondary:hover {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Password result styles */
.password-result {
    text-align: center;
    position: relative;
    z-index: 1;
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 64px;
    color: #00d4aa;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.password-result h3 {
    margin: 0 0 30px 0;
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 600;
}

.new-password-section {
    margin-bottom: 30px;
    text-align: left;
    background: rgba(102, 126, 234, 0.1);
    border: 2px dashed var(--accent-color);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.new-password-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
    pointer-events: none;
}

.password-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.password-display {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.password-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.password-input:focus {
    outline: none;
}

.copy-password-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.copy-password-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.copy-password-btn:hover::before {
    left: 100%;
}

.copy-password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Signup page specific styles */
.signup-container {
    max-width: 550px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.captcha-section {
    margin: 25px 0;
}

.captcha-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.captcha-image {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.captcha-image:hover {
    border-color: var(--accent-color);
    text-decoration: none;
}

.captcha-image img {
    display: block;
    width: 120px;
    height: 50px;
    object-fit: cover;
}

.captcha-refresh {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.captcha-image:hover .captcha-refresh {
    opacity: 1;
}

.captcha-input {
    flex: 1;
}

.captcha-hint {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .dashboard-sidebar {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .user-dashboard {
        padding: 15px 0;
    }
    
    .dashboard-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    
    .dashboard-sidebar {
        flex: none;
    }
    
    .user-sidebar {
        position: static;
    }
    
    .user-menu-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .dashboard-content {
        padding: 20px;
        border-radius: 16px;
    }
    
    .dashboard-title {
        font-size: 24px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-card,
    .stats-card {
        border-radius: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .paylogs-container,
    .giveaways-container {
        padding: 20px;
        border-radius: 16px;
    }
    
    .paylogs-table-wrapper,
    .servers-table-wrapper {
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .paylogs-table,
    .servers-table {
        min-width: 600px;
    }
    
    .user-giveaway-card {
        border-radius: 12px;
    }
    
    .promo-code-section {
        border-radius: 8px;
        padding: 15px;
    }
    
    .auth-card {
        border-radius: 20px;
        margin: 0 10px;
    }
    
    .auth-content {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        align-self: center;
    }
    
    .signup-container {
        max-width: 100%;
    }
    
    .auth-container {
        max-width: 100%;
    }
    
    .quick-amounts {
        justify-content: center;
    }
    
    .amount-limits {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .user-dashboard {
        padding: 10px 0;
    }
    
    .dashboard-container {
        padding: 0 5px;
        gap: 15px;
    }
    
    .user-menu-card,
    .dashboard-header,
    .paylogs-container,
    .giveaways-container,
    .reviews-container {
        padding: 15px;
        border-radius: 12px;
    }
    
    .dashboard-title {
        font-size: 20px;
    }
    
    .dashboard-subtitle {
        font-size: 14px;
    }
    
    .user-nav-item {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .user-nav-item i {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .auth-card {
        border-radius: 16px;
    }
    
    .auth-content {
        padding: 20px 15px;
    }
    
    .auth-title {
        font-size: 20px;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .auth-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .promo-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .copy-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .review-card {
        padding: 15px;
    }
}

/* Dark theme enhancements */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --glass-bg: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(255, 255, 255, 0.08);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --glass-border: rgba(255, 255, 255, 0.3);
        --text-secondary: #d0d0d0;
    }
    
    .user-nav-item:hover {
        background: rgba(102, 126, 234, 0.3);
    }
    
    .form-input:focus {
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.4);
    }
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.empty-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    pointer-events: none;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.empty-icon i {
    font-size: 36px;
    color: white;
}

.empty-state h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px;
    position: relative;
    z-index: 1;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0 0 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.empty-state .btn {
    position: relative;
    z-index: 1;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.empty-state .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}

.empty-state .btn i {
    font-size: 14px;
}

/* Project Cards Styles */
.user-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.user-project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.user-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.user-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.4);
}

.user-project-card:hover::before {
    opacity: 2;
}

.user-project-card-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    padding: 25px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(10px);
}

.user-project-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.user-project-card:hover .user-project-card-header::before {
    opacity: 1.5;
}

.project-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-info {
    flex: 1;
}

.user-project-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.user-project-name a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-project-name a:hover {
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
    transform: translateY(-1px);
}

.project-game {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.project-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(102, 126, 234, 0.15);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
    white-space: nowrap;
}

.stat-item i {
    font-size: 12px;
    opacity: 0.9;
}

.user-project-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.project-description {
    flex: 1;
    margin-bottom: 20px;
}

.project-description p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.project-description .text-muted {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.project-status {
    margin-bottom: 20px;
}

.user-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.user-status-badge.approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.4);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.user-status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.user-status-badge.offline {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.user-status-badge i {
    font-size: 10px;
}

.user-project-card-footer {
    padding: 0 25px 25px;
    position: relative;
    z-index: 1;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.action-buttons .btn:hover::before {
    left: 100%;
}

.action-buttons .btn i {
    font-size: 12px;
}

.action-buttons .btn span {
    font-weight: 600;
}

.action-buttons .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.action-buttons .btn-info {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.3);
}

.action-buttons .btn-info:hover {
    background: rgba(23, 162, 184, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
    color: #17a2b8;
    text-decoration: none;
}

.action-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--glass-border);
}

.action-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
}

.action-buttons .btn-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.action-buttons .btn-danger:hover {
    background: rgba(220, 53, 69, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    color: #dc3545;
    text-decoration: none;
}

/* Projects Grid Responsive */
@media (max-width: 1200px) {
    .user-projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .user-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .user-project-card {
        border-radius: 16px;
    }
    
    .user-project-card-header {
        padding: 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .user-project-card-body {
        padding: 20px;
    }
    
    .user-project-card-footer {
        padding: 0 20px 20px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .action-buttons .btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .user-projects-grid {
        gap: 15px;
    }
    
    .user-project-card {
        border-radius: 12px;
    }
    
    .user-project-card-header {
        padding: 15px;
        border-radius: 12px 12px 0 0;
    }
    
    .user-project-name {
        font-size: 18px;
    }
    
    .project-game {
        font-size: 12px;
    }
    
    .stat-item {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .user-project-card-body {
        padding: 15px;
    }
    
    .user-project-card-footer {
        padding: 0 15px 15px;
    }
    
    .project-description p {
        font-size: 13px;
    }
    
    .user-status-badge {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* Server Cards Styles - Consolidated */
.servers-container {
    margin-top: 30px;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}


.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    padding: 6px 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.detail-item i {
    color: var(--accent-color);
    font-size: 12px;
}

.user-server-card-footer {
    padding: 0 16px 16px;
    position: relative;
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.header-info {
    flex: 1;
}

.header-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Servers Grid Responsive */
@media (max-width: 1200px) {
    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .servers-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .user-server-card {
        border-radius: 12px;
    }
    
    .user-server-card-header {
        padding: 16px;
        border-radius: 12px 12px 0 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .user-server-card-body {
        padding: 16px;
    }
    
    .user-server-card-footer {
        padding: 0 16px 16px;
    }
    
    .server-status {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .header-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .servers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .user-server-card {
        border-radius: 10px;
        max-height: 240px;
    }
    
    .user-server-card-header {
        padding: 12px;
        border-radius: 10px 10px 0 0;
        gap: 8px;
    }
    
    .server-name {
        font-size: 14px;
        margin: 0 0 4px 0;
    }
    
    .server-address {
        font-size: 11px;
    }
    
    .detail-item {
        padding: 4px 8px;
        font-size: 11px;
        gap: 6px;
    }
    
    .user-server-card-body {
        padding: 12px;
    }
    
    .user-server-card-footer {
        padding: 0 12px 12px;
    }
    
    .server-description p {
        font-size: 12px;
    }
    
    .action-buttons .btn {
        font-size: 11px;
        padding: 6px 8px;
        min-width: 80px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-actions .btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* New Project Cards Styles */
.user-project-card.glass-card {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-light) !important;
    padding: 1.5rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 320px !important;
}

.user-project-card.glass-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent) !important;
    transition: left 0.8s !important;
    pointer-events: none !important;
}

.user-project-card.glass-card:hover::before {
    left: 100% !important;
}

.user-project-card.glass-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy) !important;
    border-color: var(--accent-color) !important;
}

.user-project-card.glass-card .project-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 1.5rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.user-project-card.glass-card .project-main {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.user-project-card.glass-card .project-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.user-project-card.glass-card .project-title-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.user-project-card.glass-card .project-id-badge {
    display: inline-block !important;
    background: rgba(102, 126, 234, 0.15) !important;
    color: var(--accent-color) !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
    backdrop-filter: blur(5px) !important;
}

.user-project-card.glass-card .project-name {
    margin: 0 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    flex: 1 !important;
    color: var(--text-primary) !important;
}

.user-project-card.glass-card .project-name a {
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.user-project-card.glass-card .project-name a:hover {
    color: var(--accent-color) !important;
    text-decoration: none !important;
}

.user-project-card.glass-card .project-game {
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0.25rem 0.75rem !important;
    background: rgba(102, 126, 234, 0.1) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px !important;
    display: inline-block !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.user-project-card.glass-card .project-stats {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 2px solid !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
    flex-direction: row-reverse;
}

.user-project-card.glass-card .project-stats:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.user-project-card.glass-card .project-stats i {
    font-size: 0.875rem !important;
}

.user-project-card.glass-card .project-description {
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    flex: 1 !important;
}

.user-project-card.glass-card .project-description p {
    margin: 0 !important;
}

.user-project-card.glass-card .project-description .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
    font-style: italic !important;
}

.user-project-card.glass-card .project-status {
    margin-top: 1rem !important;
    display: flex !important;
    justify-content: center !important;
}

.user-project-card.glass-card .status-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 2px solid !important;
    backdrop-filter: blur(10px) !important;
}

.user-project-card.glass-card .status-badge.approved {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
}

.user-project-card.glass-card .status-badge.pending {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #f59e0b !important;
    border-color: #f59e0b !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2) !important;
}

.user-project-card.glass-card .status-badge.offline {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}

.user-project-card.glass-card .status-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.user-project-card.glass-card .status-badge i {
    font-size: 0.875rem !important;
}

/* Original styles for non-glass-card project cards */
.user-project-card .project-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.user-project-card .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(102, 126, 234, 0.15);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--accent-color);
    white-space: nowrap;
}

.user-project-card .stat-item i {
    font-size: 10px;
    opacity: 0.9;
}

.user-project-card .project-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.user-project-card .project-description p {
    margin: 0;
}

.user-project-card .project-description .text-muted {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.project-status {
    margin-bottom: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.status-badge.approved {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.offline {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-badge i {
    font-size: 9px;
}

.user-project-card.glass-card .project-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-top: auto !important;
}

.user-project-card.glass-card .project-actions .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.8rem 1.4rem !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    position: relative !important;
    overflow: hidden !important;
    flex: 1 !important;
    justify-content: center !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.user-project-card.glass-card .project-actions .btn-outline-primary {
    background: rgba(102, 126, 234, 0.1) !important;
    color: var(--accent-color) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-primary:hover {
    background: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-info {
    background: rgba(23, 162, 184, 0.1) !important;
    color: #17a2b8 !important;
    border-color: rgba(23, 162, 184, 0.3) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-info:hover {
    background: #17a2b8 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-secondary {
    background: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border-color: rgba(108, 117, 125, 0.3) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-secondary:hover {
    background: #6c757d !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

.user-project-card.glass-card .project-actions .btn-outline-danger:hover {
    background: #dc3545 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4) !important;
}

/* Responsive adjustments for new project cards */
@media (max-width: 768px) {
    .user-project-card.glass-card {
        min-height: auto !important;
        border-radius: 16px !important;
        padding: 1.25rem !important;
    }
    
    .user-project-card.glass-card .project-content {
        gap: 1.25rem !important;
    }
    
    .user-project-card.glass-card .project-header {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .user-project-card.glass-card .project-title-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-start !important;
    }
    
    .user-project-card.glass-card .project-actions {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .user-project-card.glass-card .project-actions .btn {
        flex: none !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .user-project-card.glass-card {
        border-radius: 12px !important;
        padding: 1rem !important;
        min-height: 280px !important;
    }
    
    .user-project-card.glass-card .project-content {
        gap: 1rem !important;
    }
    
    .user-project-card.glass-card .project-name {
        font-size: 1.1rem !important;
    }
    
    .user-project-card.glass-card .project-game {
        font-size: 0.8rem !important;
    }
    
    .user-project-card.glass-card .project-description {
        font-size: 0.8rem !important;
    }
    
    .user-project-card.glass-card .project-stats {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.75rem !important;
    }
    
    .user-project-card.glass-card .status-badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.75rem !important;
    }
    
    .user-project-card.glass-card .project-actions .btn {
        font-size: 0.75rem !important;
        padding: 0.7rem 1.2rem !important;
        gap: 0.3rem !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .user-nav-item::before,
    .user-giveaway-card::before,
    .profile-card::before,
    .stats-card::before,
    .auth-btn::before,
    .copy-btn::before,
    .user-project-card::before,
    .user-project-card-header::before,
    .user-server-card::before,
    .user-server-card-header::before,
    .project-server-card::before,
    .glass-card::before,
    .action-buttons .btn::before {
        display: none;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
    }
    
    .empty-icon i {
        font-size: 28px;
    }
    
    .empty-state h3 {
        font-size: 20px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
}