/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* TimesLast Games Purple Theme Enhancements */

:root {
  --timeslast-primary: #9c27b0;
  --timeslast-dark: #1a0b2e;
  --timeslast-accent: #b366ff;
  --timeslast-light: rgba(123, 31, 162, 0.2);
}

/* Enhance navbar branding */
.navbar-brand {
  font-size: 1.5rem;
  color: #b366ff !important;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(179, 102, 255, 0.3);
  letter-spacing: 0.5px;
}

/* Enhanced button styling */
.btn-primary, .btn-default {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b366ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 102, 255, 0.4);
}

/* Game card enhancement */
.game-item {
  transition: all 0.3s ease;
}

.game-item:hover {
  transform: translateY(-4px);
}

/* Section titles with purple accent */
.section-title {
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #b366ff, #9c27b0);
  border-radius: 2px;
}

/* Footer enhancement */
.footer-copyright {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.8), rgba(123, 31, 162, 0.1));
  border-top: 2px solid rgba(179, 102, 255, 0.3);
}

/* Purple glowing effect for highlights */
.highlight-text {
  color: #b366ff;
  text-shadow: 0 0 10px rgba(179, 102, 255, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 11, 46, 0.5);
}

::-webkit-scrollbar-thumb {
  background: #9c27b0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b366ff;
}