/* Details Page Layout Fixes */
	/* Mobile Tabs Dropdown Styling */
	.tabs-dropdown-toggle {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border: 1px solid rgba(102, 126, 234, 0.3);
		color: #fff;
		padding: 12px 20px;
		border-radius: 10px;
		font-weight: 600;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
	}

	.tabs-dropdown-toggle:hover {
		background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	}

	.tabs-dropdown-menu {
		background: linear-gradient(135deg, #1a1d29 0%, #252935 100%);
		border: 1px solid rgba(102, 126, 234, 0.2);
		border-radius: 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(10px);
	}

	.tabs-dropdown-menu .dropdown-item {
		color: #94a3b8;
		padding: 12px 20px;
		border: none;
		background: transparent;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.tabs-dropdown-menu .dropdown-item:hover {
		background: rgba(102, 126, 234, 0.1);
		color: #667eea;
		transform: translateX(5px);
	}

	.tabs-dropdown-menu .dropdown-item.active {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #fff;
	}

	/* Modern Comments Section Design */
	.comments-section {
		background: linear-gradient(135deg, #1a1d29 0%, #252935 100%);
		border-radius: 16px;
		padding: 30px;
		margin-top: 20px;
		border: 1px solid rgba(102,126,234,0.15);
		box-shadow: 0 10px 40px rgba(0,0,0,0.3);
	}

	.comment-form {
		background: rgba(255,255,255,0.03);
		padding: 25px;
		border-radius: 12px;
		margin-bottom: 30px;
		border: 1px solid rgba(102,126,234,0.1);
		backdrop-filter: blur(10px);
	}

	.comment-form h5 {
		color: #fff;
		margin-bottom: 20px;
		font-weight: 600;
		font-size: 1.2rem;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.comment-form textarea {
		background: rgba(45, 49, 66, 0.8);
		border: 1px solid rgba(102,126,234,0.2);
		color: #fff;
		min-height: 120px;
		margin-bottom: 20px;
		border-radius: 10px;
		padding: 15px;
		font-size: 14px;
		transition: all 0.3s ease;
		resize: vertical;
	}

	.comment-form textarea:focus {
		background: rgba(45, 49, 66, 1);
		border-color: #667eea;
		box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
		outline: none;
	}

	.comment-form button {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
		padding: 12px 35px;
		font-weight: 600;
		border: none;
		border-radius: 10px;
		transition: all 0.3s ease;
		cursor: pointer;
		font-size: 15px;
	}

	.comment-form button:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 25px rgba(102,126,234,0.3);
	}

	/* Comments List */
	.comments-list {
		margin-top: 30px;
	}

	.comment-item {
		display: flex;
		gap: 15px;
		margin-bottom: 25px;
		padding: 20px;
		background: rgba(255,255,255,0.02);
		border-radius: 12px;
		border: 1px solid rgba(102,126,234,0.08);
		transition: all 0.3s ease;
		position: relative;
		animation: fadeInUp 0.5s ease;
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.comment-item:hover {
		background: rgba(255,255,255,0.04);
		border-color: rgba(102,126,234,0.2);
		transform: translateX(5px);
	}

	.comment-avatar {
		width: 45px;
		height: 45px;
		min-width: 45px;
		border-radius: 50%;
		background: linear-gradient(135deg, #667eea, #764ba2);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
		font-size: 18px;
		position: relative;
		box-shadow: 0 4px 15px rgba(102,126,234,0.3);
	}

	.comment-content {
		flex: 1;
		min-width: 0;
	}

	.comment-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
	}

	.comment-author {
		color: #667eea;
		font-weight: 600;
		font-size: 15px;
		transition: color 0.3s ease;
	}

	.comment-author:hover {
		color: #764ba2;
	}

	.comment-header-right {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.comment-date {
		color: #6b7280;
		font-size: 13px;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.comment-text {
		color: #e5e7eb;
		line-height: 1.6;
		margin-bottom: 15px;
		font-size: 14px;
		word-wrap: break-word;
	}

	/* Comment Actions */
	.comment-actions-desktop {
		display: flex;
		gap: 15px;
		margin-top: 12px;
	}

	.comment-actions-desktop button {
		background: rgba(102,126,234,0.1);
		border: 1px solid rgba(102,126,234,0.2);
		color: #94a3b8;
		padding: 5px 12px;
		border-radius: 6px;
		font-size: 13px;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.comment-actions-desktop button:hover {
		background: rgba(102,126,234,0.2);
		color: #667eea;
		transform: translateY(-1px);
	}

	.btn-like:hover {
		color: #10b981;
		border-color: rgba(16,185,129,0.3);
		background: rgba(16,185,129,0.1);
	}

	.btn-report:hover {
		color: #ef4444;
		border-color: rgba(239,68,68,0.3);
		background: rgba(239,68,68,0.1);
	}

	/* Comment Dropdown */
	.comment-dropdown {
		position: relative;
	}

	.comment-dropdown .dropdown-toggle {
		background: transparent;
		border: none;
		color: #6b7280;
		padding: 5px 10px;
		cursor: pointer;
		transition: color 0.3s ease;
		font-size: 16px;
	}

	.comment-dropdown .dropdown-toggle:hover {
		color: #667eea;
	}

	.comment-dropdown .dropdown-menu {
		position: absolute;
		right: 0;
		top: 100%;
		background: rgba(26, 29, 33, 0.98);
		border: 1px solid rgba(102,126,234,0.2);
		border-radius: 8px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.3);
		z-index: 1000;
		min-width: 150px;
		display: none;
		margin-top: 5px;
	}

	.comment-dropdown .dropdown-menu.show {
		display: block;
	}

	.comment-dropdown .dropdown-item {
		padding: 10px 15px;
		color: #e5e7eb;
		background: transparent;
		border: none;
		width: 100%;
		text-align: left;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
	}

	.comment-dropdown .dropdown-item:hover {
		background: rgba(102,126,234,0.1);
		color: #667eea;
	}

	/* Replies */
	.comment-replies {
		margin-top: 20px;
		padding-left: 30px;
		border-left: 2px solid rgba(102,126,234,0.1);
	}

	.comment-reply {
		display: flex;
		gap: 12px;
		margin-bottom: 15px;
		padding: 15px;
		background: rgba(255,255,255,0.01);
		border-radius: 10px;
		position: relative;
		animation: fadeInUp 0.5s ease;
	}

	.reply-avatar {
		width: 30px;
		height: 30px;
		min-width: 30px;
		border-radius: 50%;
		background: linear-gradient(135deg, #667eea, #764ba2);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
		font-size: 12px;
		position: relative;
	}

	.reply-content {
		flex: 1;
	}

	.reply-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 8px;
	}

	.reply-author {
		color: #94a3b8;
		font-weight: 600;
		font-size: 14px;
	}

	.reply-date {
		color: #6b7280;
		font-size: 12px;
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.reply-text {
		color: #d1d5db;
		font-size: 13px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.reply-actions {
		display: flex;
		gap: 10px;
	}

	.reply-actions button {
		background: transparent;
		border: none;
		color: #6b7280;
		padding: 3px 8px;
		font-size: 12px;
		cursor: pointer;
		transition: color 0.3s ease;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.reply-actions button:hover {
		color: #667eea;
	}

	/* Load More Button */
	.load-more-comments {
		background: rgba(102,126,234,0.1);
		border: 1px solid rgba(102,126,234,0.3);
		color: #667eea;
		padding: 12px 35px;
		border-radius: 10px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.load-more-comments:hover {
		background: rgba(102,126,234,0.2);
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(102,126,234,0.2);
	}

	/* Empty State */
	#no-comments {
		text-align: center;
		padding: 60px;
		background: rgba(255,255,255,0.02);
		border-radius: 12px;
		border: 1px dashed rgba(102,126,234,0.2);
	}

	#no-comments i {
		font-size: 48px;
		color: #6b7280;
		opacity: 0.5;
		margin-bottom: 15px;
	}

	/* Mobile Responsive */
	@media (max-width: 768px) {
		.comment-actions-desktop {
			display: none;
		}
		
		.comment-dropdown {
			display: block;
		}
		
		.comments-section {
			padding: 20px;
		}
		
		.comment-item {
			padding: 15px;
		}
		
		.comment-replies {
			padding-left: 15px;
		}
	}

	@media (min-width: 769px) {
		.comment-dropdown {
			display: none;
		}
	}

	/* Login Prompt */
	.login-prompt {
		background: rgba(255,255,255,0.03);
		padding: 40px;
		border-radius: 12px;
		margin-bottom: 30px;
		text-align: center;
		border: 1px solid rgba(102,126,234,0.1);
	}

	.login-prompt i {
		color: #667eea;
		font-size: 48px;
		margin-bottom: 20px;
		animation: pulse 2s infinite;
	}

	@keyframes pulse {
		0% { transform: scale(1); }
		50% { transform: scale(1.1); }
		100% { transform: scale(1); }
	}

	/* Refresh Button */
	.comments-list button[onclick*="refreshComments"] {
		background: transparent;
		border: 1px solid rgba(102,126,234,0.3);
		color: #667eea;
		padding: 6px 15px;
		border-radius: 8px;
		font-size: 14px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.comments-list button[onclick*="refreshComments"]:hover {
		background: rgba(102,126,234,0.1);
		transform: translateY(-1px);
	}

	/* Loading State */
	#comments-loading {
		text-align: center;
		padding: 50px;
	}

	#comments-loading i {
		color: #667eea;
		animation: spin 1s linear infinite;
	}

	@keyframes spin {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}
	/* Mobile Tabs Dropdown Styling */
	.tabs-dropdown-toggle {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		border: 1px solid rgba(102, 126, 234, 0.3);
		color: #fff;
		padding: 12px 20px;
		border-radius: 10px;
		font-weight: 600;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
	}

	.tabs-dropdown-toggle:hover {
		background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	}

	.tabs-dropdown-menu {
		background: linear-gradient(135deg, #1a1d29 0%, #252935 100%);
		border: 1px solid rgba(102, 126, 234, 0.2);
		border-radius: 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(10px);
	}

	.tabs-dropdown-menu .dropdown-item {
		color: #94a3b8;
		padding: 12px 20px;
		border: none;
		background: transparent;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.tabs-dropdown-menu .dropdown-item:hover {
		background: rgba(102, 126, 234, 0.1);
		color: #667eea;
		transform: translateX(5px);
	}

	.tabs-dropdown-menu .dropdown-item.active {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #fff;
	}

	/* Modern Comments Section Design */
	.comments-section {
		background: linear-gradient(135deg, #1a1d29 0%, #252935 100%);
		border-radius: 16px;
		padding: 30px;
		margin-top: 20px;
		border: 1px solid rgba(102,126,234,0.15);
		box-shadow: 0 10px 40px rgba(0,0,0,0.3);
	}

	.comment-form {
		background: rgba(255,255,255,0.03);
		padding: 25px;
		border-radius: 12px;
		margin-bottom: 30px;
		border: 1px solid rgba(102,126,234,0.1);
		backdrop-filter: blur(10px);
	}

	.comment-form h5 {
		color: #fff;
		margin-bottom: 20px;
		font-weight: 600;
		font-size: 1.2rem;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.comment-form textarea {
		background: rgba(45, 49, 66, 0.8);
		border: 1px solid rgba(102,126,234,0.2);
		color: #fff;
		min-height: 120px;
		margin-bottom: 20px;
		border-radius: 10px;
		padding: 15px;
		font-size: 14px;
		transition: all 0.3s ease;
		resize: vertical;
	}

	.comment-form textarea:focus {
		background: rgba(45, 49, 66, 1);
		border-color: #667eea;
		box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
		outline: none;
	}

	.comment-form button {
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
		padding: 12px 35px;
		font-weight: 600;
		border: none;
		border-radius: 10px;
		transition: all 0.3s ease;
		cursor: pointer;
		font-size: 15px;
	}

	.comment-form button:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 25px rgba(102,126,234,0.3);
	}

	/* Comments List */
	.comments-list {
		margin-top: 30px;
	}

	.comment-item {
		display: flex;
		gap: 15px;
		margin-bottom: 25px;
		padding: 20px;
		background: rgba(255,255,255,0.02);
		border-radius: 12px;
		border: 1px solid rgba(102,126,234,0.08);
		transition: all 0.3s ease;
		position: relative;
		animation: fadeInUp 0.5s ease;
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.comment-item:hover {
		background: rgba(255,255,255,0.04);
		border-color: rgba(102,126,234,0.2);
		transform: translateX(5px);
	}

	.comment-avatar {
		width: 45px;
		height: 45px;
		min-width: 45px;
		border-radius: 50%;
		background: linear-gradient(135deg, #667eea, #764ba2);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
		font-size: 18px;
		position: relative;
		box-shadow: 0 4px 15px rgba(102,126,234,0.3);
	}

	.comment-content {
		flex: 1;
		min-width: 0;
	}

	.comment-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
	}

	.comment-author {
		color: #667eea;
		font-weight: 600;
		font-size: 15px;
		transition: color 0.3s ease;
	}

	.comment-author:hover {
		color: #764ba2;
	}

	.comment-header-right {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.comment-date {
		color: #6b7280;
		font-size: 13px;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.comment-text {
		color: #e5e7eb;
		line-height: 1.6;
		margin-bottom: 15px;
		font-size: 14px;
		word-wrap: break-word;
	}

	/* Comment Actions */
	.comment-actions-desktop {
		display: flex;
		gap: 15px;
		margin-top: 12px;
	}

	.comment-actions-desktop button {
		background: rgba(102,126,234,0.1);
		border: 1px solid rgba(102,126,234,0.2);
		color: #94a3b8;
		padding: 5px 12px;
		border-radius: 6px;
		font-size: 13px;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.comment-actions-desktop button:hover {
		background: rgba(102,126,234,0.2);
		color: #667eea;
		transform: translateY(-1px);
	}

	.btn-like:hover {
		color: #10b981;
		border-color: rgba(16,185,129,0.3);
		background: rgba(16,185,129,0.1);
	}

	.btn-report:hover {
		color: #ef4444;
		border-color: rgba(239,68,68,0.3);
		background: rgba(239,68,68,0.1);
	}

	/* Comment Dropdown */
	.comment-dropdown {
		position: relative;
	}

	.comment-dropdown .dropdown-toggle {
		background: transparent;
		border: none;
		color: #6b7280;
		padding: 5px 10px;
		cursor: pointer;
		transition: color 0.3s ease;
		font-size: 16px;
	}

	.comment-dropdown .dropdown-toggle:hover {
		color: #667eea;
	}

	.comment-dropdown .dropdown-menu {
		position: absolute;
		right: 0;
		top: 100%;
		background: rgba(26, 29, 33, 0.98);
		border: 1px solid rgba(102,126,234,0.2);
		border-radius: 8px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.3);
		z-index: 1000;
		min-width: 150px;
		display: none;
		margin-top: 5px;
	}

	.comment-dropdown .dropdown-menu.show {
		display: block;
	}

	.comment-dropdown .dropdown-item {
		padding: 10px 15px;
		color: #e5e7eb;
		background: transparent;
		border: none;
		width: 100%;
		text-align: left;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
	}

	.comment-dropdown .dropdown-item:hover {
		background: rgba(102,126,234,0.1);
		color: #667eea;
	}

	/* Replies */
	.comment-replies {
		margin-top: 20px;
		padding-left: 30px;
		border-left: 2px solid rgba(102,126,234,0.1);
	}

	.comment-reply {
		display: flex;
		gap: 12px;
		margin-bottom: 15px;
		padding: 15px;
		background: rgba(255,255,255,0.01);
		border-radius: 10px;
		position: relative;
		animation: fadeInUp 0.5s ease;
	}

	.reply-avatar {
		width: 30px;
		height: 30px;
		min-width: 30px;
		border-radius: 50%;
		background: linear-gradient(135deg, #667eea, #764ba2);
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
		font-size: 12px;
		position: relative;
	}

	.reply-content {
		flex: 1;
	}

	.reply-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 8px;
	}

	.reply-author {
		color: #94a3b8;
		font-weight: 600;
		font-size: 14px;
	}

	.reply-date {
		color: #6b7280;
		font-size: 12px;
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.reply-text {
		color: #d1d5db;
		font-size: 13px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.reply-actions {
		display: flex;
		gap: 10px;
	}

	.reply-actions button {
		background: transparent;
		border: none;
		color: #6b7280;
		padding: 3px 8px;
		font-size: 12px;
		cursor: pointer;
		transition: color 0.3s ease;
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.reply-actions button:hover {
		color: #667eea;
	}

	/* Load More Button */
	.load-more-comments {
		background: rgba(102,126,234,0.1);
		border: 1px solid rgba(102,126,234,0.3);
		color: #667eea;
		padding: 12px 35px;
		border-radius: 10px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.load-more-comments:hover {
		background: rgba(102,126,234,0.2);
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(102,126,234,0.2);
	}

	/* Empty State */
	#no-comments {
		text-align: center;
		padding: 60px;
		background: rgba(255,255,255,0.02);
		border-radius: 12px;
		border: 1px dashed rgba(102,126,234,0.2);
	}

	#no-comments i {
		font-size: 48px;
		color: #6b7280;
		opacity: 0.5;
		margin-bottom: 15px;
	}

	/* Mobile Responsive */
	@media (max-width: 768px) {
		.comment-actions-desktop {
			display: none;
		}
		
		.comment-dropdown {
			display: block;
		}
		
		.comments-section {
			padding: 20px;
		}
		
		.comment-item {
			padding: 15px;
		}
		
		.comment-replies {
			padding-left: 15px;
		}
	}

	@media (min-width: 769px) {
		.comment-dropdown {
			display: none;
		}
	}

	/* Login Prompt */
	.login-prompt {
		background: rgba(255,255,255,0.03);
		padding: 40px;
		border-radius: 12px;
		margin-bottom: 30px;
		text-align: center;
		border: 1px solid rgba(102,126,234,0.1);
	}

	.login-prompt i {
		color: #667eea;
		font-size: 48px;
		margin-bottom: 20px;
		animation: pulse 2s infinite;
	}

	@keyframes pulse {
		0% { transform: scale(1); }
		50% { transform: scale(1.1); }
		100% { transform: scale(1); }
	}

	/* Refresh Button */
	.comments-list button[onclick*="refreshComments"] {
		background: transparent;
		border: 1px solid rgba(102,126,234,0.3);
		color: #667eea;
		padding: 6px 15px;
		border-radius: 8px;
		font-size: 14px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.comments-list button[onclick*="refreshComments"]:hover {
		background: rgba(102,126,234,0.1);
		transform: translateY(-1px);
	}

	/* Loading State */
	#comments-loading {
		text-align: center;
		padding: 50px;
	}

	#comments-loading i {
		color: #667eea;
		animation: spin 1s linear infinite;
	}

	@keyframes spin {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}


/* Main Container */
.details-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Server Info Cards Grid Fix */
.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(24, 26, 32, 0.98), rgba(30, 32, 40, 0.98));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 1.2rem;
}

.info-card-label {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-value {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Statistics Cards Fix */
.stats-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(24, 26, 32, 0.98), rgba(30, 32, 40, 0.98));
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Stats Cards Fix */
.map-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.map-card {
    background: rgba(19, 21, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.map-card:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.map-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.map-times {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.map-percentage {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 4px 10px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Players Tab Cards Fix */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.player-card {
    background: rgba(24, 26, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.player-card:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.player-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.player-score {
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 700;
}

.player-time {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Comments Section Fix */
.comments-container {
    background: rgba(24, 26, 32, 0.5);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.comment-item {
    background: rgba(19, 21, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.comment-item:hover {
    background: rgba(19, 21, 30, 0.8);
    border-color: rgba(102, 126, 234, 0.2);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.comment-author {
    flex: 1;
}

.comment-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.comment-date {
    color: #94a3b8;
    font-size: 0.75rem;
}

.comment-text {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Tabs Container Fix */
.tabs-container {
    background: rgba(24, 26, 32, 0.5);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.tabs-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-button {
    padding: 10px 20px;
    background: rgba(19, 21, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: #fff;
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .server-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .stats-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .server-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stats-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-list {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 15px;
        min-height: 80px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}
