:root {
    --primary: #1a1a1a;
    --accent: #ffd700;
    --dark-bg: #0a0a0a;
    --card-bg: #121212;
    --border: #222222;
    --text-primary: #ffffff;
    --text-secondary: #999999;
	--text-secondary2: #d5d5d5;
    --twitch: #9146FF;
	--alert-success: rgba(25, 135, 84, 0.9);
    --alert-warning: rgba(255, 193, 7, 0.9);
    --alert-danger: rgba(220, 53, 69, 0.9);
    --alert-info: rgba(13, 110, 253, 0.9);
  }
	  
	  html, body {
    max-width: 100%;
    overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

#cookie-banner a {
  color: var(--accent-color);
  font-weight: 500;
}
  
body {
    background-color: var(--dark-bg) !important;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    position: relative;
    background-image: 
      radial-gradient(circle at 15% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 25%),
      radial-gradient(circle at 85% 30%, rgba(145, 70, 255, 0.03) 0%, transparent 25%),
      linear-gradient(to bottom, #0a0a0a, #0f0f0f);
    background-attachment: fixed;
    min-height: 100vh;
	padding-top: 80px;
  }

.container {
	max-width: 1650px !important;
}
  
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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' fillRule='evenodd'%3E%3Cg fill='%23222222' fillOpacity='0.15'%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");
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
  }

.placeholder-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #333;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
}

/* Scroll-to-Top Button */
#scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--accent);
      color: #000;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 1.4rem;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    #scrollTopBtn:hover {
      background-color: #ffc107;
    }
  
  h1, h2, h3, .navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-brand {
    font-size: 1.0rem;
    position: relative;
    padding-left: 35px;
  }
  
  .navbar-brand::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M20.96 17.84l-1.45-1.45a1 1 0 0 0-1.41 0l-2.12 2.12-1.42-1.42 2.12-2.12a1 1 0 0 0 0-1.41l-1.45-1.45a1 1 0 0 0-1.41 0L8.05 17.88a4 4 0 0 0 5.66 5.66l7.25-7.25a1 1 0 0 0 0-1.45zM12.17 21a2 2 0 0 1-2.83-2.83l.7-.7 2.83 2.83-.7.7zM5.56 4.46l1.45 1.45a1 1 0 0 0 1.41 0L10.54 3.8l1.42 1.42L9.84 7.34a1 1 0 0 0 0 1.41l1.45 1.45a1 1 0 0 0 1.41 0l5.77-5.77a4 4 0 0 0-5.66-5.66L5.56 3.02a1 1 0 0 0 0 1.44zm7.84-1.42L11.88 4.6 9.05 1.77l1.52-1.52a2 2 0 0 1 2.83 2.83z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

	.nav-link.active {
  	color: var(--accent) !important;
  font-weight: bold;
  background-color: rgba(255, 215, 0, 0.05);
}
  
  .nav-link:hover {
    background-color: rgba(255, 215, 0, 0.05);
    color: var(--accent) !important;
  }
  
  .btn-twitch {
    background-color: var(--twitch);
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: #fff;
  }
  
  .btn-twitch:hover {
    background-color: #7b30e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
.btn-participate {
  background: linear-gradient(45deg, #e6b800, var(--accent), #e6b800);
  background-size: 200% auto;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-participate:hover {
  background-position: right center;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 215, 0, 0.4);
}

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

.btn-participate:hover::after {
  left: 100%;
}

.participation-cta p {
  color: var(--text-primary);
  font-size: 1.1rem;
}

@media (max-width: 767.98px) {
  .btn-participate {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
  
  .participation-cta p {
    font-size: 0.95rem;
  }
}
  
  .hero-section {
    padding: 5rem 0 3rem;
    position: relative;
  }
  
  .hero-title {
    color: var(--accent);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    position: relative;
    display: inline-block;
  }
  
  .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  
  .hero-subtitle {
    max-width: 800px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-secondary2);
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .hero-subtitle strong {
    color: var(--text-primary);
  }
  
  .stream-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
 
  
  .stream-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #222, var(--accent));
    z-index: -1;
    border-radius: 9px;
    opacity: 0.5;
  }
  
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .participants-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .card-header {
    background-color: #1a1a1a !important;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  
  .card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05));
    transform: skewX(-15deg);
  }
  
  .participants-header {
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.5rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  
  .participants-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05));
    transform: skewX(-15deg);
  }
  
  .participants-title {
    color: var(--accent);
    margin: 0;
    font-size: 1.45rem;
    position: relative;
    z-index: 1;
  }
  
  .table-dark {
    background-color: transparent;
    color: var(--text-primary);
  }
  
  .table-dark thead th {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: none;
    padding: 1rem;
  }
  
  .table-dark tbody tr {
    transition: all 0.2s ease;
  }
  
  .table-dark tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.03);
  }
  
  .table-dark td {
    border-color: var(--border);
    padding: 0.75rem 1rem;
  }
  
  .rounded-img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
	  margin-right: 5px;
  }

  .participant-row:hover .rounded-img {
    transform: scale(1.05);
    border-color: var(--accent);
  }

  .latest-registrations {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .latest-registrations::-webkit-scrollbar {
    width: 6px;
  }

  .latest-registrations::-webkit-scrollbar-track {
    background: transparent;
  }

  .latest-registrations::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 6px;
  }
  
  .twitch-name {
    font-weight: 500;
  }
  
  .text-info, .text-warning {
    transition: all 0.2s ease;
  }
  
  .text-info:hover, .text-warning:hover {
    text-decoration: none;
    filter: brightness(1.2);
  }

.text-secondary {
    --bs-text-opacity: 1;
    color: rgb(206 206 206) !important;
}
  
  .countdown-container {
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }

.countdown-container a {
    color: var(--accent) !important;
  }
  
  .countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03), transparent 70%);
    z-index: -1;
  }
  
  .countdown-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-mUWBYor0tlihMjTZ5sJBU2Mr4AIWOd.png');
    background-size: 50%;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
  }
  
  .countdown-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
  }
  
  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .countdown-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  }
  
  .countdown-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .text-accent {
    color: var(--accent) !important;
  }
  
  .border-border {
    border-color: var(--border) !important;
  }
  
  .prize-card {
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-color: var(--border) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .prize-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03), transparent 70%);
    z-index: -1;
  }
  
  .prize-label {
    background-color: #222;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .prize-img-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .prize-img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  }
  
  .prize-card:hover .prize-img {
    transform: scale(1.05);
  }
  
  .prize-value {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  .steam-link {
    display: inline-flex;
    align-items: center;
    color: #66c0f4;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-top: 0.75rem;
  }
  
  .steam-link:hover {
    color: #a4d7f5;
    text-decoration: none;
  }
  
  .steam-link i {
    margin-right: 0.5rem;
  }
  
  .list-group-item {
    background-color: transparent !important;
    border-color: var(--border) !important;
    transition: background-color 0.2s ease;
  }
  
  .list-group-item:hover {
    background-color: rgba(255, 215, 0, 0.02) !important;
  }
  
  .list-group-item i {
    transition: transform 0.2s ease;
  }
  
  .list-group-item:hover i {
    transform: scale(1.1);
  }
  
  @media (max-width: 991.98px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .participants-card {
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section {
      padding: 3rem 0 2rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .countdown-timer {
      gap: 0.5rem;
    }
    
    .countdown-value {
      font-size: 1.5rem;
      width: 50px;
      height: 50px;
    }
    
    .prize-img-container {
      height: 150px;
    }
  }
  
  /* Animated background effect
  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  } */
  
  /*.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(-45deg, #0a0a0a, #111111, #0f0f0f, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
  }*/

.participant-row {
  transition: all 0.2s ease;
}

.participant-row:hover {
  background-color: rgba(255, 215, 0, 0.03);
}

.latest-registrations {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.latest-registrations::-webkit-scrollbar {
  width: 6px;
}

.latest-registrations::-webkit-scrollbar-track {
  background: transparent;
}

.latest-registrations::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 6px;
}

.btn-outline-warning {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-warning:hover {
  background-color: var(--accent);
  color: #000;
}

.btn-outline-secondary {
  color: var(--text-secondary);
  border-color: var(--border);
}

.btn-outline-secondary:hover {
  background-color: var(--border);
  color: var(--text-primary);
  border-color: var(--border);
}

.server-status-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767.98px) {
	body {
		padding-top: 80px;
	}
  .server-status-content {
    margin-top: 1rem;
  }
}

/* Live Match Ticker Styles */
.live-ticker-container {
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}


.live-ticker-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.live-ticker-title {
  margin: 0;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.live-indicator {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.2));
  color: #dc3545;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(220, 53, 69, 0.2);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
  position: relative;
  z-index: 1;
}

.live-indicator-dot {
  width: 10px;
  height: 10px;
  background-color: #dc3545;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(220, 53, 69, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.match-ticker-list {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding: 0.5rem;
}

.match-ticker-list::-webkit-scrollbar {
  width: 6px;
}

.match-ticker-list::-webkit-scrollbar-track {
  background: transparent;
}

.match-ticker-list::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 6px;
}

.match-ticker-item {
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.5), rgba(18, 18, 18, 0.5));
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.match-ticker-item:last-child {
  margin-bottom: 0;
}

.match-ticker-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.2);
}

.match-ticker-item.match-live {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(18, 18, 18, 0.7));
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.match-ticker-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 70%);
  z-index: -1;
}

.match-ticker-status-badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  z-index: 2;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.status-badge.live {
  background: linear-gradient(to right, #dc3545, #e35d6a);
  color: white;
}

.status-badge.next {
  background: linear-gradient(to right, #343a40, #495057);
  color: white;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
}

.match-ticker-players {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}

.match-ticker-player {
  flex: 1;
  max-width: 45%;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.match-ticker-player.ct-side {
  background: linear-gradient(to bottom, rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.02));
  border-left: 3px solid rgba(13, 110, 253, 0.3);
}

.match-ticker-player.t-side {
  background: linear-gradient(to bottom, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.02));
  border-right: 3px solid rgba(220, 53, 69, 0.3);
}

.player-ticker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-ticker-image {
  flex-shrink: 0;
  position: relative;
}

.player-ticker-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.match-ticker-player.ct-side .player-ticker-image img {
  border-color: #0d6efd;
}

.match-ticker-player.t-side .player-ticker-image img {
  border-color: #dc3545;
}

.match-ticker-player:hover .player-ticker-image img {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.team-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-indicator.ct {
  background-color: #0d6efd;
  color: white;
}

.team-indicator.t {
  background-color: #dc3545;
  color: white;
}

.player-ticker-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.player-ticker-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-ticker-elo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.elo-value {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.match-ticker-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.vs-text {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.elo-diff-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.elo-diff-badge span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 0.1rem;
}

.elo-diff-badge strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.match-ticker-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.match-ticker-round {
  font-weight: 500;
  color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.watch-match-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, var(--accent), #e6b800);
  color: #000;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.watch-match-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  color: #000;
}

.no-matches {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  text-align: center;
}

.no-matches i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-matches p {
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive Anpassungen */
@media (max-width: 991.98px) {
  .match-ticker-players {
    padding: 0;
  }
  
  .player-ticker-image img {
    width: 50px;
    height: 50px;
  }
  
  .vs-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .match-ticker-players {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .match-ticker-player {
    max-width: 100%;
  }
  
  .match-ticker-vs {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .match-ticker-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .watch-match-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .player-ticker-content {
    gap: 0.75rem;
  }
  
  .player-ticker-image img {
    width: 45px;
    height: 45px;
  }
  
  .team-indicator {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
  
  .player-ticker-name {
    font-size: 1rem;
  }
}

/* Current Match Card Improvements */
.current-match-card {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.9));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.current-match-header {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.9));
  color: #000;
  padding: 0.5rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.current-match-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  transform: skewX(-15deg);
}

.current-match-body {
  padding: 1.5rem;
  background-color: var(--card-bg);
}

.current-match-players {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}


.current-match-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.current-match-player-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.current-match-player-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.current-match-player-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.current-match-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.current-match-vs-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}

.current-match-elo {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  text-align: center;
}

.current-match-connect {
  position: relative;
  margin-top: 1rem;
}

.connect-input {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  font-family: monospace;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.connect-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0 4px 4px 0;
  color: var(--text-secondary);
  padding: 0 1rem;
  transition: all 0.2s ease;
}

.connect-btn:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--accent);
}

.connect-notice {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.75rem;
}
	  .connect-ip-info {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.9));
    color: #000;
    padding: 0.5rem;
}
	  .connect-ip-info p{
    color: #000;
		  font-size: 0.9em;
}
	  /* Server Connect Button */
  .server-connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #198754, #20c997);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(32, 201, 151, 0.3);
    margin-top: 0.5rem;
    width: 100%;
  }

  .server-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 201, 151, 0.4);
    background: linear-gradient(45deg, #20c997, #198754);
  }

  .server-connect-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
  }
	  .alert-warning {
    background-color: var(--alert-warning);
    color: #000;
    border-color: rgba(255, 193, 7, 0.5);
  }

  .alert-danger {
    background-color: var(--alert-danger);
    color: #fff;
    border-color: rgba(220, 53, 69, 0.5);
  }

  .alert-info {
    background-color: var(--alert-info);
    color: #fff;
    border-color: rgba(13, 110, 253, 0.5);
  }
  .queue-list {
	      max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
	  }

/* Steam-Profil Formular Styling */
.steam-profile-form {
  background-color: rgba(18, 18, 18, 0.7);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.steam-profile-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03), transparent 70%);
  z-index: -1;
}

.steam-profile-form .form-label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.steam-profile-form .form-label i {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.steam-profile-form .form-control {
  background-color: rgba(26, 26, 26, 0.7) !important;
  border: 1px solid var(--border);
  color: var(--text-primary) !important;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.steam-profile-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.15);
  background-color: rgba(30, 30, 30, 0.7) !important;
}

.steam-profile-form .form-text {
  color: var(--text-secondary) !important;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.steam-profile-form .form-text a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

.steam-profile-form .form-text a:hover {
  text-decoration: underline;
  color: #e6b800;
}

/* Additional Info Styling */
.additional-info {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--border);
}

.additional-info p {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.additional-info strong {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.additional-info strong i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.additional-info a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

.additional-info a:hover {
  text-decoration: underline;
  color: #e6b800;
}

/* FACEIT Elo Badge */
#faceit-elo {
  display: inline-block;
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 0.25rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Button Styling */
.btn-warning {
  background: linear-gradient(45deg, #e6b800, var(--accent), #e6b800);
  background-size: 200% auto;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-warning:hover {
  background-position: right center;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn-outline-warning {
  color: var(--accent);
  border-color: var(--accent);
  background-color: transparent;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-warning:hover {
  background-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Success Message Styling */
.text-success {
  color: #28a745 !important;
}

/* Twitch Profile Section */
.twitch-profile-section {
  background-color: rgba(145, 70, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(145, 70, 255, 0.2);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.twitch-profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--twitch);
  padding: 3px;
  background-color: #0e0e0e;
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.twitch-profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.twitch-profile-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(145, 70, 255, 0.1), transparent 70%);
  z-index: 1;
}

.twitch-username {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.twitch-status {
  display: inline-flex;
  align-items: center;
  background-color: rgba(145, 70, 255, 0.1);
  color: var(--twitch);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.twitch-status i {
  margin-right: 0.5rem;
}

.twitch-info {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.twitch-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--twitch);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.twitch-link:hover {
  background-color: #7b30e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(145, 70, 255, 0.3);
  color: white;
  text-decoration: none;
}

.twitch-link i {
  margin-right: 0.5rem;
}

/* Form Section Title */
.form-section-title {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
}

.form-section-title i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.form-section-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Neue strukturierte Komponenten */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-header.justify-content-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header.live {
  border-bottom-color: #dc3545;
}

.section-header.live::after {
  background: linear-gradient(90deg, #dc3545, transparent);
}

.section-title {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 600;
}

.section-header.live .section-title {
  color: #dc3545;
}

.profile-card {
  background-color: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
	margin-bottom: 20px;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03), transparent 70%);
  z-index: -1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-badge.connected {
  background-color: rgba(25, 135, 84, 0.1);
  color: #28a745;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

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

.status-badge i {
  margin-right: 0.5rem;
}

.profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-details {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--border);
}

.detail-item {
  display: flex;
  margin-bottom: 0.75rem;
  align-items: center;
}

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

.detail-label {
  font-weight: 500;
  color: var(--text-primary);
  width: 130px;
  display: flex;
  align-items: center;
}

.detail-label i {
  margin-right: 0.5rem;
}

.detail-value {
  flex: 1;
}

.tournament-join-card {
  background-color: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tournament-info {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-item i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.info-item h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-item p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.info-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.info-box-header {
  background-color: rgba(26, 26, 26, 0.7);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.info-box-content {
  padding: 1rem;
  color: var(--text-secondary);
}

.info-box-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-box-content li {
  margin-bottom: 0.5rem;
}

.login-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--twitch);
  padding: 3px;
  background-color: #0e0e0e;
  box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

.login-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Live indicator dot animation */
.live-indicator-dot {
  width: 10px;
  height: 10px;
  background-color: #dc3545;
  border-radius: 50%;
  margin-right: 0.75rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(220, 53, 69, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.1rem;
  }
  
  .profile-card {
    padding: 1.25rem;
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  .tournament-join-card {
    margin-top: 1.5rem;
  }
}

/* Match Card Styling */
.match-header.section-header {
  margin-bottom: 1.5rem;
}

.status-badge.live {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.match-content {
  position: relative;
}

.match-players {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.match-player {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  position: relative;
}

.match-player.current-player {
  background-color: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
}
.player-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-image-container {
  position: relative;
  margin-bottom: 0.75rem;
}

.player-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.match-player.current-player .player-image {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.player-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  transform: translate(20%, 20%);
}

.player-info {
  text-align: center;
  width: 100%;
}

.player-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.player-elo {
  margin-bottom: 0.5rem;
}

.player-team {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.player-team.ct {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.player-team.t {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.player-team i {
  margin-right: 0.5rem;
}

.match-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.vs-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.elo-difference {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid var(--border);
}

.elo-difference span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.elo-badge {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.match-actions {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.action-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.action-header h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

.server-connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #198754, #20c997);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(32, 201, 151, 0.3);
  width: 100%;
}

.server-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(32, 201, 151, 0.4);
  background: linear-gradient(45deg, #20c997, #198754);
  color: white;
}

.server-connect-btn i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.action-notice {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 4px;
  color: var(--text-secondary);
}

.match-waiting {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Warteschlangen-Styling */
.status-badge.queue-count {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
}

.queue-status {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.status-info {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.status-info span {
  color: var(--text-primary);
}

.progress-container {
  display: flex;
  flex-direction: column;
}

.progress-wrapper {
  width: 100%;
  margin-bottom: 0.5rem;
}

.progress {
  height: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(45deg, #e6b800, var(--accent));
  height: 100%;
  transition: width 0.3s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.queue-list-container {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.queue-list-container::-webkit-scrollbar {
  width: 6px;
}

.queue-list-container::-webkit-scrollbar-track {
  background: transparent;
}

.queue-list-container::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 6px;
}

.queue-table {
  width: 100%;
  margin-bottom: 0;
  color: var(--text-primary);
  border-collapse: collapse;
}

.queue-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.queue-table th {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.queue-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
}

.queue-table tbody tr:last-child {
  border-bottom: none;
}

.queue-table tbody tr:hover {
  background-color: rgba(255, 215, 0, 0.03);
}

.queue-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}

/* Animation fÃ¼r neue Queue-EintrÃ¤ge */
@keyframes newQueueItem {
  0% {
    background-color: rgba(255, 215, 0, 0.2);
  }
  100% {
    background-color: transparent;
  }
}

.new-queue-item {
  animation: newQueueItem 2s ease-out;
}