/* General styling */
:root {
  --primary-color: #0d6efd;
  --border-color: #eaeaea;
  --light-gray: #f8f9fa;
  --text-muted: #6c757d;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  background-color: #f8f9fa;
}

/* Navbar styles */
.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.dropdown-item:hover {
  background-color: var(--light-gray);
}

/* Profile header styling */
.profile-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.profile-avatar-wrapper {
  position: relative;
  text-align: center;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-upload-link {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
}

.avatar-upload-link:hover {
  text-decoration: underline;
}

.profile-info {
  flex: 1;
}

.profile-info h1 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Card styling */
.card {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.card-header {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Form styling */
.form-control, .input-group-text {
  border-radius: 4px;
  border-color: #ddd;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.form-text {
  color: #888;
  font-size: 0.85rem;
}

.btn {
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Alert styling */
.alert {
  border-radius: 8px;
}

/* Footer styling */
footer {
  font-size: 0.9rem;
}

footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer ul li {
  margin-bottom: 0.5rem;
}

.social-links {
  font-size: 1.25rem;
}

/* Game card styles */
.game-card-img {
  height: 200px;
  object-fit: cover;
}

/* Dashboard navigation */
.nav-pills .nav-link {
  border-radius: 0;
  padding: 0.75rem 1.25rem;
  color: #666;
  border-left: 3px solid transparent;
}

.nav-pills .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border-left: 3px solid var(--primary-color);
}

.nav-pills .nav-link.text-danger {
  color: #dc3545 !important;
}

.nav-pills .nav-link.text-danger:hover {
  background-color: rgba(220, 53, 69, 0.05);
}

/* Other utility classes */
.white-space-pre-line {
  white-space: pre-line;
}

/* Clean error styles */
.validation-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Any additional custom styles needed for the application */

/* Dashboard Game Cards */
.game-card {
  height: 320px;
  transition: transform 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.game-thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  filter: brightness(1);
}

.game-card .game-thumbnail {
  height: 100px;
}

.game-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.game-info h3 {
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.game-info p {
  color: rgba(255, 255, 255, 0.8);
}

.game-info .btn-light {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  backdrop-filter: blur(4px);
}

.game-info .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.25);
} 

@media (max-width: 768px) {

}


