/* SmashNBuy Custom Theme Styles */
/* Dark Theme with Purple Undertones */
/* Tagline: Smash the deal. Buy the best. */

:root {
  --smash-primary: #9B59B6;
  --smash-primary-light: #BB8FCE;
  --smash-primary-dark: #7D3C98;
  --smash-secondary: #E74C3C;
  --smash-accent: #F39C12;
  --smash-purple-glow: #8E44AD;
  --smash-dark: #0D0D0D;
  --smash-darker: #050505;
  --smash-card-bg: #1A1A2E;
  --smash-card-bg-hover: #1F1F3A;
  --smash-surface: #16162A;
  --smash-border: #2D2D4A;
  --smash-text: #E8E8E8;
  --smash-text-muted: #A0A0B0;
  --smash-gradient: linear-gradient(135deg, #9B59B6 0%, #8E44AD 50%, #6C3483 100%);
  --smash-gradient-hover: linear-gradient(135deg, #BB8FCE 0%, #9B59B6 50%, #7D3C98 100%);
  --smash-gradient-fire: linear-gradient(135deg, #E74C3C 0%, #9B59B6 100%);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--smash-text);
  font-size: 14px;
  line-height: 1.6;
  background-color: var(--smash-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--smash-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--smash-primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--smash-accent);
}

/* Top Bar */
#top {
  background: linear-gradient(180deg, #0D0D15 0%, #12121F 100%);
  border-bottom: 1px solid var(--smash-primary);
  padding: 8px 0;
  margin: 0;
  min-height: auto;
  box-shadow: 0 2px 20px rgba(155, 89, 182, 0.2);
}

#top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top .container::after {
  display: none;
}

#top .nav {
  float: none !important;
}

#top .nav.float-start,
#top .nav.float-end {
  float: none !important;
}

#top .list-inline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

#top .list-inline-item {
  padding: 0;
  margin: 0 !important;
}

#top .nav > .list-inline > .list-inline-item,
#top .nav > .list-inline .list-inline-item > a,
#top .nav > .list-inline .list-inline-item .dropdown > a,
#top .list-inline-item,
#top .list-inline-item a,
#top .list-inline-item .dropdown > a {
  color: var(--smash-text-muted);
  text-shadow: none;
  font-size: 13px;
}

#top .nav > .list-inline .list-inline-item > a:hover,
#top .nav > .list-inline .list-inline-item .dropdown > a:hover,
#top .list-inline-item a:hover,
#top .list-inline-item .dropdown > a:hover {
  color: var(--smash-primary-light);
}

#top .btn-link {
  color: var(--smash-text-muted);
  text-shadow: none;
  padding: 0;
}

#top .btn-link:hover {
  color: var(--smash-primary-light);
}

#top a {
  font-size: 13px;
}

#top .text-warning {
  color: var(--smash-primary-light) !important;
}

#top .dropdown-menu {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3);
}

#top .dropdown-menu .dropdown-item {
  color: var(--smash-text);
}

#top .dropdown-menu .dropdown-item:hover {
  background: var(--smash-primary);
  color: #fff;
}

/* Header */
header {
  background: linear-gradient(180deg, var(--smash-surface) 0%, var(--smash-dark) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--smash-border);
}

/* Logo */
#logo {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#logo h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2rem;
}

#logo h1 a {
  background: var(--smash-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

#logo img {
  max-width: 180px;
  max-height: 60px;
}

/* Tagline */
.site-tagline {
  font-size: 0.8rem;
  color: var(--smash-primary-light);
  font-weight: 500;
  margin-top: 5px;
  font-style: italic;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

/* Search */
#search {
  margin-bottom: 0;
}

#search .form-control-lg {
  height: 48px;
  font-size: 14px;
  background: var(--smash-card-bg);
  border: 2px solid var(--smash-border);
  border-radius: 25px 0 0 25px;
  padding: 0 20px;
  color: var(--smash-text);
  transition: all 0.3s ease;
}

#search .form-control-lg::placeholder {
  color: var(--smash-text-muted);
}

#search .form-control-lg:focus {
  border-color: var(--smash-primary);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
  background: var(--smash-card-bg-hover);
}

#search .btn-lg {
  height: 48px;
  background: var(--smash-gradient);
  border: none;
  border-radius: 0 25px 25px 0;
  padding: 0 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: #fff;
}

#search .btn-lg:hover {
  background: var(--smash-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
}

/* Cart */
#header-cart .btn-lg {
  background: var(--smash-gradient);
  border: none;
  height: 48px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
}

#header-cart .btn-lg:hover {
  background: var(--smash-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 25px rgba(155, 89, 182, 0.5);
}

#header-cart .dropdown-menu {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

#header-cart .dropdown-menu table {
  color: var(--smash-text);
}

/* Main Menu */
#menu {
  background: linear-gradient(180deg, var(--smash-card-bg) 0%, #151528 100%);
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--smash-border);
  border-bottom: 1px solid var(--smash-border);
}

#menu.navbar {
  padding: 0 1rem;
  margin-bottom: 0;
}

#menu .navbar-nav > li > a {
  color: var(--smash-text);
  text-shadow: none;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

#menu .navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--smash-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#menu .navbar-nav > li > a:hover::after {
  width: 80%;
}

#menu .navbar-nav > li > a:hover {
  color: var(--smash-primary-light);
  background: rgba(155, 89, 182, 0.1);
}

#menu .dropdown-menu {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

#menu .dropdown-inner a {
  color: var(--smash-text);
  padding: 10px 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

#menu .dropdown-inner ul li a:hover {
  background: var(--smash-gradient);
  color: #fff;
}

#menu .see-all {
  background: var(--smash-primary-dark);
  color: #fff;
  font-weight: 600;
}

#menu .see-all:hover {
  background: var(--smash-gradient);
}

#menu #category {
  color: var(--smash-primary-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#menu .navbar-toggler {
  border-color: var(--smash-primary);
}

#menu .navbar-toggler i {
  color: var(--smash-primary-light);
}

/* Hero Banner Section */
.smash-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #0D0D15 50%, #16162A 100%);
  padding: 80px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--smash-border);
}

.smash-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(155, 89, 182, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(142, 68, 173, 0.1) 0%, transparent 40%);
  animation: aurora 15s ease-in-out infinite;
}

@keyframes aurora {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-5%, -5%) rotate(5deg); }
}

.smash-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239B59B6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.smash-hero .container {
  position: relative;
  z-index: 1;
}

.smash-hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 0 40px rgba(155, 89, 182, 0.5);
}

.smash-hero h1 span {
  background: var(--smash-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.smash-hero .tagline {
  color: var(--smash-text-muted);
  font-size: 1.3rem;
  font-weight: 400;
}

.smash-hero .btn-smash {
  background: var(--smash-gradient);
  color: #fff;
  padding: 16px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.smash-hero .btn-smash:hover {
  background: var(--smash-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(155, 89, 182, 0.6);
}

/* Deal Badges */
.smash-badge {
  display: inline-block;
  background: var(--smash-gradient);
  color: #fff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 25px;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 5px 20px rgba(155, 89, 182, 0.4); }
  50% { box-shadow: 0 5px 30px rgba(155, 89, 182, 0.7); }
}

.smash-badge-hot {
  background: var(--smash-gradient-fire);
}

/* Tagline Marquee */
.tagline-marquee {
  background: linear-gradient(90deg, var(--smash-darker) 0%, var(--smash-card-bg) 50%, var(--smash-darker) 100%);
  border-top: 1px solid var(--smash-border);
  border-bottom: 1px solid var(--smash-border);
}

.tagline-marquee .text-warning {
  color: var(--smash-primary-light) !important;
  text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

/* Content */
#content {
  min-height: 400px;
  padding: 30px 0;
}

#common-home {
  background: var(--smash-dark);
}

/* Featured Section */
.featured-section {
  padding: 40px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--smash-text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--smash-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

/* Category Cards */
.category-card {
  background: var(--smash-card-bg) !important;
  border: 1px solid var(--smash-border);
  transition: all 0.3s ease;
}

.category-card:hover {
  background: var(--smash-card-bg-hover) !important;
  border-color: var(--smash-primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3) !important;
}

.category-card i {
  color: var(--smash-primary-light) !important;
  transition: all 0.3s ease;
}

.category-card:hover i {
  color: var(--smash-accent) !important;
  text-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.category-card h5 {
  color: var(--smash-text);
  transition: all 0.3s ease;
}

.category-card:hover h5 {
  color: var(--smash-primary-light);
}

/* Product Cards */
.product-thumb {
  border: 1px solid var(--smash-border);
  border-radius: 15px;
  margin-bottom: 30px;
  background: var(--smash-card-bg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-thumb:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(155, 89, 182, 0.3);
  border-color: var(--smash-primary);
}

.product-thumb h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.product-thumb h4 a {
  color: var(--smash-text);
}

.product-thumb h4 a:hover {
  color: var(--smash-primary-light);
}

.product-thumb .image {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.product-thumb .image img {
  transition: transform 0.5s ease;
}

.product-thumb:hover .image img {
  transform: scale(1.1);
}

.product-thumb .description {
  padding: 20px;
  background: var(--smash-card-bg);
}

.product-thumb .button-group {
  border-top: 1px solid var(--smash-border);
  background: var(--smash-surface);
}

.product-thumb .button-group button {
  background: transparent;
  color: var(--smash-text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.product-thumb .button-group button:hover {
  background: var(--smash-gradient);
  color: #fff;
}

.product-thumb .button-group button + button {
  border-left: 1px solid var(--smash-border);
}

/* Prices */
.price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--smash-primary-light);
}

.price-new {
  color: var(--smash-accent);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.price-old {
  color: var(--smash-text-muted);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.price-tax {
  font-size: 11px;
  color: var(--smash-text-muted);
}

/* Buttons */
.btn-primary {
  background: var(--smash-gradient);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--smash-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.btn-warning {
  background: var(--smash-accent);
  border: none;
  color: #000;
}

.btn-warning:hover {
  background: #d68910;
}

.btn-success {
  background: #27ae60;
  border: none;
}

.btn-success:hover {
  background: #1e8449;
}

.btn-danger,
.btn-info {
  background: var(--smash-secondary);
  border: none;
}

.btn-info:hover,
.btn-danger:hover {
  background: #c0392b;
}

.btn-light {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  color: var(--smash-text);
}

.btn-light:hover {
  background: var(--smash-card-bg-hover);
  border-color: var(--smash-primary);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: none;
}

.breadcrumb > li.breadcrumb-item {
  text-shadow: none;
  color: var(--smash-text-muted);
}

.breadcrumb > li.breadcrumb-item a {
  color: var(--smash-primary-light);
}

.breadcrumb > li.breadcrumb-item:after {
  border-color: var(--smash-border);
}

/* Forms */
.form-control {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  color: var(--smash-text);
}

.form-control:focus {
  background: var(--smash-card-bg-hover);
  border-color: var(--smash-primary);
  box-shadow: 0 0 15px rgba(155, 89, 182, 0.2);
  color: var(--smash-text);
}

.form-control::placeholder {
  color: var(--smash-text-muted);
}

/* Cards */
.card {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
}

.card-header {
  background: var(--smash-surface);
  border-bottom: 1px solid var(--smash-border);
  color: var(--smash-text);
}

/* Tables */
.table {
  color: var(--smash-text);
}

.table-bordered {
  border-color: var(--smash-border);
}

.table-bordered td,
.table-bordered th {
  border-color: var(--smash-border);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(155, 89, 182, 0.05);
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--smash-surface) 0%, var(--smash-darker) 100%);
  border-top: 2px solid var(--smash-primary);
  margin-top: 50px;
  padding-top: 60px;
  padding-bottom: 30px;
}

footer h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--smash-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--smash-gradient);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

footer a {
  color: var(--smash-text-muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--smash-primary-light);
  padding-left: 8px;
}

footer .list-unstyled li {
  margin-bottom: 12px;
}

footer hr {
  border-color: var(--smash-border);
  margin: 40px 0;
}

footer p {
  color: var(--smash-text-muted);
  font-size: 13px;
}

.footer-tagline {
  color: var(--smash-primary-light);
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
}

.social-links a {
  color: var(--smash-text-muted);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--smash-primary-light);
  text-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
  padding-left: 0;
}

/* Ratings */
.rating .fa-star {
  color: var(--smash-accent);
  text-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

/* Sale Badge */
.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--smash-gradient-fire);
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--smash-card-bg) 0%, var(--smash-surface) 100%);
  padding: 60px 0;
  margin: 0;
  border-top: 1px solid var(--smash-border);
  border-bottom: 1px solid var(--smash-border);
}

.newsletter-section h3 {
  color: var(--smash-text);
  margin-bottom: 15px;
}

.newsletter-section p {
  color: var(--smash-text-muted);
}

.newsletter-section .form-control {
  height: 55px;
  border-radius: 30px 0 0 30px;
  border: 2px solid var(--smash-border);
  background: var(--smash-dark);
  color: var(--smash-text);
  padding: 0 25px;
  font-size: 15px;
}

.newsletter-section .form-control:focus {
  border-color: var(--smash-primary);
}

.newsletter-section .btn {
  background: var(--smash-gradient);
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 0 35px;
  font-weight: 700;
  text-transform: uppercase;
  height: 55px;
  color: #fff;
}

.newsletter-section .btn:hover {
  background: var(--smash-gradient-hover);
}

/* Cookie Banner */
#cookie {
  background: var(--smash-card-bg);
  border-top: 1px solid var(--smash-primary);
  color: var(--smash-text);
}

/* Alert */
#alert .alert {
  background: var(--smash-card-bg);
  border: 1px solid var(--smash-border);
  color: var(--smash-text);
}

/* Pagination */
.pagination .page-link {
  background: var(--smash-card-bg);
  border-color: var(--smash-border);
  color: var(--smash-text);
}

.pagination .page-link:hover {
  background: var(--smash-primary);
  border-color: var(--smash-primary);
  color: #fff;
}

.pagination .page-item.active .page-link {
  background: var(--smash-gradient);
  border-color: var(--smash-primary);
}

/* Hero Features */
.hero-features .feature-item {
  padding: 20px;
  background: rgba(155, 89, 182, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(155, 89, 182, 0.2);
  transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
  background: rgba(155, 89, 182, 0.2);
  transform: translateY(-5px);
}

.hero-features .feature-item i {
  color: var(--smash-primary-light);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .smash-hero h1 {
    font-size: 2.5rem;
  }

  .smash-hero .tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  #menu {
    border-radius: 0;
  }

  #menu div.dropdown-menu {
    background: var(--smash-surface);
  }

  #menu .dropdown-inner a {
    color: var(--smash-text);
  }

  .smash-hero {
    padding: 50px 0;
  }

  .smash-hero h1 {
    font-size: 2rem;
  }

  header {
    padding: 15px 0;
  }

  #logo h1 {
    font-size: 1.5rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--smash-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--smash-primary-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--smash-primary);
}

/* Selection */
::selection {
  background: var(--smash-primary);
  color: #fff;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Effects */
.glow-purple {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.text-glow {
  text-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
}
