@charset "UTF-8";
.min-height-100 {
  min-height: 100vh;
}

.in-process-banner {
  padding: 20px 0;
}
.in-process-banner .in-process-banner-message {
  text-align: center;
  color: white;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

html {
  background-color: black;
}

body {
  background-color: black;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  overflow-x: hidden;
}

#root {
  padding-top: 67px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  justify-content: space-between;
}
#root .content {
  flex-grow: 1;
  background-color: #fff3f3;
  display: flex;
  flex-direction: column;
}

.action-buttons {
  white-space: nowrap;
}
.action-buttons .action-btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  min-width: max-content;
}
.action-buttons .action-btn-group .action-btn {
  border: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  flex: 1;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.action-buttons .action-btn-group .action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-detail {
  background-color: #007bff;
  color: white;
  border: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-detail:hover {
  background-color: rgb(0, 98.4, 204);
  color: white;
}
.action-buttons .action-btn-group .action-btn.btn-action-edit {
  background-color: #ffc107;
  color: #0c0202;
  border: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-edit:hover {
  background-color: rgb(211, 158.25, 0);
  color: #0c0202;
}
.action-buttons .action-btn-group .action-btn.btn-action-deactivate, .action-buttons .action-btn-group .action-btn.btn-action-toggle.active {
  background-color: #6c757d;
  color: white;
  border: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-deactivate:hover, .action-buttons .action-btn-group .action-btn.btn-action-toggle.active:hover {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  color: white;
}
.action-buttons .action-btn-group .action-btn.btn-action-activate, .action-buttons .action-btn-group .action-btn.btn-action-toggle.inactive {
  background-color: #28a745;
  color: white;
  border: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-activate:hover, .action-buttons .action-btn-group .action-btn.btn-action-toggle.inactive:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  color: white;
}
.action-buttons .action-btn-group .action-btn.btn-action-delete {
  background-color: #d11f18;
  color: white;
  border: none;
}
.action-buttons .action-btn-group .action-btn.btn-action-delete:hover {
  background-color: rgb(163.2532188841, 24.2145922747, 18.7467811159);
  color: white;
}
@media (max-width: 1199px) {
  .action-buttons .action-btn-group {
    flex-direction: column;
    gap: 2px;
    min-width: 100px;
  }
  .action-buttons .action-btn-group .action-btn {
    font-size: 11px;
    padding: 4px 8px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .action-buttons .action-btn-group {
    min-width: 80px;
  }
  .action-buttons .action-btn-group .action-btn {
    font-size: 10px;
    padding: 3px 6px;
    width: 100%;
  }
}
h1 {
  font-size: 45px;
  font-weight: 700;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2.section-heading {
  font-size: 45px;
  margin-bottom: 32px;
}

a svg:focus {
  outline: none;
}

.section-subheading {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h3 a {
  text-decoration: underline;
  font-size: inherit;
  color: #0c0202;
  transition: all 0.2s ease-in-out;
}
h3 a:hover {
  color: #d11f18;
}

h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}

hr {
  margin: 32px 0;
}

h5 {
  font-size: 22px;
  font-weight: 600;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bg-custom {
  background-image: linear-gradient(125deg, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
}

p {
  margin-bottom: 8px;
  color: #6a6a6a;
  line-height: 1.5;
}

.mb-xl {
  margin-bottom: 32px;
}

.highlighted {
  background: linear-gradient(to bottom, rgb(239.6008583691, 125.3905579399, 120.8991416309), #d11f18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img-with-mask {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

section {
  padding: 80px 0;
  height: 100%;
}

.accent-overlay {
  background-image: linear-gradient(105deg, white 55%, #fff3f3 55%);
}
.accent-overlay .progress {
  background-color: white;
}

.accent-overlay-2 {
  background-image: url("../images/bg-overlay-lines-jvZG2Ss.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.accent-overlay-2 .progress {
  background-color: white;
}

.accent-overlay-3 {
  background-image: linear-gradient(105deg, #fff3f3 45%, white 45%);
}

.accent-overlay-4 {
  background-image: linear-gradient(115deg, white 50%, #fff3f3 50%);
}

.primary-background {
  background-color: white;
}

.hidden-image-background {
  background-image: url("../images/bg-back-image-u9uEEYj.jpg");
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  z-index: 100;
}
.hidden-image-background .hidden-image-background-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(12, 2, 2, 0.9);
  padding: 80px 0;
}
.hidden-image-background .hidden-image-background-overlay .section-subheading,
.hidden-image-background .hidden-image-background-overlay .section-heading,
.hidden-image-background .hidden-image-background-overlay h1 {
  color: white;
}
.hidden-image-background .hidden-image-background-overlay p {
  color: #f2f2f2;
}
.hidden-image-background.page-with-header {
  background-image: url("../images/page-header-L_7b44K.jpg");
}
.hidden-image-background.page-with-header .hidden-image-background-overlay {
  background-color: rgba(12, 2, 2, 0.7);
}
.hidden-image-background.page-with-header .hidden-image-background-overlay p {
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-background {
  background-image: linear-gradient(to bottom, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
}
.subscribe-background .subscribe-block {
  max-width: 100%;
  width: 700px;
  margin: 0 auto;
}
.subscribe-background .subscribe-block h1 {
  color: white;
}
.subscribe-background .subscribe-block .form-label {
  color: white;
  font-weight: 700;
}
.subscribe-background .subscribe-block .form-check-label {
  color: white;
}
.subscribe-background .subscribe-block .btn-primary {
  background-image: radial-gradient(at top left, #f2f2f2 0%, black 50%);
}

.full-content-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-content-center .full-page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.profile-games-section {
  padding: 16px 0;
  background-image: linear-gradient(125deg, #bfbfbf, #f2f2f2, #bfbfbf);
}

.map-wrapper {
  width: 100%;
  height: 300px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.sticky-top {
  top: 138px;
}
.sticky-top.in-process-banner {
  top: 67px;
}

@media (max-width: 576px) {
  .sticky-top.in-process-banner {
    top: 51px;
  }
}
.card-shadow {
  padding: 50px 40px;
  border-radius: 4px;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.faq {
  padding: 0 32px;
  margin: 0 auto;
  max-width: 100%;
  width: 800px;
  text-align: center;
}
.faq h4 {
  margin-bottom: 8px;
  font-weight: 700;
  background: linear-gradient(to bottom, rgb(239.6008583691, 125.3905579399, 120.8991416309), #d11f18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq p {
  margin-bottom: 32px;
  font-weight: 600;
}
.faq p:last-child {
  margin-bottom: 0;
}

#join-us,
#GoPay {
  scroll-margin-top: 67px;
}

.bg-accent {
  background-color: #f2f2f2 !important;
  color: #0c0202;
  border: 1px solid #2c2c2c;
}

.skew-wrapper {
  display: flex;
  align-items: center;
  -webkit-filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
}
.skew-wrapper .background-skew {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #d11f18 0%, #d11f18 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  color: white;
  z-index: 9;
  min-width: 130px;
  text-align: center;
}
.skew-wrapper .skew-content {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: white;
  height: 46px;
  width: 100%;
  margin-left: -70px;
  padding-left: 90px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  padding-right: 50px;
}
.skew-wrapper .skew-content a {
  color: #0c0202;
}
.skew-wrapper .skew-content a:hover {
  color: #d11f18;
}

@media (max-width: 1400px) {
  h1 {
    font-size: 40px;
  }
  h2.section-heading {
    font-size: 40px;
  }
  a,
  p,
  li {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 37px;
  }
  h2.section-heading {
    font-size: 37px;
  }
  .in-process-banner {
    padding: 16px 0;
  }
  .in-process-banner .in-process-banner-message {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h2.section-heading {
    font-size: 28px;
    margin-bottom: 24px;
  }
  h3 {
    font-size: 24px;
  }
  h4,
  h5 {
    font-size: 18px;
  }
  .section-heading {
    font-size: 16px;
  }
  a,
  p,
  li {
    font-size: 14px;
  }
  .in-process-banner {
    padding: 16px 0;
  }
  .in-process-banner .in-process-banner-message {
    font-size: 18px;
  }
}
.icon {
  width: 17px;
  height: 17px;
  color: #2c2c2c;
  transition: all 0.2s ease-in-out;
}
.icon:hover {
  color: #d11f18;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
    text-align: center;
  }
  h1 {
    margin-bottom: 24px;
  }
  .hidden-image-background .hidden-image-background-overlay {
    padding: 50px 0;
  }
  hr {
    margin: 24px 0;
  }
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=time]:focus,
input[type=month]:focus,
input[type=week]:focus,
textarea:focus,
select:focus {
  border-color: #d11f18 !important;
  box-shadow: none !important;
  outline: none !important;
}

.comments-section {
  margin-top: 2rem;
}
.comments-section .comments-title {
  color: #0c0202;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comments-section .comments-title i {
  color: #d11f18;
}
.comments-section .add-comment-form {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.comments-section .add-comment-form h4 {
  color: #0c0202;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
}
.comments-section .add-comment-form textarea {
  min-height: 100px;
  resize: vertical;
}
.comments-section .add-comment-form .btn {
  font-weight: 500;
}
.comments-section .add-comment-form .btn i {
  margin-right: 0.5rem;
}
.comments-section .comments-list .no-comments {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.comments-section .comments-list .no-comments p {
  margin: 0;
  font-size: 16px;
}
.comments-section .comments-list .no-comments p i {
  margin-right: 0.5rem;
  color: #d11f18;
}
.comments-section .comments-list .comment-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}
.comments-section .comments-list .comment-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.comments-section .comments-list .comment-item .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.comments-section .comments-list .comment-item .comment-header .comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.comments-section .comments-list .comment-item .comment-header .comment-author .comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d11f18;
}
.comments-section .comments-list .comment-item .comment-header .comment-author .comment-author-info strong {
  display: block;
  color: #0c0202;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.comments-section .comments-list .comment-item .comment-header .comment-author .comment-author-info small {
  color: #6c757d;
  font-size: 14px;
}
.comments-section .comments-list .comment-item .comment-header .comment-actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 14px;
}
.comments-section .comments-list .comment-item .comment-header .comment-actions .btn:hover {
  transform: translateY(-1px);
}
.comments-section .comments-list .comment-item .comment-content {
  color: #0c0202;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 3.25rem;
  white-space: unset;
}

@media (max-width: 576px) {
  #root {
    padding-top: 68px;
  }
}
.stats-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}
.stats-card h4 {
  color: #333;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
}
.stats-card .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.stats-card .stat-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stats-card .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stats-card .stat-item .stat-number.text-success {
  color: #28a745;
}
.stats-card .stat-item .stat-number.text-danger {
  color: #dc3545;
}
.stats-card .stat-item .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .stats-card {
    padding: 1.5rem;
  }
  .stats-card .stat-item {
    padding: 1rem 0.75rem;
  }
  .stats-card .stat-item .stat-number {
    font-size: 2rem;
  }
  .stats-card .stat-item .stat-label {
    font-size: 0.8rem;
  }
}
.btn-primary {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #fff3f3 0%, #d11f18 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-primary.small {
  padding: 8px 20px !important;
}
.btn-primary.smallest {
  padding: 4px 12px !important;
}
.btn-primary:hover {
  scale: 0.97;
}

.btn-info {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #fff3f3 0%, #17a2b8 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-info.small {
  padding: 8px 20px !important;
}
.btn-info.smallest {
  padding: 4px 12px !important;
}
.btn-info:hover {
  scale: 0.97;
}

.btn-secondary {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #fff3f3 0%, #6c757d 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-secondary.small {
  padding: 8px 20px !important;
}
.btn-secondary.smallest {
  padding: 4px 12px !important;
}
.btn-secondary:hover {
  scale: 0.97;
}

.btn-success {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #fff3f3 0%, #28a745 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-success.small {
  padding: 8px 20px !important;
}
.btn-success.smallest {
  padding: 4px 12px !important;
}
.btn-success:hover {
  scale: 0.97;
}

.btn-warning {
  -webkit-mask-image: url("/images/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/images/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-image: radial-gradient(at top left, #fff3f3 0%, orange 50%);
  border: none;
  font-weight: 600;
  padding: 15px 30px !important;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.btn-warning.small {
  padding: 8px 20px !important;
}
.btn-warning.smallest {
  padding: 4px 12px !important;
}
.btn-warning:hover {
  scale: 0.97;
}

.btn-group {
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.btn-group .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .btn:last-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group .btn-group-button {
  background-color: #f2f2f2;
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 4px 12px;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.btn-group .btn-group-button:active {
  border: none;
}
.btn-group .btn-group-button:hover {
  background-color: rgb(216.5, 216.5, 216.5);
}
.btn-group .btn-group-button.active {
  background-image: linear-gradient(to bottom, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073));
  border: none;
  color: white;
}

.btn-underline-primary {
  color: #0c0202;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.btn-underline-primary:hover {
  color: #d11f18;
}

.phone-link {
  text-decoration: none;
  color: #0c0202;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.phone-link svg {
  width: 20px;
  height: 20px;
  color: #d11f18;
}
.phone-link:hover {
  color: #d11f18;
}

.label {
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #f2f2f2;
  border-radius: 25px;
  padding: 4px 12px;
  width: fit-content;
}
.label.success {
  background-color: #28a745;
}
.label.warning {
  background-color: orange;
}

.payment-status-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin-top: 30px;
}
.payment-status-bar .item {
  text-decoration: none;
  padding: 6px 14px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid white;
  background-color: white;
  color: #0c0202;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.payment-status-bar .item:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.payment-status-bar .item:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.payment-status-bar .item.success {
  background-color: #28a745;
  color: white;
  box-shadow: 0 0 2px #28a745;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.payment-status-bar .item.success:hover {
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.payment-status-bar .item.error {
  background-color: #d11f18;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 2px #d11f18;
  transition: all 0.2s ease-in-out;
}
.payment-status-bar .item.error:hover {
  background-color: rgb(231.7210300429, 59.0686695279, 52.2789699571);
}
.payment-status-bar .item.warning {
  background-color: orange;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 2px orange;
  transition: all 0.2s ease-in-out;
}
.payment-status-bar .item.warning:hover {
  background-color: #ffb733;
}

@media (max-width: 768px) {
  .btn-primary {
    font-size: 14px;
    padding: 12px 24px !important;
  }
  .label {
    margin: 0 auto;
  }
}
.navbar {
  background-color: black;
  padding: 0;
}
.navbar .close-btn-offcanvas {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.navbar .close-btn-offcanvas:hover {
  color: #d11f18;
}
.navbar .close-btn-offcanvas:focus {
  outline: none;
}
.navbar p {
  color: white;
  font-weight: 600;
}
.navbar .nav-link {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 18px;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 100%;
  background-color: #d11f18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-in-out;
  color: #d11f18;
}
.navbar .nav-link:not(.btn-primary).show {
  color: white;
}
.navbar .nav-link:not(.btn-primary).show::after {
  color: #d11f18;
  transform: scaleX(1);
}
.navbar .nav-link:not(.btn-primary):hover {
  color: #d11f18;
}
.navbar .nav-link:not(.btn-primary):hover::after {
  transform: scaleX(1);
}
.navbar .nav-link:not(.btn-primary).active {
  color: #d11f18;
}
.navbar .nav-link:not(.btn-primary).active::after {
  transform: scaleX(1);
}
.navbar .nav-link:focus-visible {
  box-shadow: none;
}
.navbar .user-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  padding-right: 20px;
}
.navbar .user-box .user-box-image {
  width: 40px;
  height: 40px;
  background-color: white;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #d11f18;
}
.navbar .user-box .user-box-text a {
  white-space: nowrap;
}
.navbar .user-box .user-box-text p {
  font-size: 14px;
  margin-bottom: 0;
}
.navbar .user-box .user-box-text .user-box-link {
  font-size: 12px;
}
.navbar .dropdown-toggle::after {
  margin-left: 0;
}
@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 0;
    max-height: fit-content;
    overflow: hidden;
    transition: padding 0.4s linear, height 0.4s ease-in-out;
    display: block;
    padding: 0;
    margin-top: 4px;
    transition-delay: 0s;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item {
    position: relative;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item .badge {
    position: absolute;
    top: 50%;
    right: 10px;
    background-color: #d11f18;
    color: white;
    font-size: 10px;
    transform: translateY(-50%);
    border-radius: 12px;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:active, .navbar .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:focus-visible {
    outline: none;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item.active {
    background-color: #d11f18;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item.active .badge {
    background-color: #fff3f3;
    color: #d11f18;
  }
  .navbar .dropdown:hover .dropdown-menu:not(.show) {
    margin-top: 4px;
    padding: 4px 0;
    transition-delay: 0.3s;
    height: 1000px;
  }
  .navbar .dropdown:hover .nav-link::after {
    transform: scaleX(1);
  }
  .navbar .dropdown .dropdown-toggle.show::after {
    transform: scaleX(1);
  }
  .navbar .dropdown .dropdown-menu.show {
    height: 1000px;
    margin-top: 0;
    padding: 4px 0;
    transition-delay: 0s !important;
  }
}
@media (max-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    margin: 0;
    height: 0;
    max-height: fit-content;
    overflow: hidden;
    transition: padding 0.6s linear, height 0.4s ease-in-out, margin-top 0.6s linear;
    display: block;
    padding: 0;
    border: none;
    margin-top: 0;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item {
    position: relative;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item .badge {
    position: absolute;
    top: 50%;
    right: 10px;
    background-color: #d11f18;
    color: white;
    font-size: 10px;
    transform: translateY(-50%);
    border-radius: 12px;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:active, .navbar .dropdown .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item:focus-visible {
    outline: none;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item.active {
    background-color: #d11f18;
  }
  .navbar .dropdown .dropdown-menu .dropdown-item.active .badge {
    background-color: #fff3f3;
    color: #d11f18;
  }
  .navbar .dropdown .dropdown-menu.show {
    height: 500px;
    margin-top: 20px;
    padding: 4px 0;
  }
}
.navbar button:focus {
  box-shadow: none;
}
.navbar button:focus-visible {
  outline: none;
}

.navbar-brand {
  background-color: white;
  padding: 12px 12px;
  position: relative;
  display: inline-block;
}
.navbar-brand::before, .navbar-brand::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  background-color: white;
}
.navbar-brand::before {
  left: -14px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 90% 0);
  background-clip: content-box;
}
.navbar-brand::after {
  right: -14px;
  clip-path: polygon(0 0, 100% 0, 10% 100%, 0 100%);
  background-clip: content-box;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px 20px;
    font-size: 16px;
  }
  .navbar-expand-lg .navbar-nav .nav-link.btn-primary {
    margin: auto;
  }
  .offcanvas-footer .user-box {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar .offcanvas-body .user-box {
    display: none;
  }
  .navbar .offcanvas-footer {
    padding: 16px;
    display: flex;
    justify-content: center;
  }
  .navbar .offcanvas-footer .user-box .user-box-image {
    width: 50px;
    height: 50px;
  }
  .navbar .offcanvas-footer .user-box .user-box-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .navbar .offcanvas-footer .user-box .user-box-text a {
    text-decoration: none;
    color: white;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
  }
  .navbar .offcanvas-footer .user-box .user-box-text a:hover {
    color: #d11f18;
  }
  .navbar .offcanvas-footer .user-box .user-box-text .user-box-link {
    font-size: 14px;
  }
  .navbar .navbar-nav {
    align-items: center;
    gap: 4px;
  }
  .navbar .navbar-nav .nav-item {
    text-align: center;
  }
  .navbar .navbar-nav .nav-item .dropdown-item {
    text-align: center;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .navbar-brand {
    width: 150px;
    margin-left: 25px;
  }
}
footer {
  background-color: black;
  padding: 48px 0;
  text-align: start;
  z-index: 100;
}

.copyright {
  color: white;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.copyright a {
  white-space: nowrap;
  text-decoration: none;
  color: #138ef7;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.copyright a:hover {
  color: rgb(68.3278688525, 165.618852459, 248.6721311475);
}

h5 {
  color: white;
  margin-bottom: 32px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  color: white;
  padding: 4px 0;
}
ul li a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
ul li a:hover {
  color: #d11f18;
}
ul li a svg {
  color: #d11f18;
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

footer ul li {
  padding: 0;
  margin: 4px 0;
}
footer ul li a {
  padding: 6px 0;
  display: block;
}

.logo-light {
  margin-bottom: 32px;
}

.social-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: nowrap;
}
.social-container .social-item {
  text-decoration: none;
  color: white;
  background-color: #d11f18;
  padding: 8px;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}
.social-container .social-item svg {
  width: 25px;
  height: 25px;
}
.social-container .social-item:hover {
  background-color: rgb(163.2532188841, 24.2145922747, 18.7467811159);
}

.toast-container {
  z-index: 1055;
}

.toast {
  font-weight: 600;
  font-size: 16px;
  color: white;
  border-radius: 4px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  min-width: 300px;
}
.toast .toast-body {
  padding: 16px;
}
.toast.alert-success {
  background-color: #28a745;
  color: white;
}
.toast.alert-danger, .toast.alert-error {
  background-color: #d11f18;
  color: white;
}
.toast.alert-warning, .toast.alert-info {
  background-color: orange;
  color: #0c0202;
}
.toast.alert-info {
  background-color: #17a2b8;
  color: white;
}
.toast.error {
  background-color: #d11f18;
  color: white;
}
.toast.success {
  background-color: #28a745;
  color: white;
}
.toast.info {
  background-color: orange;
  color: #0c0202;
}

@media (max-width: 1400px) {
  .copyright {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .copyright {
    font-size: 14px;
  }
  footer ul li {
    white-space: nowrap;
  }
  footer ul li svg {
    margin-right: 4px;
  }
  .social-container .social-item {
    padding: 6px;
  }
}
@media (max-width: 992px) {
  footer {
    text-align: center;
  }
  .social-container {
    justify-content: center;
  }
  .logo-light {
    margin-bottom: 24px;
  }
  h5 {
    margin-bottom: 16px;
  }
}
@media (max-width: 568px) {
  .social-container .social-item {
    padding: 5px;
  }
}
#login-page .form-wrapper, #register-page .form-wrapper {
  width: 500px;
  max-width: 80%;
  margin: 0 auto;
}

.flatpickr-calendar .flatpickr-day:hover {
  background-color: #fff3f3;
  border-color: #fff3f3;
  color: #0c0202;
}
.flatpickr-calendar .flatpickr-day.today {
  border-color: #d11f18;
}
.flatpickr-calendar .flatpickr-day.today:hover {
  background-color: #fff3f3;
  border-color: #d11f18;
  color: #0c0202;
}
.flatpickr-calendar .flatpickr-day.selected {
  background-color: #d11f18;
  border-color: #d11f18;
  color: white;
}
.flatpickr-calendar .flatpickr-day.selected.nextMonthDay, .flatpickr-calendar .flatpickr-day.selected.prevMonthDay {
  background-color: #d11f18;
  border-color: #d11f18;
  color: white;
}
.flatpickr-calendar .flatpickr-day.selected:hover {
  background-color: #d11f18;
  border-color: #d11f18;
  color: white;
}

#small-form-page {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#small-form-page .form-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

label, .form-label {
  color: #0c0202;
  margin-bottom: 10px;
}

.col-form-label {
  color: #0c0202;
  margin-bottom: 10px;
  padding: 0;
  line-height: 1;
}

.choices {
  border-radius: 4px;
  margin-bottom: 20px;
}
.choices:last-child {
  margin-bottom: 20px;
}
.choices .choices__inner {
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  font-size: 16px;
  padding: 6px 12px;
  line-height: 1.5;
  min-height: fit-content;
}
.choices .choices__inner .choices__list--single {
  padding: 0 16px 0 0;
}
.choices .choices__list--dropdown {
  background-color: white;
  border-radius: 4px;
  z-index: 1040;
}
.choices .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #fff3f3;
  color: #0c0202;
}
.choices .choices__list--dropdown .choices__item--selectable.is-selected {
  background-color: #d11f18;
  color: white;
}
.choices.is-invalid .choices__inner {
  border-color: #dc3545;
}

.form-control {
  border-radius: 4px;
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  margin-bottom: 20px;
  font-size: 16px;
}
.form-controltextarea {
  resize: none;
  height: 200px;
}
.form-control:focus {
  background-color: #f2f2f2;
  border: 2px solid #d11f18;
  box-shadow: none;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.form-control {
  resize: none;
  height: 200px;
}

.invalid-feedback {
  margin-bottom: 10px;
  margin-top: 5px;
  color: #dc3545;
  font-size: 0.875em;
  display: block;
  font-weight: 500;
}

.form-check {
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
.form-check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  height: auto;
  display: none;
}
.form-check .form-check-input:checked + .form-check-label {
  background-color: #f2f2f2;
  color: #0c0202;
  border: 2px solid #28a745;
}
.form-check .form-check-input:checked + .form-check-label::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.form-check .form-check-input:focus + .form-check-label {
  box-shadow: none;
  border: 2px solid #2c2c2c;
}
.form-check .form-check-label {
  display: inline-block;
  position: relative;
  padding: 6px 25px 6px 40px;
  border: 2px solid #f2f2f2;
  border-radius: 25px;
  cursor: pointer;
  background-color: white;
  line-height: 1.5;
  color: #0c0202;
}

form .btn-group {
  border-radius: 0;
  width: fit-content;
  flex-wrap: nowrap;
}
form .btn-group .btn {
  position: relative;
  border: 2px solid #f2f2f2;
  color: #0c0202;
  background-color: transparent;
  border-radius: 25px;
  margin-bottom: 20px;
  padding: 6px 25px 6px 40px;
  background-color: white;
}
form .btn-group .btn:hover {
  background-color: #f2f2f2;
  border: 2px solid #6a6a6a;
  color: #0c0202;
}
form .btn-group .btn:focus, form .btn-group .btn:focus-visible {
  box-shadow: none;
  border: 2px solid #f2f2f2;
}
form .btn-group .btn:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
form .btn-group .btn-check:checked + .btn {
  background-color: #f2f2f2;
  color: #0c0202;
  border: 2px solid #28a745;
}
form .btn-group .btn-check:checked + .btn::before {
  content: "✔";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #28a745;
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .choices:invalid .choices__inner {
  border-color: #dc3545;
}

@media (max-width: 1200px) {
  label, .form-label {
    font-size: 14px;
  }
}
.profile-block {
  justify-content: center;
  align-items: center;
}
.profile-block .profile-img {
  max-width: 100%;
  width: 200px;
}
.profile-block .profile-text p {
  margin-bottom: 8px;
  line-height: 20px;
  color: #2c2c2c;
}
.profile-block .profile-text p:last-child {
  margin-bottom: 0;
}
.profile-block .profile-text a {
  margin-bottom: 8px;
  text-decoration: none;
  color: #2c2c2c;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  font-weight: 600;
  width: fit-content;
}
.profile-block .profile-text a svg {
  width: 20px;
  height: 20px;
  color: #d11f18;
  margin-right: 8px;
}
.profile-block .profile-text a:hover {
  color: #d11f18;
}
.profile-block .profile-text .verify-box {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.profile-block .profile-text .verify-box svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.profile-block .profile-text .verified svg {
  color: #28a745;
}
.profile-block .profile-text .unverified svg {
  color: orange;
}

.profile-card {
  height: 100%;
  background-color: white;
  border-radius: 4px;
  padding: 50px;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.profile-card.alert {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team-label {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border-radius: 25px;
  background-color: black;
}
.team-label.active {
  background-color: #28a745;
}
.team-label.inactive {
  background-color: orange;
}

.team-card {
  background-color: white;
  border-radius: 4px;
  padding: 50px;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
}
.team-card .team-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.team-card .team-card-header h3 {
  margin-bottom: 0;
}
.team-card .team-card-header .team-player-img {
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border: 2px solid #d11f18;
}
.team-card .team-card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.progress-label {
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-value {
  font-weight: 700;
  color: #d11f18;
}

.progress-wrapper {
  margin-bottom: 16px;
}
.progress-wrapper:last-child {
  margin-bottom: 0;
}

.progress {
  height: 10px;
  background-color: #fff3f3;
}

@media (max-width: 768px) {
  .TEAMTEAM .vs-container {
    min-height: 80px;
  }
}
@media (max-width: 576px) {
  .TEAMTEAM .vs-container {
    min-height: 60px;
  }
}
@media (max-width: 991px) {
  .TEAMTEAM .vs-text {
    font-size: 35px;
    letter-spacing: 3px;
  }
}
@media (max-width: 768px) {
  .TEAMTEAM .vs-text {
    font-size: 30px;
    letter-spacing: 3px;
  }
}
@media (max-width: 576px) {
  .TEAMTEAM .vs-text {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
@media (max-width: 991px) {
  .TEAMTEAM .vs-text::before {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .TEAMTEAM .vs-text::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .TEAMTEAM .vs-text::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .TEAMTEAM .vs-text::after {
    width: 85px;
    height: 85px;
    border-width: 3px;
  }
}
@media (max-width: 768px) {
  .TEAMTEAM .vs-text::after {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }
}
@media (max-width: 576px) {
  .TEAMTEAM .vs-text::after {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }
}
.TEAMTEAM .player-card-team-wrapper {
  display: inline-block;
}
.TEAMTEAM .player-card-team-wrapper .player-card-preview {
  width: 165px;
  display: inline-block;
}
.TEAMTEAM .player-card-team-wrapper .player-card-preview:first-of-type {
  margin-right: 16px;
}
.TEAMTEAM .player-card-team-wrapper .floating-crown {
  position: absolute;
  top: -40px;
  right: -35px;
  font-size: 55px;
}
@media (max-width: 1399px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 50px;
    top: -35px;
    right: -30px;
  }
}
@media (max-width: 1199px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 50px;
    top: -30px;
    right: -35px;
  }
}
@media (max-width: 991px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 50px;
    top: -30px;
    right: -35px;
  }
}
@media (max-width: 768px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 40px;
    top: -25px;
    right: -25px;
  }
}
@media (max-width: 576px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 30px;
    top: -15px;
    right: -20px;
  }
}
@media (max-width: 480px) {
  .TEAMTEAM .player-card-team-wrapper .floating-crown {
    font-size: 25px;
    top: -10px;
    right: -5px;
  }
}

.player-card-team-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
}

a.player-card-preview {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a.player-card-preview:hover {
  scale: 1.05;
}

.player-card-preview {
  display: block;
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
}
.player-card-preview img {
  width: 100%;
  max-width: 100%;
}
.player-card-preview .name-tag {
  font-size: 14px;
  position: relative;
  width: 100%;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  margin-top: -15px;
  z-index: 300;
  background-image: linear-gradient(to bottom, #6c6c6c, rgb(57, 57, 57), #6c6c6c);
}

.player-card-container {
  position: relative;
}
.player-card-container.winner-container::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(45deg, #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  border-radius: 12px;
  z-index: -1;
  animation: winnerGlow 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(209, 31, 24, 0.4);
  pointer-events: none;
}
.player-card-container.winner-container .player-card-preview img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(209, 31, 24, 0.2);
}
.player-card-container.winner-container .player-card-preview .name-tag {
  background: linear-gradient(135deg, #d11f18, rgb(140.3798283262, 20.821888412, 16.1201716738));
  color: white;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(209, 31, 24, 0.3);
}

.floating-crown {
  position: absolute;
  top: -40px;
  right: 130px;
  font-size: 55px;
  z-index: 1000;
  animation: floatingCrown 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  pointer-events: none;
  transform: translateX(0);
}
@media (max-width: 1399px) {
  .floating-crown {
    font-size: 45px;
    top: -25px;
    right: 100px;
  }
}
@media (max-width: 1199px) {
  .floating-crown {
    font-size: 45px;
    top: -30px;
    right: 65px;
  }
}
@media (max-width: 991px) {
  .floating-crown {
    font-size: 45px;
    top: -25px;
    right: 15px;
  }
}
@media (max-width: 768px) {
  .floating-crown {
    font-size: 40px;
    top: -25px;
    right: -20px;
  }
}
@media (max-width: 576px) {
  .floating-crown {
    font-size: 30px;
    top: -15px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .floating-crown {
    font-size: 25px;
    top: -10px;
    right: -5px;
  }
}

@keyframes floatingCrown {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-10px) rotate(-8deg) scale(1.15);
  }
  50% {
    transform: translateY(-15px) rotate(0deg) scale(1.1);
  }
  75% {
    transform: translateY(-8px) rotate(8deg) scale(1.15);
  }
}
@keyframes winnerGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(209, 31, 24, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(209, 31, 24, 0.6), 0 0 40px rgba(209, 31, 24, 0.3);
    transform: scale(1.02);
  }
}
.vs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 120px;
  position: relative;
}
@media (max-width: 768px) {
  .vs-container {
    min-height: 80px;
  }
}
@media (max-width: 576px) {
  .vs-container {
    min-height: 60px;
  }
}

.vs-text {
  font-size: 40px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .vs-text {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
@media (max-width: 576px) {
  .vs-text {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
@media (max-width: 480px) {
  .vs-text {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.vs-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 8px 25px rgba(209, 31, 24, 0.4);
}
@media (max-width: 768px) {
  .vs-text::before {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .vs-text::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .vs-text::before {
    width: 45px;
    height: 45px;
  }
}
.vs-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 4px solid rgb(236.974248927, 103.2832618026, 98.025751073);
  border-radius: 50%;
  z-index: -2;
}
@media (max-width: 768px) {
  .vs-text::after {
    width: 85px;
    height: 85px;
    border-width: 3px;
  }
}
@media (max-width: 576px) {
  .vs-text::after {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
}
@media (max-width: 480px) {
  .vs-text::after {
    width: 55px;
    height: 55px;
    border-width: 2px;
  }
}

.winner-highlight {
  background: linear-gradient(135deg, rgb(239.6008583691, 125.3905579399, 120.8991416309), #d11f18);
  color: white;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(209, 31, 24, 0.2);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.winner-highlight:hover {
  background: linear-gradient(135deg, #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  box-shadow: 0 4px 12px rgba(209, 31, 24, 0.3);
  color: white;
  transform: translateY(-1px);
}

.accordion {
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
}
.accordion .accordion-item {
  border: none;
}
.accordion .progress-wrapper {
  flex-grow: 1;
}
.accordion .accordion-button::after {
  margin-left: 20px;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: #f2f2f2;
  color: #0c0202;
}
.accordion .accordion-button:not(.collapsed) .progress {
  background-color: white;
}
.accordion .accordion-button:focus {
  box-shadow: none;
}
.accordion .accordion-button:focus-visible {
  outline: none;
}
.accordion .accordion-body {
  padding: 0;
}

.game-action-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
}

.small-contact-card {
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  height: 100%;
}
.small-contact-card .name {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.small-contact-card .name a {
  text-decoration: none;
  color: #0c0202;
  transition: all 0.2s ease-in-out;
}
.small-contact-card .name a:hover {
  color: #d11f18;
}
.small-contact-card .team-name {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 18px;
}
.small-contact-card .team-name a {
  text-decoration: none;
  color: #0c0202;
  transition: all 0.2s ease-in-out;
}
.small-contact-card .team-name a:hover {
  color: #d11f18;
}
.small-contact-card .contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  flex-wrap: nowrap;
  gap: 16px;
}
.small-contact-card .contacts a {
  text-decoration: none;
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: normal;
  overflow-wrap: anywhere;
  width: fit-content;
}
.small-contact-card .contacts a svg {
  width: 16px;
  height: 16px;
  color: #d11f18;
  margin-right: 4px;
  flex-shrink: 0;
}
.small-contact-card .contacts a:hover {
  color: #d11f18;
}

@media (max-width: 1200px) {
  .team-card {
    padding: 25px;
  }
  .team-card .btn-sm {
    font-size: 12px;
    padding: 6px;
    line-height: 1;
  }
  .team-card .team-card-header h3 {
    font-size: 22px;
  }
  .team-card .team-card-header .team-img-wrapper {
    flex-wrap: nowrap;
  }
  .team-card .team-card-header .team-img-wrapper .team-player-img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 992px) {
  .TEAMTEAM {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .profile-block .profile-text a {
    margin-left: auto;
    margin-right: auto;
  }
  .profile-block .profile-text .verify-box {
    justify-content: center;
  }
  .team-card-body-desc {
    text-align: start;
  }
}
.copy-emails-wrapper {
  display: inline-block;
  margin-bottom: 32px;
}

.btn-copy-emails {
  background: linear-gradient(135deg, #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(209, 31, 24, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-copy-emails::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-copy-emails:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 31, 24, 0.4);
  background: linear-gradient(135deg, rgb(186.1266094421, 27.6072961373, 21.3733905579), rgb(140.3798283262, 20.821888412, 16.1201716738));
}
.btn-copy-emails:hover::before {
  left: 100%;
}
.btn-copy-emails:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(209, 31, 24, 0.3);
}
.btn-copy-emails .btn-copy-emails-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.btn-copy-emails .btn-copy-emails-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}
.btn-copy-emails .btn-copy-emails-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.btn-copy-emails .btn-copy-emails-text .btn-copy-emails-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}
.btn-copy-emails .btn-copy-emails-text .btn-copy-emails-subtitle {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.2;
}
.btn-copy-emails.copy-success {
  background: linear-gradient(135deg, #28a745, rgb(30.1449275362, 125.8550724638, 52));
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.3);
}
.btn-copy-emails.copy-success .btn-copy-emails-icon {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .btn-copy-emails {
    padding: 14px 20px;
    gap: 10px;
  }
  .btn-copy-emails .btn-copy-emails-icon {
    width: 36px;
    height: 36px;
  }
  .btn-copy-emails .btn-copy-emails-icon svg {
    width: 18px;
    height: 18px;
  }
  .btn-copy-emails .btn-copy-emails-text .btn-copy-emails-title {
    font-size: 14px;
  }
  .btn-copy-emails .btn-copy-emails-text .btn-copy-emails-subtitle {
    font-size: 11px;
  }
}
@media (max-width: 568px) {
  .team-card {
    padding: 20px;
    position: relative;
  }
  .team-card .btn-sm {
    font-size: 12px;
    padding: 2px 4px;
    line-height: 1;
  }
  .team-card .team-card-header {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }
  .team-card .team-card-header h3 {
    font-size: 22px;
  }
  .team-card .team-card-header .team-img-wrapper .team-player-img {
    width: 40px;
    height: 40px;
  }
  .team-card .team-label {
    font-size: 12px;
  }
  .btn-copy-emails {
    padding: 12px 16px;
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
  .btn-copy-emails .btn-copy-emails-icon {
    width: 32px;
    height: 32px;
  }
  .btn-copy-emails .btn-copy-emails-icon svg {
    width: 16px;
    height: 16px;
  }
  .btn-copy-emails .btn-copy-emails-text {
    align-items: center;
  }
  .btn-copy-emails .btn-copy-emails-text .btn-copy-emails-title {
    font-size: 13px;
  }
  .btn-copy-emails .btn-copy-emails-text .btn-copy-emails-subtitle {
    font-size: 10px;
  }
}
.black-pill-label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: fit-content;
  padding: 10px;
  border-radius: 25px;
  background-color: #f2f2f2;
  margin-bottom: 28px;
}
.black-pill-label .pill-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding-right: 10px;
  color: #0c0202;
  text-transform: uppercase;
}
.black-pill-label .pill-text.highlated-pill-text {
  background-image: radial-gradient(at top left, white 0%, black 50%);
  padding: 5px 15px;
  border-radius: 25px;
  color: white;
}
.black-pill-label .pill-text.highlated-pill-text.primary {
  background-image: radial-gradient(at top left, #fff3f3 0%, #d11f18 50%);
}

.counter-wrapper {
  margin-top: 42px;
  margin-bottom: 50px;
}
.counter-wrapper .counter {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.counter-wrapper .counter-title {
  font-size: 14px;
  font-weight: 600;
  color: #6a6a6a;
  text-transform: uppercase;
}

.hero-player-signature {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}

.hero-player-badge {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 18px;
}
.hero-player-badge svg {
  width: 40px;
  height: 40px;
  color: gold;
}
.hero-player-badge .badge-heading {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-player-badge .badge-footer {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #6a6a6a;
  margin-top: 8px;
}

.hero-player {
  position: relative;
  padding-top: 50px;
}
.hero-player .hero-player-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.league-highlights-box {
  padding: 0 50px;
}
.league-highlights-box .league-highlights-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.league-highlights-box .league-highlights-header svg {
  color: #d11f18;
  width: 50px;
  height: 50px;
}
.league-highlights-box .league-highlights-header h3 {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1;
}
.league-highlights-box .league-highlights-header p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d11f18 0%, #fff3f3 100%);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c0202;
  margin-bottom: 12px;
  text-transform: uppercase;
  line-height: 1.2;
}

.service-card-description {
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
}

.service-item {
  position: relative;
  margin-bottom: 15px;
}
.service-item .service-item-image {
  width: 100%;
  height: 250px;
  background-image: url("../images/service-1-2tGmi10.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
}
.service-item .service-item-image.img-1 {
  background-image: url("../images/service-2-cVDEfFd.png");
}
.service-item .service-item-image.img-2 {
  background-image: url("../images/service-3-LtiZNRK.png");
}
.service-item .service-item-image.dvouhry {
  background-image: url("../images/dvouhry-DH9rVjH.png");
}
.service-item .service-item-image.ctyrhry {
  background-image: url("../images/ctyrhry-TtYqIRt.png");
}
.service-item .service-item-image.divoka-karta {
  background-image: url("../images/divoka-karta-ZMSN2TY.png");
}
.service-item .service-item-image.turnaje-akce {
  background-image: url("../images/turnaje-akce-iw7o1X2.png");
}
.service-item .service-item-image.statistiky {
  background-image: url("../images/statistiky-Tmb2-zX.png");
}
.service-item .service-item-image.trener {
  background-image: url("../images/trener-fMUiqyd.png");
}
.service-item .service-item-head {
  font-size: 22px;
  color: white;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
.service-item .service-item-text {
  position: absolute;
  bottom: -15px;
  text-align: center;
  background: radial-gradient(at top left, rgb(57, 57, 57) 0%, rgb(44, 44, 44) 40%);
  padding: 15px 20px;
  height: 52px;
  max-height: fit-content;
  overflow: hidden;
  transition: height 0.6s ease-in-out;
}
.service-item .service-item-text p {
  margin-bottom: 15px;
}
.service-item:hover .service-item-image {
  background-size: 110% 110%;
}
.service-item:hover .service-item-text {
  height: 500px;
}

.tns-ovh {
  height: 100%;
}
.tns-ovh .tns-inner {
  height: 100%;
}
.tns-ovh .review-slider {
  display: flex;
  align-items: stretch;
}
.tns-ovh .review-slider .tns-item {
  display: flex;
  height: auto;
}

.tns-nav {
  text-align: center;
}
.tns-nav button {
  margin-right: 8px;
  background-color: #f2f2f2;
  border: 2px solid #f2f2f2;
  width: 30px;
  transition: all 0.2s ease-in-out;
}
.tns-nav button:last-child {
  margin-right: 0;
}
.tns-nav button:hover {
  background-color: #fff3f3;
  border-color: #fff3f3;
}
.tns-nav button.tns-nav-active {
  border-color: #d11f18;
  background-color: #d11f18;
}

.review-item {
  flex: 1;
  padding: 32px 50px;
  height: 100%;
  background-color: #fff3f3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.review-item .review-author {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.review-item .review-author .review-author-img {
  background-color: black;
  border: 2px solid #d11f18;
  border-radius: 50%;
}
.review-item .review-author .review-author-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .black-pill-label .pill-text {
    font-size: 16px;
  }
  .service-card .service-card-image {
    height: 180px;
  }
  .service-card .service-card-title {
    font-size: 18px;
  }
  .service-item .service-item-image {
    height: 200px;
  }
  .service-item .service-item-head {
    font-size: 20px;
  }
  .counter-wrapper .counter-title {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .black-pill-label {
    padding: 6px;
  }
  .black-pill-label .pill-text {
    font-size: 14px;
  }
  .service-card .service-card-image {
    height: 160px;
  }
  .service-card .service-card-content {
    padding: 20px;
  }
  .service-card .service-card-title {
    font-size: 16px;
  }
  .service-item .service-item-image {
    height: 200px;
  }
  .service-item .service-item-head {
    font-size: 18px;
  }
  .counter-wrapper .counter-title {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .black-pill-label {
    margin: 0 auto 24px auto;
  }
  .service-card .service-card-image {
    height: 140px;
  }
  .service-card .service-card-content {
    padding: 16px;
  }
  .service-card .service-card-title {
    font-size: 14px;
  }
  .service-card .service-card-description {
    font-size: 14px;
  }
  .counter-wrapper {
    margin-bottom: 24px;
    margin-top: 16px;
  }
}
.recent-games-section {
  padding: 30px 0;
  background-color: #fff3f3;
}
.recent-games-section .tns-nav button {
  background-color: white;
  border: 2px solid white;
}
.recent-games-section .tns-nav button.tns-nav-active {
  border-color: #d11f18;
  background-color: #d11f18;
}
.recent-games-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #0c0202;
}
.recent-games-section .no-games-message {
  text-align: center;
  padding: 40px 20px;
}
.recent-games-section .no-games-message p {
  font-size: 18px;
  color: #6a6a6a;
  margin: 0;
}
.recent-games-section .games-slider {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.recent-games-section .games-slider .tns-item {
  display: flex;
  height: auto;
  width: 380px;
  flex-shrink: 0;
  padding: 0 6px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .recent-games-section .games-slider .tns-item {
    width: 320px;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  .recent-games-section .games-slider .tns-item {
    width: 280px;
    padding: 0 10px;
  }
}
.recent-games-section a.game-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recent-games-section a.game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.recent-games-section a.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #d11f18 0%, #fff3f3 100%);
}
.recent-games-section .game-card-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.recent-games-section .participant {
  font-size: 14px;
  font-weight: 700;
  color: #d11f18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-games-section .game-score {
  font-size: 16px;
  font-weight: 700;
  color: #0c0202;
  text-align: center;
  margin: 0;
  line-height: 1;
}
.recent-games-section .game-sets {
  text-align: center;
  margin-bottom: 15px;
}
.recent-games-section .game-sets .set-score {
  font-size: 12px;
  font-weight: 500;
  color: #6a6a6a;
  background-color: #f8f9fa;
  padding: 4px 8px;
  border-radius: 6px;
  margin: 0 2px;
  display: inline-block;
}
.recent-games-section .game-date {
  text-align: center;
  font-size: 12px;
  color: #6a6a6a;
  font-weight: 500;
}

.contact-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff3f3;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.contact-item .contact-item-head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.contact-item .contact-item-head svg {
  color: #d11f18;
  width: 35px;
  height: 35px;
  transition: all 0.2s ease-in-out;
}
.contact-item .contact-item-head h4 {
  margin-bottom: 0;
  transition: all 0.2s ease-in-out;
}
.contact-item .contact-item-body {
  font-size: 16px;
  line-height: 1;
  color: #2c2c2c;
  transition: all 0.2s ease-in-out;
}
.contact-item .contact-item-body a {
  text-decoration: none;
  color: #2c2c2c;
  transition: all 0.2s ease-in-out;
}
.contact-item:hover {
  background-color: #d11f18;
}
.contact-item:hover .contact-item-body {
  color: white;
}
.contact-item:hover .contact-item-body a {
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.contact-item:hover .contact-item-body a:hover {
  text-shadow: 0 0 2px white;
}
.contact-item:hover .contact-item-head svg, .contact-item:hover .contact-item-head h4 {
  color: white;
}

@media (max-width: 1200px) {
  .contact-item .contact-item-head h4 {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .contact-item {
    padding: 10px;
  }
  .contact-item .contact-item-head svg {
    width: 20px;
    height: 20px;
  }
  .card-shadow {
    padding: 30px;
  }
}
@media (max-width: 568px) {
  .contact-item {
    padding: 20px;
  }
  .contact-item .contact-item-head svg {
    width: 25px;
    height: 25px;
  }
}
.table-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
}

.group-table {
  background-color: rgb(255, 217.5, 217.5);
  overflow: hidden;
  text-align: start;
}
.group-table thead tr, .group-table thead th {
  background-image: linear-gradient(to bottom, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073));
  border: none;
  color: white;
  text-transform: uppercase;
}
.group-table tbody::before {
  content: "";
  position: absolute;
  bottom: 40%;
  left: 40px;
  transform: translate(-50%, 50%);
  height: 150px;
  width: 150px;
  color: #d11f18;
  opacity: 0.1;
  pointer-events: none;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.group-table tbody.group-a::before {
  background-image: url("../images/group-a-xltQH3z.png");
}
.group-table tbody.group-b::before {
  background-image: url("../images/group-b-UWwD2Uu.png");
}
.group-table tbody.group-c::before {
  background-image: url("../images/group-c-9_-wymL.png");
}
.group-table tbody.group-d::before {
  background-image: url("../images/group-d-rN34jq5.png");
}
.group-table tbody td {
  background-color: transparent;
  position: relative;
}
.group-table tbody td a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.group-table tbody td a:hover {
  color: #d11f18;
  text-shadow: 0 0 1px currentColor;
  fill: #d11f18;
}
.group-table tbody tr {
  background-color: white;
}
.group-table tbody tr:nth-child(even) {
  background-color: #fff3f3;
}
.group-table tbody tr:hover {
  background-color: transparent;
}

.filter-section {
  padding: 24px 0;
  background-image: linear-gradient(125deg, #333333, black, #333333);
}
.filter-section h4 {
  color: white;
  line-height: 0.8;
}
.filter-section .dropdown {
  width: 200px;
}
.filter-section .dropdown .dropdown-toggle {
  padding: 4px 20px;
  border-radius: 25px;
  font-size: 12px;
  width: 100%;
  font-weight: 600;
  background-image: linear-gradient(to bottom, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073));
  color: white;
  transition: all 0.2s ease-in-out;
  border: none;
  z-index: 105;
}
.filter-section .dropdown .dropdown-toggle:active {
  border: none;
}
.filter-section .dropdown .dropdown-toggle.show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.filter-section .dropdown .dropdown-menu {
  height: 0;
  max-height: 0;
  min-height: 0;
  z-index: 100;
  min-width: fit-content;
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
.filter-section .dropdown .dropdown-menu.show {
  height: 500px;
  max-height: fit-content;
  margin: 0;
  transform: translate(0px, 24px);
}
.filter-section .dropdown .dropdown-menu li {
  padding: 0;
  font-size: 12px;
}
.filter-section .dropdown .dropdown-menu li .dropdown-item {
  padding: 4px 20px;
  text-align: center;
  font-weight: 600;
}
.filter-section .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: #fff3f3;
}
.filter-section .dropdown .dropdown-menu li .dropdown-item.active {
  background-color: #d11f18;
  color: white;
}

@media (max-width: 768px) {
  .filter-section .dropdown {
    margin: 0 auto;
  }
  .filter-section .dropdown .dropdown-menu li .dropdown-item {
    font-size: 12px;
  }
}
.pravidla-page {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  text-align: start;
}
.pravidla-page .pravidla-block {
  margin-bottom: 48px;
}
.pravidla-page .pravidla-block p {
  color: #0c0202;
}
.pravidla-page .pravidla-block ul {
  padding-left: 32px;
  margin-bottom: 8px;
  text-align: start;
}
.pravidla-page .pravidla-block ul li {
  color: #2c2c2c;
}
.pravidla-page .pravidla-block a {
  color: #0c0202;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
}
.pravidla-page .pravidla-block a:hover {
  color: #d11f18;
}
.pravidla-page .pravidla-block:last-child {
  margin-bottom: 0;
}
.pravidla-page .pravidla-block .pravidla-subblock {
  margin-bottom: 16px;
}
.pravidla-page .pravidla-block .pravidla-subblock:last-child {
  margin-bottom: 0;
}

ul.custom-style li {
  position: relative;
}
ul.custom-style li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-150%, 5px);
  width: 18px;
  height: 18px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m243.31 90.91l-128.4 128.4a16 16 0 0 1-22.62 0l-71.62-72a16 16 0 0 1 0-22.61l20-20a16 16 0 0 1 22.58 0L104 144.22l96.76-95.57a16 16 0 0 1 22.59 0l19.95 19.54a16 16 0 0 1 .01 22.72'/%3E%3C/svg%3E");
  background-color: #28a745;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

@media (max-width: 768px) {
  .pravidla-page .pravidla-block {
    margin-bottom: 24px;
  }
  .pravidla-page h1 {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .pravidla-page h2 {
    font-size: 22px;
  }
  .pravidla-page h3 {
    font-size: 20px;
  }
}
#divoka-karta {
  scroll-margin-top: 100px;
}

.cenik-heading {
  margin-bottom: 80px !important;
  text-align: center;
}

.cenik-wrapper {
  justify-content: center;
  margin-bottom: 80px;
  row-gap: 60px;
}
.cenik-wrapper:last-child {
  margin-bottom: 0;
}

.card {
  height: 100%;
  border-radius: 4px;
  background-color: #fff3f3;
  border: none;
  padding: 40px;
}
.card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #6a6a6a;
}
.card .card-header h4 {
  color: #2c2c2c;
  font-size: 26px;
  font-weight: 700;
}
.card .card-header .pricing-card-title {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -2px;
  color: #6a6a6a;
  text-transform: none;
}
.card .card-header .pricing-card-title small {
  font-size: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 18px;
}
.card .card-header .recomend-label {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1;
  background-image: linear-gradient(to bottom, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073));
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
  text-transform: uppercase;
}
.card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.card .card-body small {
  font-size: 70%;
}
.card .card-body ul li {
  position: relative;
  text-align: start;
  color: #2c2c2c;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 28px;
}
.card .card-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(50%);
  width: 18px;
  height: 18px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m243.31 90.91l-128.4 128.4a16 16 0 0 1-22.62 0l-71.62-72a16 16 0 0 1 0-22.61l20-20a16 16 0 0 1 22.58 0L104 144.22l96.76-95.57a16 16 0 0 1 22.59 0l19.95 19.54a16 16 0 0 1 .01 22.72'/%3E%3C/svg%3E");
  background-color: #28a745;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.card.recomended {
  background: radial-gradient(at top left, rgb(57, 57, 57) 0%, rgb(44, 44, 44) 40%);
  position: relative;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  margin-left: -24px;
  margin-top: -24px;
}
.card.recomended .card-overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-overlay-lines-jvZG2Ss.png");
  background-repeat: no-repeat;
  background-position-y: 110px;
  background-size: cover;
  opacity: 0.3;
  pointer-events: none;
}
.card.recomended .card-header h4 {
  color: white;
}
.card.recomended .card-body ul li {
  color: #f2f2f2;
}

#plan-details {
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: 100%;
  margin: 0 auto 20px auto;
}
#plan-details .card.recomended {
  height: 100%;
  width: 400px;
  max-width: 100%;
  margin: 0 auto 20px auto;
}
#plan-details .card.recomended .text-muted {
  color: white !important;
}

@media (max-width: 1200px) {
  .cenik-wrapper .card {
    padding: 18px;
  }
  .cenik-wrapper .card .card-header {
    padding: 6px 12px;
  }
  .cenik-wrapper .card .card-header h4 {
    font-size: 24px;
  }
  .cenik-wrapper .card .card-header .recomend-label {
    font-size: 16px;
  }
  .cenik-wrapper .card .card-header .pricing-card-title {
    font-size: 45px;
  }
  .cenik-wrapper .card .card-body {
    padding: 16px 12px;
  }
}
@media (max-width: 992px) {
  .cenik-heading {
    margin-bottom: 50px !important;
  }
  .cenik-wrapper {
    margin-bottom: 50px;
    gap: 24px 0;
  }
  .cenik-wrapper .card {
    padding: 20px;
  }
  .cenik-wrapper .card .card-header {
    padding: 6px;
  }
  .cenik-wrapper .card .card-header h4 {
    font-size: 18px;
  }
  .cenik-wrapper .card .card-header .pricing-card-title {
    font-size: 36px;
  }
  .cenik-wrapper .card .card-header .recomend-label {
    font-size: 14px;
  }
  .cenik-wrapper .card .card-body {
    padding: 6px;
  }
  .cenik-wrapper .card .card-body ul li {
    font-size: 12px;
  }
  .cenik-wrapper .card .card-body .btn-primary {
    font-size: 14px;
    padding: 12px 24px !important;
  }
}
@media (max-width: 575px) {
  .cenik-heading {
    margin-bottom: 24px !important;
  }
  .cenik-wrapper .card {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
  .cenik-wrapper .card.recomended {
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    height: 100%;
    margin-top: 0;
    margin-left: -12px;
  }
  .cenik-wrapper .card.recomended .card-body, .cenik-wrapper .card.recomended .card-header {
    max-width: 100%;
    width: 300px;
    margin: 0 auto;
  }
}
.table-responsive .table {
  margin-bottom: 0;
}

.table {
  margin-bottom: 0;
}
.table th, .table td {
  font-size: 15px;
}
.table th svg:focus, .table td svg:focus {
  outline: none;
}

.games-table {
  background-color: rgb(255, 217.5, 217.5);
  text-align: start;
  vertical-align: middle;
}
.games-table thead tr, .games-table thead th {
  background-image: linear-gradient(to bottom, rgb(236.974248927, 103.2832618026, 98.025751073), #d11f18, rgb(236.974248927, 103.2832618026, 98.025751073));
  border: none;
  color: white;
  text-transform: uppercase;
  vertical-align: middle;
}
.games-table tbody td {
  background-color: transparent;
  position: relative;
}
.games-table tbody td a {
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.games-table tbody td a:not(.btn-primary) {
  color: inherit;
}
.games-table tbody td a:hover {
  text-shadow: 0 0 1px currentColor;
}
.games-table tbody td a:hover:not(.btn-primary) {
  color: #d11f18;
}
.games-table tbody tr {
  background-color: white;
}
.games-table tbody tr:nth-child(even) {
  background-color: #fff3f3;
}
.games-table tbody tr:hover {
  background-color: transparent;
}
.games-table tbody tr.my-game-row {
  background-color: rgba(40, 167, 69, 0.1);
}
.games-table tbody tr.my-game-row:hover {
  background-color: rgba(40, 167, 69, 0.15);
}
.games-table .game-actions .dropdown-menu {
  background-color: #f2f2f2;
}
.games-table .game-actions .dropdown-menu li {
  color: #0c0202;
}
.games-table .order-number, .games-table .voucher-code {
  background-color: #f2f2f2;
  color: #d11f18;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

.admin-order-filter-group {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
}
.admin-order-filter-group .admin-order-filter-btn {
  background-color: white;
  color: #0c0202;
  padding: 12px 24px;
  text-decoration: none;
  border: 1px solid #f2f2f2;
  border-right: none;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}
.admin-order-filter-group .admin-order-filter-btn:first-child {
  border-radius: 4px 0 0 4px;
}
.admin-order-filter-group .admin-order-filter-btn:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #f2f2f2;
}
.admin-order-filter-group .admin-order-filter-btn:hover {
  background-color: #d11f18;
  color: white;
  text-decoration: none;
}
.admin-order-filter-group .admin-order-filter-btn.active {
  background-color: #d11f18;
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-order-info-card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #f2f2f2;
}
.admin-order-info-card .admin-order-info-header {
  background-color: #d11f18;
  color: white;
  padding: 16px 20px;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #f2f2f2;
}
.admin-order-info-card .admin-order-info-header h5 {
  margin: 0;
  font-weight: 600;
}
.admin-order-info-card .admin-order-info-body {
  padding: 20px;
}
.admin-order-info-card .admin-order-info-body strong {
  color: #d11f18;
  font-weight: 600;
}
.admin-order-info-card .admin-order-info-body hr {
  border-color: #f2f2f2;
  margin: 16px 0;
}
.admin-order-info-card .admin-order-info-body .row {
  margin-bottom: 12px;
}
.admin-order-info-card .admin-order-info-body .row:last-child {
  margin-bottom: 0;
}

.player-detail-table {
  width: 100%;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: white;
}
.player-detail-table tr {
  border-bottom: 1px solid #f2f2f2;
}
.player-detail-table tr:last-child {
  border-bottom: none;
}
.player-detail-table th, .player-detail-table td {
  padding: 16px;
}
.player-detail-table th {
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .table th, .table td {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .table th, .table td {
    font-size: 13px;
  }
}
.sport-centrum-card {
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 30px;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.sport-centrum-card h6 {
  margin-bottom: 0;
}
.sport-centrum-card ul {
  padding-left: 40px;
}
.sport-centrum-card ul li {
  color: #6a6a6a;
}

.chat-item a {
  text-decoration: none;
}
.chat-item a .small-contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.chat-item a .small-contact-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d11f18;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
}
.chat-item a .small-contact-card:hover {
  background-color: #fff3f3;
}
.chat-item a .card-body {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-item a .card-body h6 {
  margin-bottom: 0;
}
.chat-item a .chat-img-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.chat-item a .chat-img-wrapper .chat-avatar {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #d11f18;
  background-color: white;
}

.chat-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

#message_content {
  height: 100px;
}

.chat-header {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 67px;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #f2f2f2;
  background-color: white;
}
.chat-header .icon {
  width: 30px;
  height: 30px;
  color: #0c0202;
}
.chat-header .icon:hover {
  color: #d11f18;
}
.chat-header h4 {
  margin-bottom: 0;
}
.chat-header .chat-header-status {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-header .chat-header-status .status-label {
  font-size: 10px;
  color: #6a6a6a;
  fotm-weight: 600;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}
.chat-header .chat-header-status .icons-wrapper {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: nowrap;
}
.chat-header .chat-header-status .icons-wrapper .icon {
  width: 17px;
  height: 17px;
  color: #6a6a6a;
  transition: all 0.2s ease-in-out;
}
.chat-header .chat-header-status .icons-wrapper .icon:hover {
  color: #d11f18;
}
.chat-header .chat-header-status .icons-wrapper .icon.completed {
  color: #28a745;
}

.messages {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 16px;
}
.messages .message {
  max-width: 60%;
  padding: 16px;
  border-radius: 25px;
  background-color: #f2f2f2;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.messages .message .message-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}
.messages .message .message-header img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #d11f18;
  background-color: white;
}
.messages .message .message-header .message-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.messages .message .message-header .message-author .name {
  font-weight: 500;
  color: #0c0202;
}
.messages .message .message-header .message-author .time {
  font-size: 12px;
  color: #6a6a6a;
}
.messages .message .message-content {
  white-space: normal;
  word-wrap: break-word;
}
.messages .message .message-status {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4px;
}
.messages .message .message-status .read-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}
.messages .message .message-status .read-status .icon {
  width: 16px;
  height: 16px;
}
.messages .message .message-status .read-status.delivered {
  color: #6a6a6a;
}
.messages .message .message-status .read-status.delivered .icon {
  color: #6a6a6a;
}
.messages .message .message-status .read-status.partially-read {
  color: #d11f18;
}
.messages .message .message-status .read-status.partially-read .icon {
  color: #d11f18;
}
.messages .message .message-status .read-status.read {
  color: #28a745;
}
.messages .message .message-status .read-status.read .icon {
  color: #28a745;
}
.messages .message.sent {
  align-self: flex-end;
  background-color: #fff3f3;
  border-bottom-right-radius: 0;
}
.messages .message.received {
  align-self: flex-start;
  background-color: white;
  border-bottom-left-radius: 0;
}
.messages .message.received .message-status {
  justify-content: flex-start;
}
.messages .message.system-message {
  align-self: center;
  text-align: center;
  max-width: 90%;
  border-radius: 4px;
  gap: 8px;
}
.messages .message.system-message .message-header {
  justify-content: center;
}

@media (max-width: 576px) {
  .chat-header {
    top: 51px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 450px;
  margin: 16px;
  background: black;
  color: white;
  padding: 24px;
  z-index: 9999;
  font-size: 14px;
  border-radius: 4px;
  border: 2px solid #d11f18;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.cookie-banner-content p {
  color: #f2f2f2;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.cookie-banner-content p a {
  text-decoration: none;
  color: #f2f2f2;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.cookie-banner-content p a:hover {
  color: #d11f18;
}
.cookie-banner-content .btn {
  border-radius: 4px;
}
.cookie-banner-content .btn.btn-outline-primary {
  color: white;
  border-color: #d11f18;
  background-color: #d11f18;
}
.cookie-banner-content .btn.btn-outline-primary:hover {
  background-color: rgb(231.7210300429, 59.0686695279, 52.2789699571);
}
.cookie-banner-content .btn.btn-outline-secondary {
  margin-left: 8px;
  color: #fff3f3;
  border-color: #fff3f3;
}

@media (max-width: 600px) {
  .cookie-banner {
    width: 90%;
    padding: 16px;
    font-size: 12px;
  }
}
.achievements-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
.achievements-wrapper h3 {
  margin-bottom: 0;
}
.achievements-wrapper .achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.achievements-wrapper .achievements .achievement-item {
  position: relative;
  cursor: pointer;
  text-align: center;
}
.achievements-wrapper .achievements .achievement-item.level-0 img {
  filter: grayscale(100%);
  opacity: 0.3;
}
.achievements-wrapper .achievements .achievement-item.progressive.level-1 img {
  filter: hue-rotate(345deg) brightness(0.95);
}
.achievements-wrapper .achievements .achievement-item.progressive.level-2 img {
  filter: grayscale(100%) brightness(1.12);
}
.achievements-wrapper .achievements .achievement-item.progressive.level-3 img {
  filter: brightness(1.1);
}
.achievements-wrapper .achievements .achievement-item.one-time.level-1 img {
  filter: hue-rotate(174deg) brightness(1);
}
.achievements-wrapper .achievements .achievement-item > .progress.small {
  background-color: #eee;
  height: 6px;
  margin-top: 5px;
}
.achievements-wrapper .achievements .achievement-item > .progress.small.completed {
  background-color: #ffd700 !important;
}
.achievements-wrapper .achievements .achievement-item > .progress.small.completed .progress-bar.bg-custom {
  background-image: none;
  background-color: #ffd700 !important;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 250px;
  max-width: 450px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-header {
  margin-bottom: 8px;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-header h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-header .achievement-type {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body p {
  margin: 0 0 3px 0;
  font-size: 12px;
  line-height: 1.4;
  color: #ddd;
  white-space: nowrap;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body p.yes {
  color: #3ec23e;
  display: block;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body p.yes:before {
  content: "✓";
  width: 15px;
  display: inline-block;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body p.no {
  display: block;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body p.no:before {
  content: "✗";
  width: 15px;
  display: inline-block;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-progress,
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-unlocked {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-progress p,
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-unlocked p {
  font-size: 11px;
  color: #ddd;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-locked {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .achievement-locked p {
  font-size: 11px;
  color: #ddd;
  font-style: italic;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .popup-body .progress {
  margin-top: 6px;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .achievement-popup-arrow {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .achievement-popup-arrow.achievement-popup-arrow-top {
  bottom: -5px;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .achievement-popup-arrow.achievement-popup-arrow-bottom {
  top: -5px;
  transform: rotate(45deg);
  border-bottom: none;
  border-right: none;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .achievement-popup-arrow.achievement-popup-arrow-left {
  right: -5px;
  transform: rotate(45deg);
  border-left: none;
  border-bottom: none;
}
.achievements-wrapper .achievements .achievement-item .achievement-popup .achievement-popup-arrow.achievement-popup-arrow-right {
  left: -5px;
  transform: rotate(45deg);
  border-right: none;
  border-top: none;
}
.achievements-wrapper .achievements .achievement-name {
  font-size: 14px;
  margin-top: 6px;
}
.achievements-wrapper .achievements .achievement-description {
  font-size: 10px;
  margin-top: 3px;
}

.tipovacka-game-wrapper {
  max-width: 600px;
  margin: 0 auto 32px auto;
}
.tipovacka-game-wrapper .tipovacka-game-details {
  text-align: start;
}
.tipovacka-game-wrapper .tipovacka-game-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tipovacka-game-wrapper .tipovacka-game-details .detail-item a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.tipovacka-game-wrapper .tipovacka-game-details .detail-item a:hover {
  color: #d11f18;
}
.tipovacka-game-wrapper .tipovacka-game-details .detail-item svg {
  width: 25px;
  height: 25px;
  color: #d11f18;
}

@media (max-width: 576px) {
  .tipovacka-game-wrapper .tipovacka-game-details .detail-item {
    justify-content: center;
  }
}
.notification-modal .modal-content {
  border: none;
  border-radius: 4px;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  font-family: "Barlow", sans-serif;
}
.notification-modal .modal-header {
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  padding: 1.5rem;
  background: linear-gradient(125deg, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
}
.notification-modal .modal-header .modal-title {
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.notification-modal .modal-header .modal-title .notification-icon {
  font-size: 20px;
}
.notification-modal .modal-body {
  padding: 1.5rem;
}
.notification-modal .modal-body .ligaliga-notification-content-title {
  font-weight: 700;
  font-size: 22px;
  color: #0c0202;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.notification-modal .modal-body .ligaliga-notification-content {
  line-height: 1.6;
  margin-bottom: 16px;
  color: #6a6a6a;
  font-size: 16px;
}
.notification-modal .modal-body .ligaliga-notification-meta {
  display: flex;
  align-items: center;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 600;
}
.notification-modal .modal-body .ligaliga-notification-meta .notification-time-icon {
  font-size: 16px;
}
.notification-modal .modal-footer {
  border-top: none;
  padding: 1rem 1.5rem 1.5rem;
  background-color: white;
}
.notification-modal .modal-footer .btn {
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  border: none;
}
.notification-modal .modal-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.notification-modal .modal-footer .btn .notification-check-icon {
  font-size: 16px;
  font-weight: bold;
}

.notification-badge {
  position: relative;
}

.admin-notification-table .status-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-notification-table .content-preview {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-notification-page .container {
  padding-bottom: 100px;
}
.admin-notification-page .btn-primary {
  background: linear-gradient(125deg, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
  border: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.admin-notification-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(125deg, rgb(234.347639485, 81.1759656652, 75.152360515), rgb(229.0944206009, 36.9613733906, 29.4055793991), rgb(234.347639485, 81.1759656652, 75.152360515));
}

@media (max-width: 1199px) {
  .admin-notification-table .actions-column .btn-group-responsive {
    flex-direction: column;
  }
  .admin-notification-table .actions-column .btn-group-responsive .action-form {
    display: flex;
    width: 100%;
  }
  .admin-notification-table .actions-column .btn-group-responsive .action-form .action-btn {
    width: 100%;
    flex: none;
  }
}
@media (max-width: 768px) {
  .notification-modal .modal-dialog {
    margin: 1rem;
  }
  .notification-modal .modal-body {
    padding: 1rem;
  }
  .notification-modal .modal-footer {
    padding: 1rem;
  }
  .admin-notification-table .content-preview {
    max-width: 150px;
  }
  .admin-notification-table .actions-column .btn-group-responsive {
    min-width: 100px;
    flex-direction: column;
  }
  .admin-notification-table .actions-column .btn-group-responsive .action-btn {
    font-size: 10px;
    padding: 4px 8px;
    width: 100%;
    flex: none;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .admin-notification-table .actions-column .btn-group-responsive {
    min-width: 80px;
    flex-direction: column;
  }
  .admin-notification-table .actions-column .btn-group-responsive .action-btn {
    font-size: 9px;
    padding: 3px 6px;
    line-height: 1.2;
    width: 100%;
    flex: none;
  }
}
.notification-detail-actions .actions-header {
  margin-bottom: 1rem;
}
.notification-detail-actions .actions-header h6 {
  font-weight: 700;
  font-size: 18px;
  color: #0c0202;
  text-transform: uppercase;
}
.notification-detail-actions .actions-body .detail-btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn {
  border: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-warning {
  background-color: #ffc107;
  color: #0c0202;
  border: none;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-warning:hover {
  background-color: rgb(211, 158.25, 0);
  color: #0c0202;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-secondary {
  background-color: #6c757d;
  color: white;
  border: none;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-secondary:hover {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  color: white;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-success {
  background-color: #28a745;
  color: white;
  border: none;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-success:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  color: white;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-outline-secondary {
  background-color: transparent;
  color: #2c2c2c;
  border: 2px solid #6c757d;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-action-btn.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}
.notification-detail-actions .actions-body .detail-btn-group .detail-form {
  display: flex;
  width: 100%;
}

.notification-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.notification-link:focus {
  box-shadow: none;
  background-color: rgba(209, 31, 24, 0.1);
}
.notification-link:hover .notification-bell {
  color: #d11f18;
  transform: scale(1.1);
}

.notification-bell {
  transition: all 0.2s ease-in-out;
  color: white;
}

.notification-badge {
  font-size: 8px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 4px;
  background-color: #d11f18 !important;
  border: 2px solid black;
  animation: pulse 2s infinite;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  top: 10px;
  left: 31px;
}

.notification-dropdown {
  width: 350px;
  max-height: 450px;
  overflow-y: auto;
  background-color: #343a40;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
}
.notification-dropdown .dropdown-header {
  font-weight: 700;
  color: white;
  padding: 1rem;
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(125deg, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
  border-radius: 4px 4px 0 0;
  font-family: "Barlow", sans-serif;
}
.notification-dropdown .dropdown-header .notification-mark-all-btn {
  font-size: 11px;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.2s ease-in-out;
}
.notification-dropdown .dropdown-header .notification-mark-all-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: scale(1.05);
}
.notification-dropdown .dropdown-header .notification-mark-all-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
.notification-dropdown .dropdown-header .notification-mark-all-btn:active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}
.notification-dropdown .notification-item {
  padding: 1rem;
  border: none;
  background: none;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}
.notification-dropdown .notification-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  transform: translateX(3px);
}
.notification-dropdown .notification-item:focus {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: none;
}
.notification-dropdown .notification-item:last-child {
  border-bottom: none;
}
.notification-dropdown .notification-content {
  width: 100%;
  box-sizing: border-box;
}
.notification-dropdown .notification-content .notification-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.5rem;
  color: white;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
  word-wrap: break-word;
}
.notification-dropdown .notification-content .notification-description {
  font-size: 13px;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: "Barlow", sans-serif;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  white-space: normal;
}
.notification-dropdown .notification-content small {
  font-size: 11px;
  color: #f2f2f2;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.notification-dropdown .notification-show-all {
  background: linear-gradient(125deg, rgb(231.7210300429, 59.0686695279, 52.2789699571), #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571)) !important;
  color: white !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-family: "Barlow", sans-serif !important;
  transition: all 0.2s ease-in-out !important;
}
.notification-dropdown .notification-show-all:hover {
  background: linear-gradient(125deg, rgb(234.347639485, 81.1759656652, 75.152360515), rgb(229.0944206009, 36.9613733906, 29.4055793991), rgb(234.347639485, 81.1759656652, 75.152360515)) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 31, 24, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(209, 31, 24, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(209, 31, 24, 0);
  }
}
.notification-new {
  animation: notificationNew 0.6s ease-out;
}

@keyframes notificationNew {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .notification-dropdown {
    width: 320px;
    max-height: 350px;
    margin-right: 1rem;
  }
  .notification-badge {
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
  }
  .notification-link {
    padding: 0.4rem;
  }
  .notification-bell {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 576px) {
  .notification-dropdown {
    width: 280px;
    max-height: 300px;
    margin-right: 0.5rem;
  }
  .notification-item {
    padding: 0.75rem;
  }
  .notification-content .notification-title {
    font-size: 13px;
  }
  .notification-content .notification-description {
    font-size: 12px;
  }
  .notification-content small {
    font-size: 10px;
  }
}
.dropdown-menu-dark .notification-item {
  color: #fff;
}
.dropdown-menu-dark .notification-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.dropdown-menu-dark .notification-content .notification-title {
  color: #fff;
}
.dropdown-menu-dark .notification-content .notification-description {
  color: #ccc;
}
.dropdown-menu-dark .notification-content small {
  color: #999;
}

.notification-loading .notification-item {
  opacity: 0.6;
  pointer-events: none;
}

.notification-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #6a6a6a;
}
.notification-empty .notification-bell {
  opacity: 0.3;
  margin-bottom: 1rem;
}

.notification-dropdown .dropdown-item-text.text-muted {
  color: #f2f2f2 !important;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 2rem 1rem;
  font-style: italic;
}

.rating-section {
  margin-top: 2rem;
}
.rating-section .rating-title {
  color: #0c0202;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow", sans-serif;
}
.rating-section .rating-title i {
  color: orange;
}
.rating-section .rating-info .alert {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.rating-section .rating-info .alert .alert-heading {
  color: #0c0202;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-bottom: 1rem;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.rating-section .rating-info .alert .alert-heading i {
  font-size: 20px;
}
.rating-section .rating-info .alert p {
  margin-bottom: 0;
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
}
.rating-section .rating-info .alert p strong {
  color: #0c0202;
  font-weight: 700;
}
.rating-section .rating-info .alert hr {
  margin: 1rem 0;
  border-color: rgba(0, 0, 0, 0.1);
}
.rating-section .rating-info .alert .btn {
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.rating-section .rating-info .alert .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.rating-section .rating-info .alert .btn i {
  margin-right: 0.5rem;
}
.rating-section .rating-info .alert-success {
  background-color: #d1e7dd;
  border-color: #badbcc;
  color: #0f5132;
}
.rating-section .rating-info .alert-success .alert-heading {
  color: #0f5132;
}
.rating-section .rating-info .alert-success .alert-heading i {
  color: #28a745;
}
.rating-section .rating-info .alert-success p {
  color: #0f5132;
}
.rating-section .rating-info .alert-success p strong {
  color: #0f5132;
}

.player-rating-form {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .player-rating-form {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.player-rating-form h4 {
  color: #0c0202;
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
}
.player-rating-form .form-label {
  font-weight: 600;
  color: #0c0202;
  font-family: "Barlow", sans-serif;
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.player-rating-form .form-control {
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: "Barlow", sans-serif;
  transition: all 0.2s ease-in-out;
  background-color: #f2f2f2;
  margin-bottom: 20px;
  font-size: 16px;
}
.player-rating-form .form-control:focus {
  background-color: #f2f2f2;
  border: 2px solid #d11f18;
  box-shadow: none;
}
.player-rating-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.player-rating-form .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
}
.player-rating-form .form-check-input:checked {
  background-color: #d11f18;
  border-color: #d11f18;
}
.player-rating-form .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(209, 31, 24, 0.25);
}
.player-rating-form .form-check-label {
  font-family: "Barlow", sans-serif;
  color: #0c0202;
  font-weight: 600;
  font-size: 16px;
}
.player-rating-form .criteria-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.player-rating-form .criteria-row .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  flex: 0 0 auto;
  min-width: 0;
}
@media (max-width: 576px) {
  .player-rating-form .criteria-row {
    flex-direction: column;
    gap: 0.25rem;
  }
  .player-rating-form .criteria-row .form-check {
    width: 100%;
    justify-content: flex-start;
  }
}
.player-rating-form .form-text {
  color: #6a6a6a;
  font-size: 0.875rem;
  font-family: "Barlow", sans-serif;
  margin-top: 0.25rem;
}
.player-rating-form .btn {
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.player-rating-form .btn i {
  margin-right: 0.5rem;
}

.rating-card {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  height: 100%;
}
.rating-card:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.rating-card .card-header {
  background: linear-gradient(135deg, #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571));
  color: white;
  border: none;
  border-radius: 4px 4px 0 0;
  padding: 1rem;
}
.rating-card .card-header h6 {
  margin: 0;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.rating-card .card-body {
  padding: 1.5rem;
}
.rating-card .card-body .card-title {
  color: #0c0202;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-bottom: 1rem;
}
.rating-card .card-body .card-text {
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  line-height: 1.5;
}

.rating-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Barlow", sans-serif;
  color: white;
}
.rating-badge.bg-primary {
  background: linear-gradient(135deg, #d11f18, rgb(231.7210300429, 59.0686695279, 52.2789699571)) !important;
}
.rating-badge.bg-success {
  background: linear-gradient(135deg, #28a745, rgb(51.6956521739, 206.3043478261, 87)) !important;
}
.rating-badge.bg-warning {
  background: linear-gradient(135deg, orange, #ffb733) !important;
}

.rating-criteria .fas {
  margin-right: 0.25rem;
}
.rating-criteria .fas.fa-check {
  color: #28a745;
}
.rating-criteria .fas.fa-times {
  color: #dc3545;
}
.rating-criteria small {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #2c2c2c;
}

.star-rating .fas.fa-star {
  color: orange;
  margin-right: 0.1rem;
}
.star-rating .fas.fa-star.text-muted {
  color: #6a6a6a !important;
}

.average-rating .display-4 {
  color: #d11f18;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.average-rating .star-rating {
  margin: 1rem 0;
}

.rating-stats .h5 {
  color: #d11f18;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.rating-stats small {
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}

.rating-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #6a6a6a;
}
.rating-empty .fas {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.rating-empty h5 {
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.rating-empty p {
  font-family: "Barlow", sans-serif;
  margin-bottom: 0;
}

.rating-tabs .nav-tabs {
  border-bottom: 2px solid #dee2e6;
}
.rating-tabs .nav-tabs .nav-link {
  color: #2c2c2c;
  font-weight: 600;
  font-family: "Barlow", sans-serif;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease-in-out;
}
.rating-tabs .nav-tabs .nav-link:hover {
  color: #d11f18;
  border-bottom-color: #d11f18;
}
.rating-tabs .nav-tabs .nav-link.active {
  color: #d11f18;
  border-bottom-color: #d11f18;
  background: none;
}
.rating-tabs .tab-content {
  padding: 2rem 0;
}

.rating-actions .dropdown-toggle {
  border: none;
  background: none;
  color: #2c2c2c;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.rating-actions .dropdown-toggle:hover {
  background: white;
  color: #0c0202;
}
.rating-actions .dropdown-toggle:focus {
  box-shadow: none;
}
.rating-actions .dropdown-menu {
  border: none;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.rating-actions .dropdown-menu .dropdown-item {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  padding: 0.75rem 1rem;
}
.rating-actions .dropdown-menu .dropdown-item:hover {
  background: #d11f18;
  color: white;
}

@media (max-width: 768px) {
  .rating-section .rating-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .rating-card .card-body {
    padding: 1rem;
  }
  .rating-tabs .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .average-rating .display-4 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .rating-section .rating-title {
    font-size: 1.25rem;
  }
  .rating-card .card-header {
    padding: 0.75rem;
  }
  .rating-card .card-body {
    padding: 0.75rem;
  }
  .rating-badge {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  .rating-empty {
    padding: 2rem 1rem;
  }
  .rating-empty .fas {
    font-size: 2rem;
  }
}
.my-ratings-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.ratings-tabs .rating-pills .nav-link {
  background: transparent;
  border: 2px solid #dee2e6;
  color: #2c2c2c;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  margin-right: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.ratings-tabs .rating-pills .nav-link:hover {
  background: #d11f18;
  border-color: #d11f18;
  color: white;
}
.ratings-tabs .rating-pills .nav-link.active {
  background: #d11f18;
  border-color: #d11f18;
  color: white;
}
.ratings-tabs .rating-pills .nav-link.active .badge {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}
.ratings-tabs .rating-pills .nav-link i {
  margin-right: 0.5rem;
}
.ratings-tabs .rating-pills .nav-link .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.rating-card {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}
.rating-card:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.rating-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.rating-player-info {
  flex: 1;
}

.rating-player-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c0202;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-score-date {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
}
.rating-badge.rating-badge-primary {
  background: linear-gradient(135deg, #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  color: white;
}
.rating-badge.rating-badge-success {
  background: linear-gradient(135deg, #d11f18, rgb(163.2532188841, 24.2145922747, 18.7467811159));
  color: white;
}

.rating-date {
  color: #6a6a6a;
  font-weight: 500;
}

.rating-actions li:hover {
  background-color: #d11f18;
  color: white;
  transition: none;
}
.rating-actions a {
  transition: none;
}
.rating-actions .rating-dropdown-btn {
  border: 1px solid #dee2e6;
  background: white;
  color: #2c2c2c;
}
.rating-actions .rating-dropdown-btn:hover {
  background: white;
  border-color: #d11f18;
  color: #17a2b8;
}
.rating-actions .rating-dropdown-btn.show {
  background: white;
  border-color: #d11f18;
  color: #17a2b8;
}

.rating-criteria {
  margin-bottom: 1rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border-left: 3px solid #dee2e6;
}
.criteria-item i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}
.criteria-item .criteria-check {
  color: #28a745;
  width: 16px;
  height: 16px;
}
.criteria-item.criteria-success {
  background: rgba(40, 167, 69, 0.1);
  border-left-color: #28a745;
}
.criteria-item.criteria-success span {
  color: #155724;
  font-weight: 600;
}
.criteria-item.criteria-success i {
  color: #28a745;
}
.criteria-item.criteria-danger {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
}
.criteria-item.criteria-danger span {
  color: #721c24;
  font-weight: 600;
}
.criteria-item.criteria-danger i {
  color: #dc3545;
}

.rating-comment {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #e0f7fa;
  border-radius: 4px;
  border-left: 4px solid #17a2b8;
}

.rating-comment-text {
  margin: 0;
  color: #0c0202;
  font-style: italic;
  line-height: 1.5;
}

.rating-game-info {
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}
.rating-game-info i {
  margin-right: 0.5rem;
  color: #d11f18;
}

.no-ratings-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  margin: 2rem 0;
}
.no-ratings-state i {
  color: #cccccc;
}
.no-ratings-state h5 {
  margin: 1rem 0;
  color: #2c2c2c;
}
.no-ratings-state p {
  color: #6a6a6a;
}

@media (max-width: 1199px) {
  .rating-pills .nav-item {
    width: 100%;
  }
  .rating-pills .nav-item .nav-link {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .my-ratings-section {
    padding: 1rem;
    margin: 1rem 0;
  }
  .ratings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .rating-card {
    padding: 1rem;
  }
  .rating-pills .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .rating-score-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.rating-detail-card,
.rating-edit-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rating-detail-header,
.rating-edit-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8f9fa;
}
.rating-detail-header h3,
.rating-edit-header h3 {
  margin: 0;
  color: #333;
}

.rating-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-info h3 {
  margin: 0;
  color: #333;
}

.rating-score {
  text-align: right;
}

.rating-display {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.rating-badge-large {
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 15px;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(135deg, #d11f18, #a31813);
}
.rating-detail-card .rating-badge-large {
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  border-radius: 20px;
}
[data-rating-type=team] .rating-badge-large {
  background: linear-gradient(135deg, #d11f18, #a31813);
}

.criteria-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #007bff;
}
.criteria-section h5 {
  margin-bottom: 1rem;
  color: #495057;
}
[data-rating-type=team] .criteria-section {
  border-left-color: #28a745;
}

.criteria-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.criteria-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #dee2e6;
  transition: all 0.3s ease;
}
.criteria-item.criteria-success {
  background: rgba(40, 167, 69, 0.1);
  border-left-color: #28a745;
}
.criteria-item.criteria-success .criteria-label {
  color: #155724;
  font-weight: 700;
}
.criteria-item.criteria-success .criteria-value {
  color: #28a745;
  font-weight: 600;
}
.criteria-item.criteria-success .criteria-value i {
  color: #28a745;
}
.criteria-item.criteria-danger {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
}
.criteria-item.criteria-danger .criteria-label {
  color: #721c24;
  font-weight: 700;
}
.criteria-item.criteria-danger .criteria-value {
  color: #dc3545;
  font-weight: 600;
}
.criteria-item.criteria-danger .criteria-value i {
  color: #dc3545;
}

.criteria-label {
  font-weight: 600;
  color: #495057;
}

.criteria-value {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}
[data-rating-type=team] .form-check-input:checked {
  background-color: #28a745;
  border-color: #28a745;
}

.form-check-label {
  font-weight: 500;
  color: #495057;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
[data-rating-type=team] .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-text {
  font-size: 0.875rem;
  color: #6c757d;
}

.form-actions,
.rating-detail-actions {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #f8f9fa;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.form-actions.justify-content-center,
.rating-detail-actions.justify-content-center {
  justify-content: center;
}

.rating-comment-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #f8f9fa;
}
.rating-comment-section h5 {
  margin-bottom: 1rem;
}

.comment-box {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
}
.comment-box p {
  margin: 0;
  font-style: italic;
  color: #495057;
}
[data-rating-type=team] .comment-box {
  border-left-color: #28a745;
}

.rating-detail-content .table-borderless td {
  padding: 0.5rem 0;
  border: none;
}
.rating-detail-content .table-borderless td:first-child {
  width: 40%;
  color: #6c757d;
}

.admin-comments-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.comments-header h4 {
  margin: 0;
  color: #333;
}

.comment-badge {
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}
.comment-badge.bg-primary {
  --bs-bg-opacity: 1;
  background-color: #d11f18 !important;
}

.comment-preview {
  max-width: 200px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: help;
}

.no-comments-state {
  background: #f8f9fa;
  border-radius: 10px;
  border: 2px dashed #dee2e6;
  padding: 3rem 2rem;
}

.comment-detail-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comment-detail-header {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.comment-detail-header h3 {
  margin-bottom: 0.5rem;
  color: #333;
}
.comment-detail-header p {
  margin-bottom: 0.25rem;
}

.comment-detail-content {
  margin-bottom: 2rem;
}
.comment-detail-content .table-borderless td {
  padding: 0.5rem 0;
  border: none;
}
.comment-detail-content .table-borderless td:first-child {
  width: 40%;
  color: #6c757d;
  font-weight: 600;
}

.comment-content-section {
  margin-top: 2rem;
}
.comment-content-section p {
  margin-bottom: 1rem;
}

.comment-box {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}
.comment-box p {
  margin-bottom: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  line-height: 1.6;
  color: #495057;
}

.comment-detail-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e9ecef;
  flex-wrap: wrap;
}
.comment-detail-actions form {
  margin: 0;
}
@media (max-width: 576px) {
  .comment-detail-actions {
    flex-direction: column;
  }
  .comment-detail-actions .btn {
    width: 100%;
  }
}

.comment-edit-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.comment-edit-form .alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  margin-bottom: 2rem;
}
.comment-edit-form textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}
.comment-edit-form .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}
.comment-edit-form .form-text {
  font-size: 0.875rem;
  color: #6c757d;
}

#char-count {
  font-weight: 600;
}
#char-count.text-danger {
  color: #dc3545 !important;
}
#char-count.text-warning {
  color: #ffc107 !important;
}
#char-count.text-muted {
  color: #6c757d !important;
}

.table.games-table tr.table-success {
  background-color: #d1e7dd;
  color: #0f5132;
}

.table.games-table tr.table-success > th,
.table.games-table tr.table-success > td {
  background-color: #d1e7dd;
}

/*# sourceMappingURL=app.css-3E64frR.map */
