:root{
  --rk-primary:#8a2be2;
  --rk-secondary:#00d4ff;
}
body{
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 10% -20%, rgba(138,43,226,.25), transparent),
              radial-gradient(1200px 600px at 110% 10%, rgba(0,212,255,.15), transparent),
              #0e0f13;
}
/* Improve default contrast across the site */
html{ color-scheme: dark; }
body, .card, .list-group-item, .dropdown-menu{ color: #e6e6e6; }
h1, h2, h3, h4, h5, h6, .card-title{ color: #ffffff; }
a{ color: var(--rk-secondary); }
a:hover, a:focus{ color: #8be7ff; }
.nav-link{ color: rgba(255,255,255,.85); }
.nav-link:hover, .nav-link:focus{ color: #ffffff; }
.list-group-item{ background-color: transparent; border-color: rgba(255,255,255,.1); }
.table{ color: #e6e6e6; }
.dropdown-menu{ background-color: #151720; border-color: rgba(255,255,255,.08); }
.navbar.nav-overlay{ position: fixed; top: 0; left: 0; right: 0; z-index: 1050; opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.navbar.nav-overlay.show{ opacity: 1; pointer-events: auto; }

@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background-color: rgba(14, 15, 19, 0.75);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    margin: 0.5rem;
  }
  .navbar-nav {
    padding-left: 0.5rem;
  }
}

#bg-rotator{ position: fixed; inset: 0; overflow: hidden; z-index: -1; }
#bg-rotator .bg-scrim{ position:absolute; inset:0; background: linear-gradient( to bottom, rgba(14,15,19,.25), rgba(14,15,19,.65) 60%, rgba(14,15,19,1) ); }
#bg-rotator .bg-frame{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition: opacity 1s ease; }
#bg-rotator .bg-frame.active{ opacity:1; }
.hero{
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero .glow{
  position:absolute; inset:-20%;
  background: radial-gradient(closest-side, rgba(138,43,226,.25), transparent),
              radial-gradient(closest-side, rgba(0,212,255,.25), transparent);
  filter: blur(50px); opacity:.65; pointer-events:none;
}
.glass{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
}
.rk-bubble{ max-width: 80%; padding: .6rem .9rem; border-radius: 14px; color:#e6f3ff; position: relative; background: linear-gradient(135deg, rgba(138,43,226,.25), rgba(0,212,255,.18)); border: 1px solid rgba(255,255,255,.12); }
.rk-bubble--mine{ background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary)); color:#fff; box-shadow: 0 6px 18px rgba(138,43,226,.35); }
.rk-bubble--mine .rk-bubble-text{ color:#fff; }
.rk-bubble--other .rk-bubble-text{ color:#e6f3ff; }
.rk-bubble--other{ background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); color:#e8e8e8; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.rk-bubble-text{ white-space: pre-wrap; word-break: break-word; }
.rk-bubble-meta{ font-size:.75rem; opacity:.8; margin-top:.35rem; text-align: right; }
.rk-bubble--mine .rk-bubble-meta{ color: rgba(255,255,255,.9); }
.rk-bubble--other .rk-bubble-meta{ color: #cfd8e3; }

/* tighten spacing in cards and lists */
.card-body{ padding: 1rem 1.1rem; }
.list-group-item{ padding: .55rem .75rem; }

/* DOS-style terminal input */
.rk-terminal{ position: relative; }
.rk-terminal::before{ content: ">"; position: absolute; left: .65rem; top: 50%; transform: translateY(-50%); color:#9aa0a6; animation: rk-blink 1s steps(2, start) infinite; }
.rk-terminal-input{ padding-left: 1.4rem; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; background-color:#0f1217; color:#e6e6e6; border-color: rgba(255,255,255,.12); }
.rk-terminal-input::placeholder{ color:#6f7682; }
@keyframes rk-blink{ to{ visibility: hidden; } }
.navbar-brand{ letter-spacing:.5px; }
.card.bg-dark{ border-color: rgba(255,255,255,.1); }
.form-label { color: #e6e6e6 !important; }
.form-check-label { color: #e6e6e6 !important; }
.form-control::placeholder { color: #9aa0a6; opacity: 1; }
.form-select, .form-control { color: #e6e6e6; background-color: #111318; border-color: rgba(255,255,255,.12); }
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: -100%;
  background: rgba(20,21,26,.98); color: #fff; transition: bottom .35s ease;
  z-index: 1200;
}
.cookie-banner.show{ bottom: 0; }
.cookie-banner .cookie-close{
  position:absolute; right:1rem; top:.5rem; background:none; border:none; color:#bbb; font-size:20px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 500;
}
.btn-primary:hover{
  background: linear-gradient(135deg, #7a1fd2, #00b8e6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,43,226,.4);
}
.btn-primary:active{
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(138,43,226,.3);
}
/* Normalize btn-success to match btn-primary gradient */
.btn-success{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 500;
}
.btn-success:hover{
  background: linear-gradient(135deg, #7a1fd2, #00b8e6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,43,226,.4);
}
.btn-success:active{
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(138,43,226,.3);
}
/* Normalize btn-outline-secondary to match btn-primary gradient */
.btn-outline-secondary{
  border-color: rgba(138,43,226,.4);
  color: var(--rk-secondary);
  transition: all .2s ease;
  background: transparent;
}
.btn-outline-secondary:hover{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  border-color: var(--rk-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,43,226,.4);
}
.btn-outline-secondary:active{
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(138,43,226,.3);
}
/* Action badge styles based on nextAction */
.rk-action-badge.bg-primary[data-next-action="ban"]{
  background: linear-gradient(135deg, #e22b2b, #a200ff) !important;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 500;
}
.rk-action-badge.bg-primary[data-next-action="pick"]{
  background: linear-gradient(195deg, #332be2, #25ee2e) !important;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 500;
}
section.section{ padding: 4rem 0; }
footer{ background: transparent; }

/* Embedded article iframe */
.rk-article-frame{ width:100%; border:0; background:transparent; }

.rk-background {background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 212, 255, 0.15));}

/* Wait modal */
.rk-wait-modal{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(14,15,19,.55); backdrop-filter: blur(3px); z-index:2000; }
.rk-wait-modal.show{ display:flex; }
.rk-wait-card{ padding:1rem 1.25rem; border-radius:.75rem; border:1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.rk-wait-spinner{ width:28px; height:28px; border-radius:50%; border:3px solid rgba(255,255,255,.2); border-top-color: var(--rk-secondary); animation: rk-spin 1s linear infinite; margin:0 auto .5rem; }
.rk-wait-text{ text-align:center; font-weight:600; letter-spacing:.3px; }
.rk-dots span{ animation: rk-bounce 1.2s infinite; display:inline-block; }
.rk-dots span:nth-child(2){ animation-delay:.2s; }
.rk-dots span:nth-child(3){ animation-delay:.4s; }
@keyframes rk-spin{ to{ transform: rotate(360deg); } }
@keyframes rk-bounce{ 0%,80%,100%{ transform: translateY(0); } 40%{ transform: translateY(-3px); } }

/* Merchandise List Page */
.rk-merchandise-section{
  position: relative;
  min-height: 80vh;
}
.rk-merch-header{
  text-align: center;
  padding: 2rem 0;
}
.rk-merch-main-title{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, #fff, var(--rk-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rk-merch-subtitle{
  font-size: 1.125rem;
  opacity: .7;
  margin: 0;
}

/* Filters Card */
.rk-filters-card{
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  position: sticky;
  top: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.rk-filters-header{
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rk-filters-title{
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-filters-body{
  padding: 1.5rem;
}
.rk-filter-group{
  margin-bottom: 1.5rem;
}
.rk-filter-group:last-of-type{
  margin-bottom: 0;
}
.rk-filter-label{
  display: flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.rk-filter-input,
.rk-filter-select{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .3s ease;
}
.rk-filter-input:focus,
.rk-filter-select:focus{
  background: rgba(255,255,255,.08);
  border-color: var(--rk-secondary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  color: #fff;
}
.rk-filter-input::placeholder{
  color: rgba(255,255,255,.5);
}
.rk-filter-actions{
  margin-top: 1.5rem;
}
.rk-filter-submit-btn{
  font-weight: 600;
  letter-spacing: .5px;
}
.rk-filter-reset-btn{
  font-weight: 500;
}

/* Results Count */
.rk-results-count{
  margin-top: 1rem;
}
.rk-results-count-inner{
  padding: 1rem 1.5rem;
  background: rgba(138,43,226,.1);
  border-radius: .75rem;
  border: 1px solid rgba(138,43,226,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--rk-secondary);
}

/* Products Grid */
.rk-products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 991.98px){
  .rk-products-grid{
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 575.98px){
  .rk-products-grid{
    grid-template-columns: 1fr;
  }
}

/* Enhanced Merch Cards */
.rk-product-card-wrapper{
  animation: rk-fadeInUp .6s ease;
  animation-fill-mode: both;
}
.rk-merch-card-enhanced{ 
  height:100%; 
  display:flex; 
  flex-direction:column; 
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .4s ease;
  border-color: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.rk-merch-card-enhanced::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(400px 200px at -10% -20%, rgba(138,43,226,.15), transparent 60%),
              radial-gradient(400px 200px at 120% 0%, rgba(0,212,255,.1), transparent 60%);
  opacity:0;
  transition: opacity .4s ease;
  z-index: 0;
}
.rk-merch-card-enhanced:hover::before{
  opacity:1;
}
.rk-merch-card-enhanced:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(138,43,226,.3);
  border-color: rgba(138,43,226,.4);
}
.rk-product-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
  pointer-events: none;
}
.rk-merch-card-enhanced:hover .rk-product-overlay{
  opacity: 1;
}
.rk-view-product{
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: .75rem 1.5rem;
  background: rgba(138,43,226,.8);
  backdrop-filter: blur(10px);
  border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.2);
  transform: translateY(10px);
  transition: transform .3s ease;
}
.rk-merch-card-enhanced:hover .rk-view-product{
  transform: translateY(0);
}
.rk-merch-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(400px 200px at -10% -20%, rgba(138,43,226,.12), transparent 60%),
              radial-gradient(400px 200px at 120% 0%, rgba(0,212,255,.08), transparent 60%);
  opacity:0;
  transition: opacity .3s ease;
}
.rk-merch-card:hover::before{
  opacity:1;
}
.rk-merch-card-hover:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(138,43,226,.2);
  border-color: rgba(138,43,226,.3);
}
.rk-merch-thumb{ 
  aspect-ratio: 4/3; 
  object-fit:cover;
  transition: transform .4s ease, opacity .6s ease;
  width: 100%;
  height: 100%;
}
.rk-merch-image-wrapper{
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background-color: rgba(0,0,0,.2);
}
.rk-merch-image-wrapper .rk-merch-thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .8s ease-in-out, transform .4s ease;
}
.rk-merch-image-wrapper .rk-merch-thumb.rk-merch-thumb-hidden{
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.rk-merch-image-wrapper .rk-merch-thumb.rk-merch-thumb-active{
  opacity: 1;
  z-index: 1;
}
.rk-merch-card:hover .rk-merch-thumb.rk-merch-thumb-active{
  transform: scale(1.05);
}
.rk-merch-body{ 
  flex:1; 
  display:flex; 
  flex-direction:column;
  transition: color .2s ease;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.rk-merch-link{
  color: inherit;
  transition: color .2s ease;
}
.rk-merch-link:hover{
  color: inherit;
}
.rk-merch-title{
  transition: color .2s ease;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .75rem;
  line-height: 1.4;
}
.rk-merch-card-enhanced:hover .rk-merch-title{
  color: var(--rk-secondary);
}
.rk-merch-price-section{
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.rk-merch-price-value{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rk-secondary);
  transition: transform .2s ease;
}
.rk-merch-card-enhanced:hover .rk-merch-price-value{
  transform: scale(1.05);
}
.rk-merch-price-currency{
  font-size: 1rem;
  opacity: .8;
  font-weight: 500;
}
.rk-merch-footer{
  padding: 1rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.rk-add-to-cart-btn-enhanced{
  font-weight: 600;
  letter-spacing: .3px;
  padding: .75rem 1rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.rk-add-to-cart-btn-enhanced::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.rk-add-to-cart-btn-enhanced:hover::before{
  opacity: 1;
}
.rk-add-to-cart-btn-enhanced:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138,43,226,.4);
}

/* Empty State */
.rk-empty-state{
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px dashed rgba(255,255,255,.1);
}
.rk-empty-state-icon{
  font-size: 4rem;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}
.rk-empty-state-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--rk-secondary);
}
.rk-empty-state-text{
  font-size: 1rem;
  opacity: .7;
  margin-bottom: 0;
}

/* Checkout Section */
.rk-checkout-section{
  animation: rk-fadeInUp .6s ease;
}
.rk-checkout-card{
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-radius: 1rem;
  border: 1px solid rgba(138,43,226,.3);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}
.rk-checkout-header{
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.rk-checkout-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-checkout-total{
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.rk-checkout-amount{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rk-secondary);
  margin-left: .5rem;
}
.rk-checkout-body{
  padding: 2rem;
}
.rk-checkout-hint{
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.rk-checkout-link{
  color: var(--rk-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.rk-checkout-link:hover{
  color: #8be7ff;
  text-decoration: underline;
}
.rk-form-label{
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.9);
}
.rk-form-control-enhanced,
.rk-form-select-enhanced{
  background: rgba(255,255,255,.05) !important;
  background-color: #1a1d24 !important;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff !important;
  transition: all .3s ease;
}
.rk-form-control-enhanced:focus,
.rk-form-select-enhanced:focus{
  background: rgba(255,255,255,.08) !important;
  background-color: #1f2329 !important;
  border-color: var(--rk-secondary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  color: #fff !important;
}
.rk-form-control-enhanced::placeholder{
  color: rgba(255,255,255,.5);
}
/* Style select dropdown options - limited browser support but helps where supported */
.rk-form-select-enhanced option{
  background: #1a1d24 !important;
  color: #fff !important;
  padding: .5rem;
}
.rk-form-select-enhanced option:checked{
  background: rgba(138,43,226,.5) !important;
  color: #fff !important;
}
/* Ensure select element itself has proper styling */
select.rk-form-select-enhanced,
select.form-select.rk-form-select-enhanced{
  background-color: #1a1d24 !important;
  color: #fff !important;
}
select.rk-form-select-enhanced:focus,
select.form-select.rk-form-select-enhanced:focus{
  background-color: #1f2329 !important;
  color: #fff !important;
}
.rk-checkout-submit-btn{
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 1rem;
}

/* Product Detail Page */
.rk-product-detail-section{
  position: relative;
  min-height: 80vh;
}
@media (max-width: 991.98px){
  .rk-product-gallery-wrapper{
    position: static;
    margin-bottom: 2rem;
  }
  .rk-product-title{
    font-size: 2rem;
  }
  .rk-price-value{
    font-size: 2rem;
  }
  .rk-characteristics-grid{
    grid-template-columns: 1fr;
  }
  .rk-add-to-cart-section{
    position: static;
  }
  .rk-lightbox-nav{
    width: 48px;
    height: 48px;
  }
  .rk-lightbox-prev{
    left: 1rem;
  }
  .rk-lightbox-next{
    right: 1rem;
  }
  .rk-merch-main-title{
    font-size: 2.25rem;
  }
  .rk-filters-card{
    position: static;
    margin-bottom: 2rem;
  }
  .rk-checkout-header{
    flex-direction: column;
    align-items: flex-start;
  }
  .rk-checkout-title{
    font-size: 1.25rem;
  }
  .rk-checkout-amount{
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px){
  .rk-merch-main-title{
    font-size: 1.75rem;
  }
  .rk-merch-subtitle{
    font-size: 1rem;
  }
  .rk-filters-body{
    padding: 1rem;
  }
  .rk-checkout-body{
    padding: 1.5rem;
  }
  .rk-checkout-header{
    padding: 1rem 1.5rem;
  }
}
.rk-breadcrumb{
  background: rgba(255,255,255,.03);
  padding: .75rem 1rem;
  border-radius: .5rem;
  margin-bottom: 2rem;
}
.rk-breadcrumb-item a{
  color: var(--rk-secondary);
  transition: color .2s ease;
}
.rk-breadcrumb-item a:hover{
  color: #8be7ff;
}
.rk-breadcrumb-item.active{
  color: rgba(255,255,255,.7);
}
.rk-alert-animated{
  animation: rk-slideDown .4s ease;
  border: none;
  background: linear-gradient(135deg, rgba(40,167,69,.2), rgba(40,167,69,.1));
  border-left: 3px solid #28a745;
  backdrop-filter: blur(10px);
}

/* Enhanced Product Gallery */
.rk-product-gallery-wrapper{
  position: sticky;
  top: 2rem;
}
.rk-gallery-enhanced{
  position: relative;
}
.rk-gallery-main-wrapper{
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  margin-bottom: 1rem;
}
.rk-gallery-main{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
}
.rk-gallery-main:hover{
  transform: scale(1.02);
}
.rk-gallery-zoom-btn{
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
}
.rk-gallery-zoom-btn:hover{
  background: rgba(138,43,226,.8);
  border-color: var(--rk-secondary);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(138,43,226,.5);
}
.rk-gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
  opacity: 0;
}
.rk-gallery-main-wrapper:hover .rk-gallery-nav{
  opacity: 1;
}
.rk-gallery-prev{
  left: 1rem;
}
.rk-gallery-next{
  right: 1rem;
}
.rk-gallery-nav:hover{
  background: rgba(138,43,226,.8);
  border-color: var(--rk-secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(138,43,226,.5);
}
.rk-gallery-thumbs-wrapper{
  overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(138,43,226,.5) transparent;
}
.rk-gallery-thumbs-wrapper::-webkit-scrollbar{
  height: 6px;
}
.rk-gallery-thumbs-wrapper::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius: 3px;
}
.rk-gallery-thumbs-wrapper::-webkit-scrollbar-thumb{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  border-radius: 3px;
}
.rk-gallery-thumbs{
  display: flex;
  gap: .75rem;
  padding: .25rem;
}
.rk-gallery-thumb-item{
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: .75rem;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
}
.rk-gallery-thumb-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(138,43,226,.3), rgba(0,212,255,.2));
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.rk-gallery-thumb-item:hover::before,
.rk-gallery-thumb-item.active::before{
  opacity: 1;
}
.rk-gallery-thumb-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.rk-gallery-thumb-item:hover img{
  transform: scale(1.1);
}
.rk-gallery-thumb-item.active{
  border-color: var(--rk-secondary);
  box-shadow: 0 0 0 2px rgba(0,212,255,.3), 0 4px 20px rgba(138,43,226,.4);
  transform: scale(1.05);
}
.rk-gallery-placeholder{
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px dashed rgba(255,255,255,.1);
}

/* Product Information */
.rk-product-info{
  animation: rk-fadeInUp .6s ease;
}
.rk-product-title{
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--rk-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.rk-price-section{
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-radius: 1rem;
  border: 1px solid rgba(138,43,226,.3);
  position: relative;
  overflow: hidden;
}
.rk-price-section::before{
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138,43,226,.1), transparent);
  animation: rk-pulse 3s ease-in-out infinite;
}
.rk-price-label{
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
  margin-bottom: .5rem;
}
.rk-price-amount{
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.rk-price-value{
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rk-secondary);
}
.rk-price-currency{
  font-size: 1.25rem;
  opacity: .8;
}
.rk-section-title{
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-characteristics{
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
}
.rk-characteristics-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.rk-characteristic-item{
  padding: 1rem;
  background: rgba(255,255,255,.02);
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.05);
  transition: all .3s ease;
}
.rk-characteristic-item:hover{
  background: rgba(138,43,226,.1);
  border-color: rgba(138,43,226,.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138,43,226,.2);
}
.rk-characteristic-key{
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .6;
  margin-bottom: .25rem;
}
.rk-characteristic-value{
  font-size: 1rem;
  font-weight: 500;
  color: var(--rk-secondary);
}
.rk-description{
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
}
.rk-description-content{
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}
.rk-description-content p{
  margin-bottom: 1rem;
}
.rk-description-content p:last-child{
  margin-bottom: 0;
}
.rk-add-to-cart-section{
  position: sticky;
  bottom: 2rem;
  margin-top: 2rem;
}
.rk-add-to-cart-btn-enhanced{
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .5px;
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  box-shadow: 0 8px 30px rgba(138,43,226,.3);
  transition: all .3s ease;
}
.rk-add-to-cart-btn-enhanced::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.rk-add-to-cart-btn-enhanced:hover::before{
  opacity: 1;
}
.rk-add-to-cart-btn-enhanced:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(138,43,226,.5);
}
.rk-add-to-cart-btn-enhanced:active{
  transform: translateY(-1px);
}
.rk-btn-content,
.rk-btn-loader{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Lightbox */
.rk-image-lightbox .modal-content{
  background: rgba(14,15,19,.98);
  backdrop-filter: blur(20px);
  border: none;
}
.rk-lightbox-header{
  background: rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 2rem;
}
.rk-lightbox-body{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  min-height: 80vh;
}
.rk-lightbox-img{
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: .5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.rk-lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
}
.rk-lightbox-prev{
  left: 2rem;
}
.rk-lightbox-next{
  right: 2rem;
}
.rk-lightbox-nav:hover{
  background: rgba(138,43,226,.8);
  border-color: var(--rk-secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(138,43,226,.5);
}

/* Animations */
@keyframes rk-slideDown{
  from{
    opacity: 0;
    transform: translateY(-20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rk-fadeInUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rk-pulse{
  0%, 100%{
    opacity: .3;
  }
  50%{
    opacity: .6;
  }
}

/* Swagger UI theming */
.swagger-ui .topbar{ background: transparent; }
.swagger-ui .topbar .download-url-wrapper{ display:none; }
.swagger-ui .opblock{ background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.swagger-ui .opblock .opblock-summary{ background: rgba(255,255,255,.04); }
.swagger-ui .info h2, .swagger-ui .info h1, .swagger-ui .opblock-summary-path{ color: #fff; }
.swagger-ui .model-box, .swagger-ui .response-col_description__inner{ background: rgba(255,255,255,.03); }

  /* Press listing thumbnails */
  .press-card .press-thumb{
    display:block;
    width:128px;
    aspect-ratio:16/9;
    object-fit:cover;
    border-top-left-radius:.5rem;
    border-bottom-left-radius:.5rem;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
  }
  .press-card .press-thumb-wrapper{ display:flex; align-items:center; justify-content:center; height:100%; padding-top:.5rem; }
  @media (min-width: 576px){
    .press-card .press-thumb{ width:160px; }
  }
  @media (min-width: 768px){
    .press-card .press-thumb{ width:220px; }
  }
  @media (min-width: 1200px){
    .press-card .press-thumb{ width:260px; }
  }
  .press-card .card-body{ padding-left: 1rem; display:flex; flex-direction:column; justify-content:center; }
  
  /* Press card typography and decoration */
  .press-card{ position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .press-card::before{
    content:""; position:absolute; inset:0; pointer-events:none;
    background: radial-gradient(600px 200px at -10% -20%, rgba(138,43,226,.18), transparent 60%),
                radial-gradient(600px 200px at 120% 0%, rgba(0,212,255,.12), transparent 60%);
    opacity:.6;
  }
  .press-card:hover{ transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.35); border-color: rgba(255,255,255,.18); }
  .press-card .press-title{ font-weight: 700; letter-spacing:.2px; margin-bottom:.35rem; }

/* Enhanced Bracket Cards */
.bracket-card-enhanced{
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s ease, border-color .4s ease;
  border-color: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.bracket-card-enhanced::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(400px 200px at -10% -20%, rgba(138,43,226,.15), transparent 60%),
              radial-gradient(400px 200px at 120% 0%, rgba(0,212,255,.1), transparent 60%);
  opacity:0;
  transition: opacity .4s ease;
  z-index: 0;
}
.bracket-card-enhanced:hover::before{
  opacity:1;
}
.bracket-card-enhanced:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(138,43,226,.3);
  border-color: rgba(138,43,226,.4);
}
.bracket-card-enhanced[onclick]:hover{
  cursor: pointer;
}

.bracket-card-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px 150px at -10% -20%, rgba(138,43,226,.12), transparent 60%),
              radial-gradient(300px 150px at 120% 0%, rgba(0,212,255,.08), transparent 60%);
  opacity: 0.4;
  z-index: 0;
  transition: opacity .3s ease;
}
.bracket-card-enhanced:hover .bracket-card-overlay{
  opacity: 0.7;
}

.bracket-match-badge{
  background: linear-gradient(135deg, rgba(138,43,226,.3), rgba(0,212,255,.2));
  border: 1px solid rgba(255,255,255,.15);
  color: var(--rk-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
}

.bracket-player-row{
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: all .3s ease;
}
.bracket-card-enhanced:hover .bracket-player-row{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.bracket-player-row.bracket-winner{
  background: linear-gradient(135deg, rgba(255,193,7,.15), rgba(255,193,7,.08));
  border-color: rgba(255,193,7,.3);
  box-shadow: 0 2px 8px rgba(255,193,7,.2);
}
.bracket-card-enhanced:hover .bracket-player-row.bracket-winner{
  background: linear-gradient(135deg, rgba(255,193,7,.2), rgba(255,193,7,.12));
  border-color: rgba(255,193,7,.4);
  box-shadow: 0 4px 12px rgba(255,193,7,.3);
}

.bracket-player-name{
  font-size: 0.95rem;
  color: #ffffff;
  transition: color .3s ease;
}
.bracket-player-row.bracket-winner .bracket-player-name{
  color: #ffc107;
  font-weight: 700;
}

.bracket-score-badge{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  min-width: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(138,43,226,.3);
}

.bracket-vs-divider{
  color: rgba(255,255,255,.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0 0.5rem;
}
.bracket-vs-divider::before,
.bracket-vs-divider::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.bracket-vs-divider::before{
  left: -25px;
}
.bracket-vs-divider::after{
  right: -25px;
}

.bracket-trophy{
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(255,193,7,.4));
  animation: bracket-trophy-glow 2s ease-in-out infinite;
}

@keyframes bracket-trophy-glow{
  0%, 100%{
    filter: drop-shadow(0 2px 4px rgba(255,193,7,.4));
  }
  50%{
    filter: drop-shadow(0 2px 8px rgba(255,193,7,.6));
  }
}

.bracket-advance-btn{
  background: linear-gradient(135deg, rgba(40,167,69,.8), rgba(40,167,69,.6));
  border: 1px solid rgba(40,167,69,.5);
  color: #ffffff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(40,167,69,.3);
}
.bracket-advance-btn:hover{
  background: linear-gradient(135deg, rgba(40,167,69,1), rgba(40,167,69,.8));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,.5);
  border-color: rgba(40,167,69,.7);
}

.bracket-completed{
  border-color: rgba(255,193,7,.3);
  box-shadow: 0 0 0 1px rgba(255,193,7,.2);
}
.bracket-card-enhanced.bracket-completed:hover{
  border-color: rgba(255,193,7,.5);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,193,7,.4);
}

/* Bracket Scoreboard Table */
.bracket-scoreboard-table{
  border-collapse: separate;
  border-spacing: 0;
}
.bracket-scoreboard-row{
  transition: all .3s ease;
  border-left: 3px solid transparent;
}
.bracket-scoreboard-row:hover{
  background: rgba(255,255,255,.05);
  border-left-color: var(--rk-secondary);
  transform: translateX(4px);
}
.bracket-scoreboard-row.bracket-leader{
  background: linear-gradient(135deg, rgba(255,193,7,.15), rgba(255,193,7,.08));
  border-left-color: #ffc107;
}
.bracket-scoreboard-row.bracket-second{
  background: linear-gradient(135deg, rgba(192,192,192,.12), rgba(192,192,192,.06));
  border-left-color: #c0c0c0;
}
.bracket-scoreboard-row.bracket-third{
  background: linear-gradient(135deg, rgba(205,127,50,.12), rgba(205,127,50,.06));
  border-left-color: #cd7f32;
}

.bracket-rank-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  background: linear-gradient(135deg, rgba(138,43,226,.3), rgba(0,212,255,.2));
  border: 2px solid rgba(255,255,255,.2);
  color: var(--rk-secondary);
}
.bracket-rank-badge.bracket-rank-1{
  background: linear-gradient(135deg, rgba(255,193,7,.8), rgba(255,193,7,.6));
  border-color: #ffc107;
  color: #000;
  box-shadow: 0 4px 12px rgba(255,193,7,.4);
}
.bracket-rank-badge.bracket-rank-2{
  background: linear-gradient(135deg, rgba(192,192,192,.8), rgba(192,192,192,.6));
  border-color: #c0c0c0;
  color: #000;
  box-shadow: 0 4px 12px rgba(192,192,192,.4);
}
.bracket-rank-badge.bracket-rank-3{
  background: linear-gradient(135deg, rgba(205,127,50,.8), rgba(205,127,50,.6));
  border-color: #cd7f32;
  color: #fff;
  box-shadow: 0 4px 12px rgba(205,127,50,.4);
}

.bracket-player-name{
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}
.bracket-scoreboard-row.bracket-leader .bracket-player-name{
  color: #ffc107;
  font-weight: 700;
}

.bracket-total-score{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  min-width: 3rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(138,43,226,.3);
}

/* Horizontal Tabs Styling for Manage Event Page */
.nav-tabs-custom{
  border-bottom: 2px solid rgba(255,255,255,.1);
  gap: 0.5rem;
}
.nav-tabs-custom .nav-item{
  margin-bottom: -2px;
}
.nav-tabs-custom .nav-link{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  color: rgba(255,255,255,.7);
  padding: 0.75rem 1.25rem;
  margin-right: 0.25rem;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: all .3s ease;
  font-weight: 500;
}
.nav-tabs-custom .nav-link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.nav-tabs-custom .nav-link.active{
  background: linear-gradient(135deg, rgba(138,43,226,.2), rgba(0,212,255,.15));
  border-color: rgba(138,43,226,.4);
  color: var(--rk-secondary);
  font-weight: 600;
  box-shadow: 0 -2px 8px rgba(138,43,226,.2);
}
.nav-tabs-custom .nav-link.active:hover{
  background: linear-gradient(135deg, rgba(138,43,226,.25), rgba(0,212,255,.2));
  color: var(--rk-secondary);
}
.tab-content{
  padding-top: 1rem;
}
  .press-card .press-title a{ color:#fff; text-decoration:none; }
  .press-card .press-meta{ font-size:.85rem; color:#cfd8e3; opacity:.85; }
  .press-card .press-abstract{
    color:#d6e0ea; opacity:.9; margin-bottom:.6rem;
    display:-webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .press-card .press-footer{ margin-top:auto; }
  .press-card .press-tags .badge{ background: rgba(255,255,255,.08) !important; border:1px solid rgba(255,255,255,.12); color:#e6f3ff; }
  .press-card .press-tags .badge:hover{ background: rgba(255,255,255,.14) !important; }
  

/*Event video */
.tv-screen {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.tv-frame {
  position: relative;
  padding: 15px;
  background: #2a2a2a;
  border-radius: 5px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  border: 1px solid #3d1e58;
}

.tv-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
}

.tv-screen::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.event-video {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.event-video iframe {
  border: none;
  box-shadow: none;
  width: 100%;
  height: 100%;
}

/* Cookie Preferences Modal */
#cookieModal .rk-cookie-modal {
  background: rgba(20, 21, 26, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.3) !important;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  color: #ffffff !important;
}

#cookieModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1.5rem 2rem 1rem 2rem;
  background: transparent !important;
}

#cookieModal .modal-title {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.4rem;
}

#cookieModal .modal-body {
  padding: 1.5rem 2rem;
  background: transparent !important;
  color: #ffffff !important;
}

#cookieModal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1rem 2rem 1.5rem 2rem;
  background: transparent !important;
}

#cookieModal .rk-cookie-category {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

#cookieModal .rk-cookie-category:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(138, 43, 226, 0.3);
}

#cookieModal .rk-cookie-category h6 {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.1rem;
}

#cookieModal .rk-cookie-description {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

#cookieModal .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  width: 3rem;
  height: 1.5rem;
}

#cookieModal .form-check-input:checked {
  background-color: var(--rk-primary);
  border-color: var(--rk-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

#cookieModal .form-check-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#cookieModal .form-check-label {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

#cookieModal .btn-close {
  background: transparent !important;
  border: none !important;
  opacity: 0.8;
  filter: invert(1);
}

#cookieModal .btn-close:hover {
  opacity: 1;
}

#cookieModal .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

#cookieModal .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

#cookieModal .btn-primary {
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary));
  border: none;
  color: #ffffff;
  font-weight: 500;
}

#cookieModal .btn-primary:hover {
  background: linear-gradient(135deg, #7a1fd2, #00b8e6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

/* Modal backdrop */
#cookieModal.modal .modal-backdrop {
  background-color: rgba(14, 15, 19, 0.8) !important;
  backdrop-filter: blur(3px);
}

/* Merchandise page button improvements */
.rk-add-to-cart-btn{
  position: relative;
  overflow: hidden;
}
.rk-add-to-cart-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
  opacity:0;
  transition: opacity .2s ease;
}
.rk-add-to-cart-btn:hover::before{
  opacity:1;
}
.rk-back-btn{
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.rk-back-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  opacity:0;
  transition: opacity .2s ease;
}
.rk-back-btn:hover{
  border-color: rgba(138,43,226,.4);
  color: #fff;
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(138,43,226,.2);
}
.rk-back-btn:hover::before{
  opacity:1;
}
.rk-back-btn:active{
  transform: translateX(-2px);
}
.rk-update-btn{
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  transition: all .2s ease;
}
.rk-update-btn:hover{
  border-color: rgba(255,255,255,.4);
  background-color: rgba(255,255,255,.1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,.1);
}
.rk-checkout-btn{
  position: relative;
  overflow: hidden;
}
.rk-checkout-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity:0;
  transition: opacity .2s ease;
}
.rk-checkout-btn:hover::before{
  opacity:1;
}
.rk-remove-btn{
  transition: all .2s ease;
}
.rk-remove-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,53,69,.3);
}
.rk-remove-btn:active{
  transform: translateY(0);
}

/* Button outline improvements */
.btn-outline-primary{
  border-color: rgba(138,43,226,.4);
  color: var(--rk-secondary);
  transition: all .2s ease;
}
.btn-outline-primary:hover{
  background: linear-gradient(135deg, rgba(138,43,226,.2), rgba(0,212,255,.15));
  border-color: var(--rk-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138,43,226,.3);
}
.btn-outline-light{
  transition: all .2s ease;
}
.btn-outline-light:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,.1);
}
.btn-outline-danger{
  transition: all .2s ease;
}
.btn-outline-danger:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,53,69,.3);
}

/* Cart Page Styles */
.rk-cart-section{
  position: relative;
  min-height: 80vh;
}
.rk-cart-header{
  text-align: center;
  padding: 2rem 0;
}
.rk-cart-main-title{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, #fff, var(--rk-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rk-cart-subtitle{
  font-size: 1.125rem;
  opacity: .7;
  margin: 0;
}

/* Cart Items */
.rk-cart-items-wrapper{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.rk-cart-item-card{
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  transition: all .3s ease;
  position: relative;
}
.rk-cart-item-card::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px 200px at -10% -20%, rgba(138,43,226,.1), transparent 60%),
              radial-gradient(400px 200px at 120% 0%, rgba(0,212,255,.08), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.rk-cart-item-card:hover::before{
  opacity: 1;
}
.rk-cart-item-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(138,43,226,.3);
  border-color: rgba(138,43,226,.4);
}
.rk-cart-item-body{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px){
  .rk-cart-item-body{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.rk-cart-item-info{
  flex: 1;
  min-width: 0;
}
.rk-cart-item-title{
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
}
.rk-cart-item-card:hover .rk-cart-item-title{
  color: var(--rk-secondary);
}
.rk-cart-item-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.rk-cart-item-price{
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.rk-cart-price-label{
  font-size: .875rem;
  opacity: .7;
  font-weight: 500;
}
.rk-cart-price-value{
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rk-secondary);
}
.rk-cart-price-currency{
  font-size: .875rem;
  opacity: .8;
  font-weight: 500;
}

/* Cart Item Controls */
.rk-cart-item-controls{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 768px){
  .rk-cart-item-controls{
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.rk-cart-item-qty{
  min-width: 140px;
}
.rk-cart-qty-label{
  display: flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.rk-cart-qty-input{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .3s ease;
  font-weight: 600;
  text-align: center;
}
.rk-cart-qty-input:focus{
  background: rgba(255,255,255,.08);
  border-color: var(--rk-secondary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  color: #fff;
}
.rk-cart-item-total{
  text-align: center;
  min-width: 140px;
}
@media (min-width: 768px){
  .rk-cart-item-total{
    text-align: right;
  }
}
.rk-cart-total-label{
  font-size: .75rem;
  opacity: .7;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .25rem;
  display: block;
}
.rk-cart-total-amount{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
}
@media (min-width: 768px){
  .rk-cart-total-amount{
    justify-content: flex-end;
  }
}
.rk-cart-total-value{
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rk-secondary);
}
.rk-cart-total-currency{
  font-size: 1rem;
  opacity: .8;
  font-weight: 500;
}
.rk-cart-item-actions{
  display: flex;
  align-items: center;
}
.rk-cart-remove-btn{
  font-weight: 500;
  padding: .5rem 1rem;
  transition: all .3s ease;
  white-space: nowrap;
}
.rk-cart-remove-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,53,69,.4);
}

/* Cart Summary */
.rk-cart-summary-card{
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-radius: 1rem;
  border: 1px solid rgba(138,43,226,.3);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  margin-top: 2rem;
}
.rk-cart-summary-header{
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rk-cart-summary-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-cart-summary-body{
  padding: 1.5rem 2rem;
}
.rk-cart-summary-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
}
.rk-cart-summary-label{
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.rk-cart-summary-value{
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.rk-cart-summary-divider{
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: .5rem 0;
}
.rk-cart-summary-total{
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 2px solid rgba(138,43,226,.3);
}
.rk-cart-summary-amount{
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.rk-cart-grand-value{
  font-size: 2rem;
  font-weight: 700;
  color: var(--rk-secondary);
}
.rk-cart-grand-currency{
  font-size: 1.25rem;
  opacity: .8;
  font-weight: 500;
}

/* Cart Actions */
.rk-cart-actions{
  margin-top: 2rem;
}
.rk-cart-update-btn{
  font-weight: 600;
  letter-spacing: .3px;
  padding: .75rem 1.5rem;
  transition: all .3s ease;
}
.rk-cart-update-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,.15);
}
.rk-cart-checkout-btn{
  font-weight: 600;
  letter-spacing: .3px;
  padding: .75rem 1.5rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.rk-cart-checkout-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.rk-cart-checkout-btn:hover::before{
  opacity: 1;
}
.rk-cart-checkout-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138,43,226,.4);
}
.rk-cart-continue-link{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 500;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
}
.rk-cart-continue-link:hover{
  color: var(--rk-secondary);
  transform: translateX(-4px);
}
.rk-shop-btn{
  font-weight: 600;
  letter-spacing: .3px;
  padding: .75rem 1.5rem;
  transition: all .3s ease;
}
.rk-shop-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138,43,226,.4);
}

/* Responsive Cart Styles */
@media (max-width: 767.98px){
  .rk-cart-main-title{
    font-size: 2.25rem;
  }
  .rk-cart-subtitle{
    font-size: 1rem;
  }
  .rk-cart-item-body{
    gap: 1rem;
  }
  .rk-cart-item-controls{
    gap: 1rem;
  }
  .rk-cart-item-qty,
  .rk-cart-item-total{
    min-width: auto;
    width: 100%;
  }
  .rk-cart-total-amount{
    justify-content: center;
  }
  .rk-cart-summary-header,
  .rk-cart-summary-body{
    padding: 1rem 1.5rem;
  }
  .rk-cart-summary-title{
    font-size: 1.25rem;
  }
  .rk-cart-grand-value{
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px){
  .rk-cart-main-title{
    font-size: 1.75rem;
  }
  .rk-cart-item-body{
    padding: 1rem;
  }
  .rk-cart-item-title{
    font-size: 1.125rem;
  }
  .rk-cart-summary-header,
  .rk-cart-summary-body{
    padding: 1rem;
  }
}

/* Checkout Page Styles */
.rk-checkout-page-section{
  position: relative;
  min-height: 80vh;
}
.rk-checkout-page-header{
  text-align: center;
  padding: 2rem 0;
}
.rk-checkout-page-title{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, #fff, var(--rk-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rk-checkout-page-subtitle{
  font-size: 1.125rem;
  opacity: .7;
  margin: 0;
}

/* Checkout Form Card */
.rk-checkout-form-card{
  background: rgba(255,255,255,.03);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.rk-checkout-form-header{
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rk-checkout-form-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-checkout-form-body{
  padding: 2rem;
}

/* Country Select with Search */
.rk-country-select-wrapper{
  position: relative;
}
.rk-country-select{
  position: relative;
  z-index: 2;
}
.rk-country-search-wrapper{
  position: relative;
  margin-top: .5rem;
}
.rk-country-search{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .3s ease;
  width: 100%;
}
.rk-country-search:focus{
  background: rgba(255,255,255,.08);
  border-color: var(--rk-secondary);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
  color: #fff;
}
.rk-country-search-results{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(30,30,30,.98);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: .25rem;
}
.rk-country-search-results.show{
  display: block;
}
.rk-country-result-item{
  padding: .75rem 1rem;
  cursor: pointer;
  transition: all .2s ease;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.rk-country-result-item:last-child{
  border-bottom: none;
}
.rk-country-result-item:hover{
  background: rgba(138,43,226,.2);
  color: var(--rk-secondary);
}
.rk-country-no-results{
  padding: 1rem;
  text-align: center;
  opacity: .7;
  font-style: italic;
}

/* Checkout Summary Card */
.rk-checkout-summary-card{
  background: linear-gradient(135deg, rgba(138,43,226,.15), rgba(0,212,255,.1));
  border-radius: 1rem;
  border: 1px solid rgba(138,43,226,.3);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  position: sticky;
  top: 2rem;
}
.rk-checkout-summary-header{
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rk-checkout-summary-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
}
.rk-checkout-summary-body{
  padding: 1.5rem 2rem;
}
.rk-checkout-items-list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rk-checkout-item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.rk-checkout-item:last-child{
  border-bottom: none;
}
.rk-checkout-item-info{
  flex: 1;
  min-width: 0;
}
.rk-checkout-item-title{
  font-weight: 600;
  margin-bottom: .25rem;
  color: rgba(255,255,255,.95);
}
.rk-checkout-item-meta{
  display: flex;
  gap: 1rem;
  font-size: .875rem;
  opacity: .7;
}
.rk-checkout-item-qty,
.rk-checkout-item-price{
  display: inline-block;
}
.rk-checkout-item-total{
  font-weight: 700;
  color: var(--rk-secondary);
  font-size: 1.125rem;
  white-space: nowrap;
  margin-left: 1rem;
}
.rk-checkout-summary-divider{
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 1rem 0;
}
.rk-checkout-summary-total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid rgba(138,43,226,.3);
}
.rk-checkout-summary-total-label{
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.rk-checkout-summary-total-amount{
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.rk-checkout-grand-value{
  font-size: 2rem;
  font-weight: 700;
  color: var(--rk-secondary);
}
.rk-checkout-grand-currency{
  font-size: 1.25rem;
  opacity: .8;
  font-weight: 500;
}
.rk-checkout-summary-footer{
  padding: 1.5rem 2rem;
  background: rgba(0,0,0,.1);
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Responsive Checkout Styles */
@media (max-width: 991.98px){
  .rk-checkout-page-title{
    font-size: 2.25rem;
  }
  .rk-checkout-summary-card{
    position: static;
    margin-top: 2rem;
  }
}
@media (max-width: 575.98px){
  .rk-checkout-page-title{
    font-size: 1.75rem;
  }
  .rk-checkout-page-subtitle{
    font-size: 1rem;
  }
  .rk-checkout-form-header,
  .rk-checkout-form-body{
    padding: 1rem 1.5rem;
  }
  .rk-checkout-summary-header,
  .rk-checkout-summary-body,
  .rk-checkout-summary-footer{
    padding: 1rem 1.5rem;
  }
  .rk-checkout-form-title,
  .rk-checkout-summary-title{
    font-size: 1.25rem;
  }
  .rk-checkout-grand-value{
    font-size: 1.5rem;
  }
}

/* Custom Confirmation Modal */
.rk-confirm-modal-content{
  background: rgba(20, 21, 26, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.3) !important;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  color: #ffffff !important;
}
.rk-confirm-modal-header{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1.5rem 2rem 1rem 2rem;
  background: transparent !important;
}
.rk-confirm-modal-header .modal-title{
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}
.rk-confirm-modal-header .modal-title i{
  color: var(--rk-secondary);
}
.rk-confirm-modal-body{
  padding: 1.5rem 2rem;
  background: transparent !important;
  color: #ffffff !important;
}
.rk-confirm-message{
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem;
  line-height: 1.6;
}
.rk-confirm-modal-footer{
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1rem 2rem 1.5rem 2rem;
  background: transparent !important;
  gap: 0.75rem;
}
.rk-confirm-ok{
  background: linear-gradient(135deg, var(--rk-primary), var(--rk-secondary)) !important;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 500;
  color: #ffffff !important;
}
.rk-confirm-ok:hover{
  background: linear-gradient(135deg, #7a1fd2, #00b8e6) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,43,226,.4);
}
.rk-confirm-ok:active{
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(138,43,226,.3);
}
.rk-confirm-cancel{
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.9) !important;
  transition: all .2s ease;
  background: transparent !important;
}
.rk-confirm-cancel:hover{
  border-color: rgba(255,255,255,.4) !important;
  background-color: rgba(255,255,255,.1) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255,.1);
}
.rk-confirm-cancel:active{
  transform: translateY(0);
}

/* tournament styles */
.btn-move-forward{background: black;}