/* ================================
   THEME: Sharp (Angular, Modern, Clean)
   ================================ */

body {
  background-color: #f7f7f7;
}

[data-mainpage=false] .content-container {
  padding-bottom: 2rem;
}

/* Global animations */
.fade-up {

    animation: sharpSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
  
}
.fade-up-delay-1 {

    animation-delay: 0.1s;
  
}
.fade-up-delay-2 {

    animation-delay: 0.2s;
  
}
.fade-up-delay-3 {

    animation-delay: 0.3s;
  
}
.fade-up-delay-4 {

    animation-delay: 0.4s;
  
}
/* Navigation */
.themed-header-spacer {
  height: 20px; 
}
[data-mainpage=true] .themed-header-spacer {
  height: 58px; 
}

.themed-header-wrapper .main-nav .navbar-toggler{
  color: var(--theme-primary);
}

.themed-header-wrapper .main-nav {

    background: var(--primarybgcolor);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 0 var(--theme-primary);
    border-bottom: none;
    padding: 0;
  
}
.themed-header-wrapper .main-nav .nav-link {

    color: var(--primarytextcolor) !important;
    font-family: var(--fonttitle);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    white-space: nowrap;
    padding: 0.25rem 0.5rem 0.45rem 0.5rem !important;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  
}
.themed-header-wrapper .main-nav .nav-link::before {

    content: "";
    position: absolute;
    inset: 0;
    background: var(--theme-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
  
}
.themed-header-wrapper .main-nav .nav-link::after {

    display: none;
  
}
.themed-header-wrapper .main-nav .nav-link:hover {

    color: var(--theme-secondary) !important;
  
}
.themed-header-wrapper .main-nav .nav-link:hover::before {

    transform: scaleY(1);
  
}
.themed-header-wrapper .main-nav .small-nav .nav-link {

    font-size: 0.8rem;
    opacity: 0.8;
    padding: 0.45rem 0.5rem 0.25rem 0.5rem !important;
    letter-spacing: 1px;
  
}
.themed-header-wrapper .main-nav .small-nav .nav-link:hover {

    opacity: 1;
  
}
.themed-header-wrapper .main-nav .dropdown-menu {

    background: var(--primarybgcolor);
    border: none;
    border-radius: 0;
    box-shadow: 4px 4px 0 var(--theme-primary);
    animation: sharpDropDown 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: absolute;
    z-index: 1000;
    min-width: 240px;
    padding: 0;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  
}
.themed-header-wrapper .main-nav .dropdown-item {

    color: var(--primarytextcolor);
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 3px solid transparent;
    position: relative;
  
}
.themed-header-wrapper .main-nav .dropdown-item::before {

    display: none;
  
}
.themed-header-wrapper .main-nav .dropdown-item::after {

    content: "→";
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
  
}
.themed-header-wrapper .main-nav .dropdown-item:hover {

    background: var(--theme-primary);
    color: var(--theme-secondary);
    border-left-color: var(--theme-secondary);
    padding-left: 25px;
  
}
.themed-header-wrapper .main-nav .dropdown-item:hover::after {

    opacity: 1;
    transform: translateX(0);
  
}
.themed-header-wrapper .main-nav .dropdown-submenu {

    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    min-width: 240px;
  
}
.themed-header-wrapper .main-nav .dropdown-submenu-item {

    position: relative;
  
}
.themed-header-wrapper .main-nav .dropdown-submenu-item > .dropdown-submenu {

    display: none;
  
}
.themed-header-wrapper .main-nav .dropdown-submenu-item:hover > .dropdown-submenu {

    display: block;
  
}
.themed-header-wrapper .main-nav .dropdown-item.dropdown-toggle {

    display: flex;
    justify-content: space-between;
    align-items: center;
  
}
.themed-header-wrapper .main-nav .dropdown-item.dropdown-toggle::after {

    content: "▶";
    font-size: 0.6rem;
    opacity: 0.5;
    transform: none;
  
}
.lang-btn {

    font-weight: 500 !important;
  
}

.lang-btn.active {
  background: var(--theme-primary);
  color: var(--primarybgcolor);
}
/* Mega Menu Styles */
.themed-header-wrapper .navbar-nav > li {
    border-top-right-radius: 3px;
    overflow: hidden;
}
.themed-header-wrapper .mega-dropdown {

    position: static !important;
  
}
.themed-header-wrapper .mega-menu {

    position: fixed;
    left: 0;
    right: 0;
    background: var(--primarybgcolor);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-top: 4px solid var(--theme-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.3s;
    pointer-events: none;
    transform: translateY(-10px);
    scrollbar-width: thin;
    scrollbar-color: var(--theme-primary) rgba(255, 255, 255, 0.1);
  
}
.themed-header-wrapper .mega-menu::-webkit-scrollbar {

    width: 6px;
  
}
.themed-header-wrapper .mega-menu::-webkit-scrollbar-track {

    background: rgba(255, 255, 255, 0.05);
  
}
.themed-header-wrapper .mega-menu::-webkit-scrollbar-thumb {

    background: var(--theme-primary);
  
}
.themed-header-wrapper .mega-dropdown:hover .mega-menu {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  
}
.themed-header-wrapper .mega-menu-container {

    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 50px;
  
}
.themed-header-wrapper .mega-menu-header {

    border-bottom: 2px solid var(--theme-primary);
    padding-bottom: 15px;
    margin-bottom: 30px;
  
}
.themed-header-wrapper .mega-menu-header h3 {

    font-family: var(--fonttitle);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--primarytextcolor);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
  
}
.themed-header-wrapper .mega-menu-content {

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  
}
.themed-header-wrapper .mega-menu-column {

    flex: 1;
    min-width: 200px;
    max-width: 280px;
  
}
.themed-header-wrapper .mega-menu-links {

    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
  
}
.themed-header-wrapper .mega-menu-link {

    color: var(--primarytextcolor);
    font-family: var(--fonttitle);
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 0;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  
}
.themed-header-wrapper .mega-menu-link::before {

    content: "//";
    position: absolute;
    left: 0;
    opacity: 0;
    color: var(--theme-primary);
    font-weight: 400;
    transition: all 0.2s ease;
  
}
.themed-header-wrapper .mega-menu-link:hover {

    color: var(--theme-primary);
    padding-left: 24px;
  
}
.themed-header-wrapper .mega-menu-link:hover::before {

    opacity: 1;
  
}
.themed-header-wrapper .mega-menu-category-title {

    display: block;
    font-family: var(--fonttitle);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    border-left: 3px solid var(--theme-primary);
    transition: all 0.2s ease;
  
}
.themed-header-wrapper .mega-menu-items {

    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  
}
.themed-header-wrapper .mega-menu-items li > a {

    display: block;
    color: var(--primarytextcolor);
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 16px;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 2px solid transparent;
  
}
.themed-header-wrapper .mega-menu-items li > a:hover {

    color: var(--theme-primary);
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--theme-primary);
    padding-left: 22px;
  
}

.themed-header-wrapper .mega-menu-category > a:link:hover {
  color: var(--primarytextcolor) !important;
}

.themed-header-wrapper .mega-menu-subcategory {

    margin: 12px 0;
  
}
.themed-header-wrapper .mega-menu-subcategory-title {

    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-left: 16px;
    border-left: 2px solid var(--theme-accent);
  
}
.themed-header-wrapper .mega-menu-subitems {

    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 16px;
  
}
.themed-header-wrapper .mega-menu-subitems li a {

    display: block;
    color: var(--primarytextcolor);
    font-size: 0.78rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 0;
    transition: all 0.2s ease;
  
}
.themed-header-wrapper .mega-menu-subitems li a:hover {

    color: var(--theme-primary);
    padding-left: 10px;
  
}
/* Section Titles */
.section-title {

    font-family: var(--fonttitle);
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    position: relative;
    display: inline-block;
  
}
.section-title::before {

    content: "//";
    color: var(--theme-primary);
    font-weight: 400;
    margin-right: 15px;
    animation: sharpBlink 1.5s ease-in-out infinite;
  
}
.section-title::after {

    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--theme-primary);
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  
}
/* News Section */
.news-section {
    background: var(--highlightcolor);
    color: var(--highlightheadercolor);
    position: relative;
    overflow: hidden;

}
.news-section .section-title {
  color: var(--highlightcolor-inversed) !important;
}
.news-section::before {

    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--theme-primary);
    opacity: 0.03;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
  
}
.news-section::after {

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--theme-primary);
    opacity: 0.03;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    pointer-events: none;
  
}
.news-card {

    background: var(--highlightcolorlighter) !important;
    border: none !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1) !important;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  
}
.news-card::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--theme-primary);
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10;
  
}
.news-card:hover::before {

    height: 100%;
  
}
.news-card:hover {

    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--theme-primary);
  
}
.news-card .card-img-wrapper {

    position: relative;
    overflow: hidden;
  
}
.news-card .card-img-wrapper::after {

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(to top, var(--theme-secondary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  
}
.news-card:hover .card-img-wrapper::after {

    opacity: 0.6;
  
}
.news-card .card-img-wrapper img {

    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  
}
.news-card:hover .card-img-wrapper img {

    transform: scale(1.08);
  
}
.news-card .card-body {

    padding: 1.5rem;
    position: relative;
  
}
.news-card .card-title {

    font-family: var(--fonttitle);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    color: var(--highlightheadercolor);
  
}
.news-card:hover .card-title, .news-card:hover .card-category {

    color: var(--theme-primary);
  
}
.news-card .card-date {

    color: var(--theme-primary);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
  
}
.news-card .card-date::before {

    content: "▸";
  
}
.news-card .card-text {

    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
  
}

.news-card .card-category {
  color: var(--highlightheadercolor);
  transition: color 0.3s ease;
}
/* Buttons */
.btn {
    border-radius: 6px;
}
.btn-theme-primary {
    background: var(--theme-primary, var(--theme-primary)) !important;
    color: var(--primarybgcolor, var(--primarytextcolor)) !important;
    border: none;
    font-family: var(--fonttitle);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 16px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  
}
.btn-theme-primary::before {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.4s ease;
  
}
.btn-theme-primary:hover::before {

    left: 100%;
  
}
.btn-theme-primary:hover {

    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  
}
/* Calendar Section */
.calendar-section {

    background: var(--gamesbgcolor);
    position: relative;
    overflow: hidden;
  
}
.calendar-section::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
      90deg,
      var(--theme-primary) 0,
      var(--theme-primary) 30px,
      transparent 30px,
      transparent 40px
    );
  
}
.calendar-section .calendar-card__calendar,
.calendar-section .calendar-card__events{
    color: var(--gamestextcolor);
}
.calendar-header {

    background: var(--theme-primary);
    color: var(--primarybgcolor);
    font-family: var(--fonttitle);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 25px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  
}
.match-card {

    background: #fff !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08) !important;
    position: relative;
    overflow: hidden;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);

}

/* Calendar recent games match event-item look on front page */
.calendar-card__recent .match-card {
  background: var(--gamessecondarycolor) !important;
  color: var(--gameshighlightcolor);
}

.calendar-card__recent .match-card h6,
.calendar-card__recent .match-card small {
  color: var(--gameshighlightcolor) !important;
}

.calendar-card__recent .match-card .badge {
  background: var(--theme-primary) !important;
  color: var(--primarybgcolor) !important;
}
.match-card::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-primary);
    transition: width 0.3s ease;
    z-index: 0;
  
}
.match-card::after {

    content: "▶";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--theme-primary);
    opacity: 0;
    transition: all 0.3s ease;
  
}
.match-card:hover {

    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--theme-primary);
  
}
.match-card:hover::before {

    width: 5px;
  
}
.match-card:hover::after {

    opacity: 1;
    right: 20px;
  
}
.match-card .badge {

    background: var(--theme-primary) !important;
    color: var(--theme-secondary) !important;
    font-weight: 800;
    padding: 6px 14px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    border-radius: 4px;
}
.event-item .badge-event {

    background: var(--theme-primary) !important;
    color: var(--primarybgcolor) !important;
    font-weight: 800;
    padding: 6px 14px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    border-radius: 4px;
    white-space: normal;
  
}
.match-card h6 {

    font-family: var(--fonttitle);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    color: #000;
  
}
.event-item {

    background: var(--gamessecondarycolor);
    color: var(--gameshighlightcolor);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    padding: 20px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
  
}
.event-item::before {

    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--theme-secondary);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.2;
    transition: all 0.3s ease;
  
}
.event-item::after {

    content: "→";
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 1.5rem;
    opacity: 0.2;
    transition: all 0.3s ease;
  
}
.event-item:hover {

    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
  
}
.event-item:hover::before {

    width: 50px;
    height: 50px;
    opacity: 0.3;
  
}
.event-item:hover::after {

    opacity: 0.5;
    transform: translateX(5px);
  
}
.event-item h6 {

    font-family: var(--fonttitle);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    color: var(--gameshighlightcolor);
  
}
.event-item small {

    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gameshighlightcolor);
    font-weight: 500;
  
}
/* Calendar day styling */
.calendar-day.event-day {
  background: var(--theme-primary) !important;
  color: var(--primarybgcolor) !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.calendar-day.event-day::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--theme-secondary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.calendar-day.event-day .day-number {
  position: relative;
  z-index: 1;
}

.calendar-day.event-day:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.calendar-day.event-day:hover::before {
  width: 30px;
  height: 30px;
  opacity: 0.3;
}

/* Banner Section */
.banner-section {

    background: var(--bannersbgcolor);
    padding: 80px 0;
  
}
.banner-card {

    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    display: block;
  
}
.banner-card::before {

    content: "";
    position: absolute;
    inset: 0;
    background: var(--theme-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  
}
.banner-card::after {

    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-family: var(--fonttitle);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--theme-secondary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
  
}
.banner-card:hover::before {

    opacity: 0.85;
  
}
.banner-card:hover::after {

    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  
}
.banner-card:hover {

    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
    z-index: 10;
  
}
.banner-card img {

    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  
}
.banner-card:hover img {

    transform: scale(1.1);
  
}

/* Carousel */
.hero-carousel {

    position: relative;
  
}
.hero-carousel .carousel-item {

    position: relative;
  
}
.hero-carousel .carousel-item::after {

    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--theme-secondary) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  
}
.hero-carousel .carousel-caption {

    background: transparent;
    z-index: 10;
    text-align: left;
    left: 10%;
    right: 30%;
    bottom: 20%;
  
}
.hero-carousel .carousel-caption h2 {

    font-family: var(--fonttitle);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 0.95;
    text-shadow: none;
    animation: sharpTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  
}
.hero-carousel .carousel-caption h2 .highlight {

    color: var(--theme-primary);
    display: inline-block;
    position: relative;
  
}
.hero-carousel .carousel-caption h2 .highlight::after {

    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--theme-primary);
    opacity: 0.3;
    z-index: -1;
  
}
.hero-carousel .carousel-caption p {

    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 500px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: sharpTextReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
    opacity: 0;
  
}
.hero-carousel .carousel-indicators {

    justify-content: flex-start !important;
    left: 10% !important;
    bottom: 10% !important;
    transform: none !important;
    gap: 8px;
  
}
.hero-carousel .carousel-indicators button {

    width: 40px !important;
    height: 4px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    transition: all 0.3s ease;
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  
}
.hero-carousel .carousel-indicators button.active {

    background: var(--theme-primary) !important;
    width: 60px !important;
  
}
/* Sponsor Section */
.sponsors-top-spacing {
  height: 60px; 
  width: 100%; 
  background: var(--bannersbgcolor); 
  transform: translateY(-60px); 
  position: absolute;
}

.sponsor-section {

    background: var(--bannersbgcolor);
    padding: 50px 0;
    position: relative;
  
}
.sponsor-section::before {

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
      90deg,
      var(--theme-secondary) 0,
      var(--theme-secondary) 20px,
      transparent 20px,
      transparent 30px
    );
    opacity: 0.2;
  
}
.sponsor-logo {

    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    filter: grayscale(100%);
    opacity: 0.6;
  
}
.sponsor-logo:hover {

    transform: translate(-2px, -2px);
    filter: grayscale(0%);
    opacity: 1;
  
}

/* Sharp Theme Mobile Menu */
.mobile-menu-panel {
  background: var(--primarybgcolor);
  box-shadow: -6px 0 0 var(--theme-primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 20px, 20px 0);
}

.mobile-menu-panel-header {
  background: var(--theme-primary);
  color: var(--primarybgcolor);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 30px) 100%, 0 100%);
}

.mobile-menu-header {
  background: rgba(255, 255, 255, 0.05);
  color: var(--theme-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 3px solid var(--theme-primary);
}

.mobile-menu-arrow {
  color: var(--primarytextcolor);
}

.mobile-menu-link,
.mobile-menu-toggle,
.mobile-menu-parent-link,
.mobile-menu-parent-text {
  color: var(--primarytextcolor);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: none;
}

.mobile-menu-link,
.mobile-menu-toggle,
.mobile-menu-parent {
  border-left: 2px solid transparent;
}


.mobile-menu-link:hover,
.mobile-menu-toggle:hover,
.mobile-menu-parent-link:hover,
.mobile-menu-parent-text:hover {
  color: var(--theme-primary);
}

.mobile-menu-link:hover,
.mobile-menu-toggle:hover,
.mobile-menu-parent:hover {
  border-left-color: var(--theme-primary);
  padding-left: 25px;
}


.mobile-menu-section-title {
  font-size: 0.7rem;
  text-align: center;
  color: var(--theme-primary);
  font-family: var(--fonttitle);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem;
  backdrop-filter: contrast(0.9);
}

.mobile-submenu {
  background: rgba(255, 255, 255, 0.2);
  border-left: 2px solid var(--theme-primary);
  margin-left: 15px;
}

/* Sharp Theme Animations */
@keyframes sharpSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sharpDropDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scaleY(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes sharpBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes sharpTextReveal {
  from {
    opacity: 0;
    transform: translateX(-40px);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* ================================
   SCROLL ANIMATIONS - Sharp
   ================================ */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px) translateX(-20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-fade-up.scroll-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-fade-left.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-fade-right.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-scale.scroll-visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-reveal {
  opacity: 0;
  transform: translateX(-30px);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.scroll-visible {
  opacity: 1;
  transform: translateX(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.scroll-slide-up {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-slide-up.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sharp Staggered animations with diagonal slide */
.scroll-stagger-container .scroll-stagger-item {
  opacity: 0;
  transform: translateY(40px) translateX(-30px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger-delay, 0s);
}

.scroll-stagger-container.scroll-visible .scroll-stagger-item {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Sharp clip-path reveal */
.scroll-clip-reveal {
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-clip-reveal.scroll-visible {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Sharp diagonal wipe */
.scroll-diagonal-wipe {
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-diagonal-wipe.scroll-visible {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

/* Sharp card with shadow pop */
.scroll-card-pop {
  opacity: 0;
  transform: translate(8px, 8px);
  box-shadow: 0 0 0 transparent;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-card-pop.scroll-visible {
  opacity: 1;
  transform: translate(0, 0);
  box-shadow: 8px 8px 0 var(--theme-primary);
}

/* Sharp text slide with accent */
.scroll-text-slide {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.scroll-text-slide::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: var(--theme-primary);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.scroll-text-slide.scroll-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-text-slide.scroll-visible::before {
  width: 15px;
}


/* ================================
   Sharp Theme Buttons
   ================================ */
.btn-theme-primary,
.v-btn.btn-theme-primary,
a.btn-theme-primary,
.v-btn--variant-elevated,
.v-btn--variant-flat {
  background: var(--theme-primary, var(--theme-primary)) !important;
  color: var(--primarybgcolor, var(--primarytextcolor)) !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: var(--fonttitle);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 40px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  text-decoration: none !important;
  display: inline-block;
}

.btn-theme-primary::before,
.v-btn.btn-theme-primary::before,
a.btn-theme-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.4s ease;
}

.btn-theme-primary:hover::before,
.v-btn.btn-theme-primary:hover::before,
a.btn-theme-primary:hover::before {
  left: 100%;
}

.btn-theme-primary:hover,
.v-btn.btn-theme-primary:hover,
.v-btn--variant-elevated:hover,
.v-btn--variant-flat:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2) !important;
}

.btn-theme-secondary,
.v-btn.btn-theme-secondary {
  background: var(--theme-secondary) !important;
  color: var(--theme-primary) !important;
  border-radius: 6px !important;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 16px 40px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-theme-outline,
.v-btn.btn-theme-outline,
.v-btn--variant-outlined {
  background: transparent !important;
  color: var(--theme-primary) !important;
  border: 3px solid var(--theme-primary) !important;
  border-radius: 6px !important;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 14px 38px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-theme-outline:hover,
.v-btn.btn-theme-outline:hover,
.v-btn--variant-outlined:hover {
  background: var(--theme-primary) !important;
  color: var(--theme-secondary) !important;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

/* Override Vuetify button colors */
.v-btn--color-primary {
  background: var(--theme-primary) !important;
  color: var(--gameshighlightcolor) !important;
  border-radius: 6px !important;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* ================================
   Sharp Theme Game Page
   ================================ */
#games h2 {
  font-weight: 800 !important;
  font-family: var(--fonttitle);
  letter-spacing: 1px;
}

/* Match card title on front page */
.match-card h6 {
  font-weight: 800 !important;
  font-family: var(--fonttitle);
  letter-spacing: 0.5px;
}

/* ================================
   Sharp Theme All News Button
   ================================ */
.btn-all-news,
a.btn-all-news {
  background: transparent !important;
  color: var(--highlightcolor-inversed) !important;
  border: 1px solid var(--highlightcolor-inversed) !important;
  font-family: var(--fonttitle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0 !important;
  text-decoration: none !important;
  display: inline-block;
}

.btn-all-news:hover,
a.btn-all-news:hover {
  background: transparent !important;
  color: var(--highlightcolor-inversed) !important;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgb(from var(--highlightcolor-inversed) r g b / 0.3);
}


/* ================================
   Sharp Theme Tabs - Outlined Style
   ================================ */
.themed-tab.nav-link {
  background: transparent !important;
  color: var(--theme-primary) !important;
  border: 2px solid var(--theme-primary) !important;
  font-family: var(--fonttitle);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 9px 32px;
  border-radius: 0 !important;
}

.themed-tab.nav-link:hover {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.themed-tab.nav-link.active {
  background: var(--theme-primary) !important;
  background-color: var(--theme-primary) !important;
  color: var(--primarybgcolor) !important;
  border-color: var(--theme-primary) !important;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

/* ================================
   Sharp Theme - Games Page Tabs
   ================================ */
.year-tab.nav-link {
  font-family: var(--fonttitle);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0 !important;
  border: 2px solid transparent !important;
}

.year-tab.nav-link:hover {
  border-color: var(--theme-primary) !important;
}

.year-tab.nav-link.active {
  border: 2px solid var(--theme-primary) !important;
  border-bottom: 3px solid var(--theme-primary) !important;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.month-tab.btn {
  background: var(--theme-primary) !important;
  color: var(--primarybgcolor) !important;
  border: none !important;
  font-family: var(--fonttitle);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.month-tab.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  background: var(--theme-primary) !important;
  color: var(--primarytextcolor) !important;
}

.month-tab.btn.active {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.month-tab.btn .badge {
  background: rgba(0, 0, 0, 0.3) !important;
}

.year-tab.nav-link:focus,
.month-tab.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ================================
   Sharp Theme - Game Date Display
   ================================ */
.game-date-display {
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  overflow: hidden;
}

.game-date-display .event-day {
  background: var(--theme-primary) !important;
  color: var(--primarybgcolor) !important;
  font-family: var(--fonttitle);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none !important;
  padding-left: 15px !important;
}

.game-date-display .event-month {
  background: var(--theme-secondary, #1a1a1a) !important;
  color: var(--theme-primary) !important;
  font-family: var(--fonttitle);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none !important;
}

.game-date-display .event-time {
  background: #ffffff !important;
  color: #1a1a1a !important;
  font-family: var(--fonttitle);
  font-weight: 600;
  border: none !important;
}

/* ================================
   Sharp Theme - News Archive List
   ================================ */
.news-archive-list--sharp {
  display: flex;
  flex-direction: column;
}

.news-archive-list--sharp .news-archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.news-archive-list--sharp .news-archive-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--theme-primary);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-archive-list--sharp .news-archive-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.news-archive-list--sharp .news-archive-item:hover::before {
  width: 5px;
}

.news-archive-list--sharp .news-archive-item-content {
  flex: 1;
  min-width: 0;
  padding-left: 8px;
  transition: padding-left 0.25s ease;
}

.news-archive-list--sharp .news-archive-item:hover .news-archive-item-content {
  padding-left: 16px;
}

.news-archive-list--sharp .news-archive-item-title {
  font-family: var(--fonttitle);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.15rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.news-archive-list--sharp .news-archive-item:hover .news-archive-item-title {
  color: var(--theme-primary);
}

.news-archive-list--sharp .news-archive-item-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-archive-list--sharp .news-archive-item-date {
  color: var(--theme-primary);
  font-weight: 700;
}

.news-archive-list--sharp .news-archive-item-category {
  color: #999;
  font-weight: 600;
}

.news-archive-list--sharp .news-archive-item-arrow {
  color: var(--theme-primary);
  font-size: 1.4rem;
  margin-left: 1rem;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-archive-list--sharp .news-archive-item:hover .news-archive-item-arrow {
  transform: translateX(6px);
}

/* ================================
   Sharp Theme - Games Archive List
   ================================ */
.games-archive-list--sharp {
  display: flex;
  flex-direction: column;
}

.games-archive-list--sharp .games-archive-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.games-archive-list--sharp .games-archive-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--theme-primary);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.games-archive-list--sharp .games-archive-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.games-archive-list--sharp .games-archive-item:hover::before {
  width: 5px;
}

.games-archive-list--sharp .games-archive-item-date {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--fonttitle);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--theme-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 8px;
  transition: padding-left 0.25s ease;
}

.games-archive-list--sharp .games-archive-item:hover .games-archive-item-date {
  padding-left: 16px;
}

.games-archive-list--sharp .games-archive-item-main {
  flex: 1;
  min-width: 0;
}

.games-archive-list--sharp .games-archive-item-title {
  font-family: var(--fonttitle);
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.15rem;
}

.games-archive-list--sharp .games-archive-item:hover .games-archive-item-title {
  color: var(--theme-primary);
}

.games-archive-list--sharp .games-archive-item-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.games-archive-list--sharp .games-archive-item-league {
  font-weight: 700;
  color: #666;
}

.games-archive-list--sharp .games-archive-item-place::before,
.games-archive-list--sharp .games-archive-item-team::before {
  content: "/";
  margin-right: 0.75rem;
  color: var(--theme-primary);
}

.games-archive-list--sharp .games-archive-item-result {
  flex-shrink: 0;
  text-align: right;
  min-width: 100px;
}

.games-archive-list--sharp .games-archive-item-score {
  font-family: var(--fonttitle);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.games-archive-list--sharp .games-archive-item-periods {
  display: block;
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .games-archive-list--sharp .games-archive-item {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    clip-path: none;
  }

  .games-archive-list--sharp .games-archive-item-date {
    width: auto;
    padding-left: 0;
  }

  .games-archive-list--sharp .games-archive-item-title {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .games-archive-list--sharp .games-archive-item-details {
    gap: 0.3rem;
    letter-spacing: 0px;
    font-size: 0.6rem;
  }

  .games-archive-list--sharp .games-archive-item-result {
    width: 100%;
    text-align: left;
    min-width: auto;
  }
}

/* ================================
   Sharp Theme - Documents Archive List
   ================================ */
.documents-archive-list--sharp {
  display: flex;
  flex-direction: column;
}

.documents-archive-list--sharp .documents-archive-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.documents-archive-list--sharp .documents-archive-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--theme-primary);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.documents-archive-list--sharp .documents-archive-item:hover {
  background: rgba(0, 0, 0, 0.02);
}

.documents-archive-list--sharp .documents-archive-item:hover::before {
  width: 5px;
}

.documents-archive-list--sharp .documents-archive-item-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--theme-primary);
  width: 40px;
  text-align: center;
  padding-left: 8px;
  transition: padding-left 0.25s ease;
}

.documents-archive-list--sharp .documents-archive-item:hover .documents-archive-item-icon {
  padding-left: 16px;
}

.documents-archive-list--sharp .documents-archive-item-content {
  flex: 1;
  min-width: 0;
}

.documents-archive-list--sharp .documents-archive-item-name {
  font-family: var(--fonttitle);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.1rem;
}

.documents-archive-list--sharp .documents-archive-item:hover .documents-archive-item-name {
  color: var(--theme-primary);
}

.documents-archive-list--sharp .documents-archive-item-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.documents-archive-list--sharp .documents-archive-item-category {
  font-weight: 700;
  color: #999;
}

.documents-archive-list--sharp .documents-archive-item-description::before {
  content: "/";
  margin-right: 0.75rem;
  color: var(--theme-primary);
}

.documents-archive-list--sharp .documents-archive-item-download {
  flex-shrink: 0;
  color: var(--theme-primary);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.documents-archive-list--sharp .documents-archive-item:hover .documents-archive-item-download {
  transform: translateY(-2px);
}

/* ================================
   Sharp Theme - Team Contacts
   ================================ */
.team-contacts-grid--sharp {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-contacts-grid--sharp .team-contacts-card {
  background: #ffffff;
  border-top: 4px solid var(--theme-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-contacts-grid--sharp .team-contacts-card:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.team-contacts-grid--sharp .team-contacts-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.team-contacts-grid--sharp .team-contacts-card-image {
  width: 110px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transition: opacity 0.25s ease;
}

.team-contacts-grid--sharp .team-contacts-card-image:hover {
  opacity: 0.8;
}

.team-contacts-grid--sharp .team-contacts-card-info {
  flex: 1;
  min-width: 0;
}

.team-contacts-grid--sharp .team-contacts-card-title {
  font-family: var(--fonttitle);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin: 0;
}

.team-contacts-grid--sharp .team-contacts-card-section {
  color: var(--theme-primary);
  margin-right: 0.5rem;
}

.team-contacts-grid--sharp .team-contacts-card-email {
  font-size: 0.8rem;
  color: var(--theme-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.team-contacts-grid--sharp .team-contacts-card-email:hover {
  text-decoration: underline;
}

.team-contacts-grid--sharp .team-contacts-officials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
}

.team-contacts-grid--sharp .team-contacts-person {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-contacts-grid--sharp .team-contacts-person::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--theme-primary);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-contacts-grid--sharp .team-contacts-person:hover {
  background: rgba(0, 0, 0, 0.02);
  padding-left: 2rem;
}

.team-contacts-grid--sharp .team-contacts-person:hover::before {
  width: 4px;
}

.team-contacts-grid--sharp .team-contacts-person-name {
  font-family: var(--fonttitle);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}

.team-contacts-grid--sharp .team-contacts-person:hover .team-contacts-person-name {
  color: var(--theme-primary);
}

.team-contacts-grid--sharp .team-contacts-person-role {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.1rem;
}

@media (max-width: 767px) {
  .team-contacts-grid--sharp .team-contacts-card {
    clip-path: none;
  }

  .team-contacts-grid--sharp .team-contacts-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .team-contacts-grid--sharp .team-contacts-card-image {
    width: 100%;
    height: 120px;
    clip-path: none;
  }

  .team-contacts-grid--sharp .team-contacts-officials {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Sharp Theme - Modal
   ================================ */
.modal--sharp .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  overflow: hidden;
}

.modal--sharp .modal-header {
  background: var(--theme-primary) !important;
  border-radius: 0 !important;
  color: var(--primarybgcolor, #1a1a1a) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  padding: 1.25rem 1.5rem;
}

.modal--sharp .modal-title {
  font-family: var(--fonttitle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.modal--sharp .modal-body {
  padding: 1.5rem;
  line-height: 1.7;
}

.modal--sharp .modal-body div + div {
  margin-top: 0.5rem;
}

.modal--sharp .modal-footer {
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

.modal--sharp .modal-footer .btn {
  border: none;
  border-radius: 0;
  background: var(--theme-primary);
  color: var(--primarybgcolor, #1a1a1a);
  font-family: var(--fonttitle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  padding: 0.6rem 1.75rem;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal--sharp .modal-footer .btn:hover {
  transform: translateY(-2px);
}

.modal--sharp .btn-close {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.modal--sharp .btn-close:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .modal--sharp .modal-content {
    clip-path: none;
  }

  .modal--sharp .modal-footer .btn {
    clip-path: none;
  }
}

/* ================================
   Sharp Theme - News Article
   ================================ */
.news-article--sharp .news-article-hero {
  margin-bottom: 1.5rem;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.news-article--sharp .news-article-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-article--sharp .news-article-hero:hover .news-article-hero-image {
  transform: scale(1.02);
}

.news-article--sharp .news-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.news-article--sharp .news-article-meta-team {
  font-weight: 700;
  color: var(--theme-primary);
  filter: grayscale(.5);
}

.news-article--sharp .news-article-meta-date {
  color: #999;
}

.news-article--sharp .news-article-title {
  font-family: var(--fonttitle);
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--theme-primary);
}

.news-article--sharp .news-article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.news-article--sharp .news-article-body img {
  max-width: 100%;
  height: auto;
}

/* Sidebar */
.news-article--sharp .news-article-sidebar {
  border-top: 4px solid var(--theme-primary);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.news-article--sharp .news-article-sidebar-title {
  font-family: var(--fonttitle);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.news-article--sharp .news-article-sidebar-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.news-article--sharp .news-article-sidebar-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  padding-left: 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-article--sharp .news-article-sidebar-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--theme-primary);
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-article--sharp .news-article-sidebar-item:hover {
  padding-left: 1rem;
}

.news-article--sharp .news-article-sidebar-item:hover::before {
  width: 3px;
}

.news-article--sharp .news-article-sidebar-item-title {
  font-family: var(--fonttitle);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

.news-article--sharp .news-article-sidebar-item:hover .news-article-sidebar-item-title {
  filter: opacity(0.7) !important;
}

.news-article--sharp .news-article-sidebar-item-date {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.15rem;
}

.news-article--sharp .news-article-sidebar-empty {
  color: #999;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .news-article--sharp .news-article-hero {
    clip-path: none;
  }

  .news-article--sharp .news-article-sidebar {
    clip-path: none;
  }
}

/* ================================
   Sharp Theme - Form Controls
   ================================ */
.form-control,
.form-select {
  --theme-primary: var(--theme-primary-darker);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  border-top: 3px solid var(--theme-primary);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  outline: none;
}

.form-control::placeholder {
  color: #999;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.player-name {
  background-color: var(--theme-primary) !important;
  filter: grayscale(0.25);
  color: var(--theme-primary) !important;
}

.player-name span, .player-name h2 {
  color: var(--primarybgcolor) !important;
}

.player-number {
  color: #3a3a3a !important;
}

/* ================================
   SubsiteDescription - Sharp
   Angular, geometric, offset shadow
   ================================ */
#subsitedescription {
  background-color: var(--highlightcolor) !important;
  color: var(--primarytextcolor) !important;
  position: relative;
  padding: 0rem 0;
  margin-bottom: -3px;
  z-index: 2;
}

#subsitedescription.description {
  border-top: none;
  border-bottom: none;
}

#subsitedescription .container {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#subsitedescription span {
  font-family: var(--fonttitle);
  font-size: 1.35rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
  display: inline-block;
  padding: 1rem 1.5rem;
  background: var(--primarybgcolor);
  color: var(--primarytextcolor) !important;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  margin-top: -10px;
  border-bottom: 1px solid rgb(from var(--primarytextcolor) r g b / 0.1);
}

@media screen and (max-width: 768px) {
  #subsitedescription span {
    font-size: 1rem !important;
  }
}

/* Inner pages with hardcoded light backgrounds use a darker theme-primary
   so accents stay readable. Any var(--theme-primary) inside these scopes
   automatically resolves to the darker variant. */
.news-archive-list--sharp,
.games-archive-list--sharp,
.documents-archive-list--sharp,
.news-article--sharp,
.game-page--sharp,
.games-page--sharp,
.team-contacts-grid--sharp,
.modal--sharp,
.players-list--sharp,
.officials-list--sharp {
  --primarybgcolor: var(--primarybgcolor-lighter);
  --theme-secondary: var(--primarybgcolor-lighter);
  --theme-primary: var(--theme-primary-darker);
  --theme-accent: var(--theme-primary-darker);
}