@charset "UTF-8";
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
/*
----------------------------------------
BETVIA Design System Variables
----------------------------------------
*/
/* ========================================
   COLORS
======================================== */
/* primary */
/* secondary */
/* surfaces (UI hierarchy) */
/* aliases (temporary for backward compatibility) */
/* overlays */
/* ========================================
   TYPOGRAPHY
======================================== */
/* ========================================
   LAYOUT
======================================== */
/* ========================================
   SPACING SYSTEM
======================================== */
/* ========================================
   BORDER RADIUS
======================================== */
/* ========================================
   TRANSITIONS
======================================== */
/* ========================================
   BREAKPOINTS
======================================== */
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0c1117;
  color: #ffffff;
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/*
----------------------------------------
SECTION
----------------------------------------
*/
section {
  position: relative;
}

.section-title {
  text-align: center;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.text-gold {
  color: #bf982f;
}

.mb-40 {
  margin-bottom: 40px;
}

/*
----------------------------------------
HEADER
----------------------------------------
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(12, 17, 23, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  width: 110px;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

.nav a {
  opacity: 0.8;
}

.nav a:hover {
  color: #bf982f;
  opacity: 1;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 19, 27, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* CONTAINER */
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  height: 38px;
}

/* NAV */
.header-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: 0.2s;
}

.header-nav a:hover {
  color: #bf982f;
}

.header-nav a.active {
  color: #bf982f;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CTA BUTTON */
.header-btn {
  padding: 10px 16px;
  border-radius: 6px;
  background: #bf982f;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
  box-shadow: 0 0 10px rgba(191, 152, 47, 0.35);
}

.header-btn:hover {
  background: #d3a93a;
}

/* LANGUAGE SWITCH */
.lang-switch {
  font-size: 13px;
  display: flex;
  align-items: center;
}

.lang-switch a {
  opacity: 0.7;
  margin: 0 4px;
  transition: 0.2s;
}

.lang-switch a:hover {
  color: #bf982f;
}

.lang-switch a.active {
  color: #bf982f;
  font-weight: 600;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.btn-office {
  display: inline-flex;
  align-items: center;
  height: 36px;
  background: #bf982f;
  color: #000;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn-office img {
  margin-left: 10px;
  max-height: 26px;
}

.btn-office:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .header-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #06131b;
    display: none;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header-nav ul {
    flex-direction: column;
    gap: 18px;
  }
  .header-nav.active {
    display: block;
  }
  .menu-toggle {
    display: block;
    margin-left: 10px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  .lang-switch {
    font-size: 12px;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.site-footer {
  background: #06131b;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* LOGO */
.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

/* TEXT */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

/* HEADERS */
.footer-col h4 {
  margin-bottom: 15px;
  color: #bf982f;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  opacity: 0.85;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #bf982f;
  opacity: 1;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* sections */
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.hero-bookmakers {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND LAYER */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-inner {
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 19, 27, 0.75) 0%, rgba(6, 19, 27, 0.65) 40%, rgba(6, 19, 27, 0.9) 100%);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  text-align: center;
  padding: 40px;
}

/* LOGO */
.hero-logo {
  width: 120px;
  margin: 0 auto 30px;
  animation: heroLogoIn 1s ease forwards;
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateX(-500px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.hero-headline-left {
  flex-shrink: 0;
}

.hero-headline-right {
  text-align: left;
}

/* TITLE */
.hero-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  animation: heroTitleIn 1s ease forwards;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-title span {
  color: #bf982f;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  animation: heroSubtitleIn 1s ease forwards;
}

@keyframes heroSubtitleIn {
  from {
    opacity: 0;
    transform: translateY(400px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* INTRO */
.hero-intro {
  margin: 30px auto 40px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  opacity: 0;
  animation: heroIntroRight 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes heroIntroRight {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0 35px;
  opacity: 0;
  animation: heroTrustLeft 1s ease forwards;
  animation-delay: 0.9s;
}

@keyframes heroTrustLeft {
  from {
    opacity: 0;
    transform: translateX(-400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.trust-item {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid rgba(191, 152, 47, 0.35);
  background: rgba(191, 152, 47, 0.08);
  color: #bf982f;
  letter-spacing: 0.5px;
}

.hero-trust .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bf982f;
}

/* HERO CARD */
.hero-card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(191, 152, 47, 0.25);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(10px);
  max-width: 620px;
  margin: auto;
  opacity: 0;
  animation: heroCardIn 1.6s ease forwards;
  animation-delay: 0.9s;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(800px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
/* FORM */
.hero-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-form input {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

.hero-form button {
  padding: 12px 20px;
  background: #bf982f;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 80px;
    padding: 20px;
  }
  .hero-headline {
    gap: 0;
  }
  .hero-logo {
    display: none;
  }
  .hero-title {
    font-size: 24px;
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
    font-size: 14px;
  }
  .hero-trust .dot {
    display: none;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.why {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b222f 0%, #06131b 100%);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.why-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.why-card h3 {
  margin-bottom: 15px;
  color: #bf982f;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.virtual-office {
  padding: 120px 20px;
  background: linear-gradient(180deg, #06131b 0%, #0b222f 100%);
  text-align: center;
}

.virtual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.virtual-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.virtual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.virtual-card h3 {
  color: #bf982f;
  margin-bottom: 15px;
}

.virtual-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .virtual-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.integration {
  padding: 120px 20px;
  background: #06131b;
  text-align: center;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0;
}

.integration-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.integration-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.integration-card h3 {
  margin-bottom: 15px;
  color: #bf982f;
}

.integration-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .integration-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.ticket-flow {
  padding: 100px 0;
  background: #06131b;
}

/* ORIGIN */
.ticket-origin {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.integration-card {
  padding: 35px;
  border-radius: 12px;
}

.ticket-card {
  background: #0b222f;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #1f2933;
  text-align: center;
  transition: 0.3s;
}

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ticket-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.ticket-card p {
  color: #9ca3af;
  font-size: 14px;
}

/* GRID */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}
/* HIGHLIGHT */
.ticket-card.highlight {
  border: 1px solid #bf982f;
  box-shadow: 0 0 20px rgba(191, 152, 47, 0.2);
}

/* TAG */
.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  background: #1f2933;
}

.tag.gold {
  background: #bf982f;
  color: #000;
}

/* LIQUIDITY */
.ticket-liquidity {
  margin-top: 80px;
  padding: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid #bf982f;
  text-align: center;
}

.ticket-liquidity strong {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
  color: #bf982f;
}

.ticket-liquidity p {
  color: #9ca3af;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.revenue-parallax {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* OVERLAY */
.revenue-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 27, 0.75) 0%, rgba(6, 19, 27, 0.65) 40%, rgba(6, 19, 27, 0.9) 100%);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.revenue-parallax > * {
  position: relative;
  z-index: 2;
}

.bookmaker-revenue {
  padding: 100px 0;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .revenue-grid {
    grid-template-columns: 1fr;
  }
}
.revenue-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #1f2933;
  text-align: center;
  transition: 0.3s;
}

.revenue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.revenue-card h3 {
  margin-bottom: 10px;
}

.revenue-card p {
  color: #9ca3af;
}

.revenue-highlight {
  background: rgba(0, 0, 0, 0.4);
  margin-top: 80px;
  padding: 20px;
  text-align: center;
  border: 1px solid #bf982f;
  border-radius: 10px;
  color: #bf982f;
  font-weight: bold;
  transition: 0.3s;
}

.revenue-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.partner-parallax {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* OVERLAY */
.partner-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 27, 0.75) 0%, rgba(6, 19, 27, 0.65) 40%, rgba(6, 19, 27, 0.9) 100%);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.partner-parallax > * {
  position: relative;
  z-index: 2;
}

.partner-types {
  padding: 100px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #1f2933;
  text-align: center;
  transition: 0.3s;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.partner-card h3 {
  margin-bottom: 10px;
}

.partner-card p {
  color: #9ca3af;
}

/* highlight */
.partner-card.highlight {
  border: 1px solid #bf982f;
  box-shadow: 0 0 20px rgba(191, 152, 47, 0.2);
}

.partner-note {
  margin-top: 80px;
  text-align: center;
  color: #9ca3af;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.invest-cta {
  padding: 140px 20px;
  text-align: center;
  background: linear-gradient(180deg, #06131b 0%, #0b222f 100%);
}

.cta-box {
  margin-top: 40px;
}

.btn-gold {
  display: inline-block;
  padding: 16px 30px;
  background: #bf982f;
  color: black;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s;
}

.btn-gold:hover {
  background: #d3a93a;
}

.cta-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  border: 1px solid #1f2933;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  border-color: #bf982f;
  color: #bf982f;
}

.cta-note {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.5);
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.dev-note {
  margin-top: 80px;
  background: #1f2933;
  border-top: 2px solid #bf982f;
  padding: 40px 0;
}

.dev-note h3 {
  color: #bf982f;
  margin-bottom: 15px;
}

.dev-note h3::before {
  content: "⚠ ";
}

.dev-note ul {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.dev-note li {
  margin-bottom: 6px;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
/* ========================================
   OFFICE CORE SYSTEM
======================================== */
/* GRID */
.office-grid {
  display: grid;
  gap: 20px;
}
.office-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.office-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .office-grid {
    grid-template-columns: 1fr !important;
  }
}

/* CARD */
.office-card {
  background: #111827;
  border: 1px solid #1f2933;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CARD VARIANTS */
.office-card--readonly {
  opacity: 0.85;
}

.office-card--highlight {
  border-color: #bf982f;
}

/* HEADINGS */
.office-title {
  font-size: 36px;
}

.office-subtitle {
  font-size: 18px;
}

.office-text-muted {
  color: #9ca3af;
  font-size: 14px;
}

/* FIELD */
.office-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.office-field label {
  font-size: 14px;
  color: #9ca3af;
}
.office-field small {
  font-size: 12px;
  color: #9ca3af;
}
.office-field input {
  background: transparent;
  border: 1px solid #1f2933;
  border-radius: 6px;
  padding: 10px;
  color: #ffffff;
}
.office-field input:disabled {
  opacity: 0.6;
}

/* BUTTON */
.office-btn {
  background: #bf982f;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}
.office-btn:hover {
  opacity: 0.85;
}

/* STATUS */
.status-active {
  color: #bf982f;
  font-weight: bold;
}

.status-muted {
  color: #9ca3af;
}

/* TABLE */
.office-table {
  width: 100%;
  border-collapse: collapse;
}
.office-table th {
  text-align: left;
  font-size: 14px;
  color: #9ca3af;
  padding-bottom: 10px;
  border-bottom: 1px solid #1f2933;
}
.office-table td {
  padding: 10px 0;
  border-bottom: 1px solid #1f2933;
  font-size: 14px;
}
.office-table tr:last-child td {
  border-bottom: none;
}

/* CODE / ENDPOINT */
.office-code {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed #1f2933;
  border-radius: 6px;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
  color: #bf982f;
}
.office-code--labeled::before {
  content: attr(data-label);
  display: block;
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 3px;
}

/* PAYLOAD */
.office-payload {
  background: #0a0f14;
  border: 1px solid #1f2933;
  border-radius: 6px;
  padding: 10px;
  overflow-x: auto;
}
.office-payload pre {
  font-size: 13px;
  color: #bf982f;
  font-family: monospace;
}

/* FLOW */
.office-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.office-flow .flow-step {
  background: #111827;
  border: 1px solid #1f2933;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
}
.office-flow .flow-step:after {
  content: "→";
  margin-left: 10px;
  color: #9ca3af;
}
.office-flow .flow-step:last-child:after {
  content: "";
}

/* SECTION */
.office-section {
  margin-bottom: 40px;
}

/* UTILITIES (MINIMUM) */
.text-right {
  text-align: right;
}

/* ➜ LIST */
.office-list {
  padding-left: 16px;
}
.office-list li {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

/*  */
.office-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.office-row .office-badge {
  min-width: 90px;
}
.office-row .office-input {
  flex: 2;
}
.office-row .office-select {
  flex: 1;
}

.office-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================
   STATUS COLORS (GLOBAL SYSTEM)
   ========================================= */
.status-success {
  color: green;
}

.status-warning {
  color: #ffb020;
}

.status-danger {
  color: #ff3b3b;
}

.status-muted {
  color: #9ca3af;
}

/* =========================================
   RISK LEVELS
   ========================================= */
.risk-a {
  color: green;
  font-weight: 600;
}

.risk-b {
  color: #2d8ac0;
  font-weight: 600;
}

.risk-c {
  color: #ffb020;
  font-weight: 600;
}

.risk-d {
  color: #ff3b3b;
  font-weight: 800;
}

.office-card--risk-low {
  border-left: 3px solid green;
}

.office-card--risk-medium {
  border-left: 3px solid #ffb020;
}

.office-card--risk-high {
  border-left: 3px solid #ff3b3b;
}

/* =========================================
   BADGE (GLOBAL)
   ========================================= */
.office-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

/* RISK VARIANTS */
.badge-risk-a {
  background: rgba(46, 204, 113, 0.15);
  color: green;
}

.badge-risk-b {
  background: rgba(255, 176, 32, 0.15);
  color: #ffb020;
}

.badge-risk-c {
  background: rgba(255, 122, 0, 0.15);
  color: #ff7a00;
}

.badge-risk-d {
  background: rgba(255, 59, 59, 0.15);
  color: #ff3b3b;
}

/* =========================================
   FORM CONTROLS
   ========================================= */
.office-input {
  width: 100%;
  height: 38px;
  background: #0a0f14;
  border: 1px solid #1f2933;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.2s ease;
}
.office-input:focus {
  outline: none;
  border-color: #bf982f;
  box-shadow: 0 0 0 1px rgba(191, 152, 47, 0.2);
}

/* =========================================
   CUSTOM SELECT
   ========================================= */
.office-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

/* TRIGGER */
.office-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px; /* 🔥 CRITICAL */
  background: #0a0f14;
  border: 1px solid #1f2933;
  border-radius: 6px;
  padding: 0 10px; /* 🔥 fix vertical align */
  font-size: 14px;
}

.office-select:hover .office-select-trigger {
  border-color: #bf982f;
}

/* ARROW */
.office-select .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(45deg);
  margin-left: 8px;
}

/* DROPDOWN */
.office-select-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #111827;
  border: 1px solid #1f2933;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.15s ease;
  z-index: 20;
}

.office-select.open .office-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* OPTION */
.office-option {
  padding: 8px 10px;
  font-size: 14px;
  color: #ffffff;
  transition: background 0.15s ease;
}

.office-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.office-option.active {
  background: rgba(191, 152, 47, 0.2);
  color: #bf982f;
}

input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #bf982f;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.tickets-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  background: rgba(20, 30, 50, 0.6);
  border-radius: 6px;
  font-size: 13px;
}
.tickets-header__left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tickets-header__title {
  font-size: 16px;
  font-weight: 600;
}
.tickets-header__status {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tickets-header__center {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.tickets-header__center .metric {
  font-size: 13px;
  color: #ffffff;
}
.tickets-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* STATUS DOT */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-dot.live {
  background: #22c55e;
}
.status-dot.delay {
  background: #f59e0b;
}
.status-dot.off {
  background: #ef4444;
}

/* BUTTON GROUP */
.control-group {
  display: flex;
  gap: 5px;
}
.control-group button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  color: #ffffff;
}
.control-group button.active {
  background: #bf982f;
  color: #000;
}

/* TOGGLES */
.control-toggle {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}
.control-toggle.active {
  background: #bf982f;
  color: #000;
}

.status-dot.live {
  background: #22c55e;
}

.status-dot.warning {
  background: #f59e0b;
}

.metric {
  font-weight: 600;
  color: #9fb3c8;
}

.metric span {
  color: #fff;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-login {
  height: calc(100vh - 433px);
  padding-top: 160px;
  padding-bottom: 120px;
}

.login-card {
  max-width: 420px;
  margin: auto;
  background: #111827;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #1f2933;
  text-align: center;
}

.login-card h2 {
  margin-bottom: 10px;
}

.login-subtitle {
  color: #9ca3af;
  margin-bottom: 25px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  height: 44px;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid #1f2933;
  background: #0c1117;
  color: #ffffff;
}

.btn-login {
  margin-top: 10px;
  height: 44px;
  place-content: center;
  border-radius: 6px;
  border: none;
  background: #bf982f;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.login-divider {
  margin: 20px 0;
  font-size: 14px;
  color: #9ca3af;
}

.btn-register {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #bf982f;
  border-radius: 6px;
  color: #bf982f;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-register {
  padding-top: 160px;
  padding-bottom: 120px;
}

.register-card {
  max-width: 500px;
  margin: auto;
  background: #111827;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #1f2933;
}

.register-card h2 {
  margin-bottom: 10px;
}

.register-subtitle {
  color: #9ca3af;
  margin-bottom: 25px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-form input {
  height: 44px;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid #1f2933;
  background: #0c1117;
  color: #ffffff;
}

.btn-register-submit {
  display: block;
  width: 100%;
  margin-top: 10px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #bf982f;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-register-submit:hover {
  transform: translateY(-1px);
}

.btn-register-submit::after {
  content: " →";
  margin-left: 6px;
}

.register-note {
  margin-top: 20px;
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

.register-note::before {
  content: "ℹ ";
  font-size: 20px;
  padding-right: 10px;
}

.office-requirements {
  margin-top: 40px;
  padding: 25px;
  border: 1px solid #1f2933;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.office-requirements h3 {
  margin-bottom: 15px;
  color: #bf982f;
}

.office-requirements ul {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.office-requirements li {
  margin-bottom: 8px;
}

.office-partner-types {
  margin-top: 60px;
}

.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.partner-type {
  background: #111827;
  border: 1px solid #1f2933;
  padding: 25px;
  border-radius: 10px;
}

.partner-type h4 {
  color: #bf982f;
  margin-bottom: 10px;
}

.partner-type p {
  font-size: 14px;
  color: #9ca3af;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-pending {
  height: calc(100vh - 433px);
  padding-top: 160px;
  padding-bottom: 120px;
}

.pending-card {
  max-width: 500px;
  margin: auto;
  background: #111827;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #1f2933;
  text-align: center;
}

.pending-card h2 {
  margin-bottom: 20px;
}

.pending-text {
  color: #9ca3af;
  margin-bottom: 30px;
}

.btn-back {
  display: inline-block;
  background: #bf982f;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.pending-timeline {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* connecting line */
.pending-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1f2933;
  z-index: 0;
}

.timeline-step {
  position: relative;
  text-align: center;
  width: 25%;
  z-index: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background: #1f2933;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.timeline-step.active .step-circle {
  background: #bf982f;
  color: #000;
}

.step-label {
  font-size: 14px;
  color: #9ca3af;
}

.timeline-step.active .step-label {
  color: #ffffff;
}

.pending-time {
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

.pending-contact {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #bf982f;
}

@media (max-width: 768px) {
  .office-pending {
    height: auto;
  }
  .pending-timeline {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .pending-timeline::before {
    display: none;
  }
  .timeline-step {
    width: auto;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(90deg, #0b1420, #0f1c2d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
}

/* header sections */
.office-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-brand img {
  height: 34px;
  width: auto;
  margin-right: 8px;
}

.hero-divider {
  width: 2px;
  height: 26px;
  background: linear-gradient(180deg, rgba(191, 152, 47, 0) 0%, rgba(191, 152, 47, 0.8) 40%, rgb(191, 152, 47) 50%, rgba(191, 152, 47, 0.8) 60%, rgba(191, 152, 47, 0) 100%);
}

.office-product {
  line-height: 1;
  letter-spacing: 0.9px;
}
.office-product h1 {
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
  color: #d4dde6;
}
.office-product span {
  color: #bf982f;
  font-family: roboto;
  font-size: 12px;
  font-weight: 500;
}

.office-header-center {
  font-size: 13px;
}

.office-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.office-logout {
  color: #9fb3c8;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: white;
  margin-right: 10px;
  cursor: pointer;
}

.office-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 240px;
  bottom: 0;
  background: #0b1420;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  z-index: 1100;
}

.office-menu a {
  position: relative;
  display: block;
  padding: 10px 25px;
  color: #a9c0d8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.office-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.office-menu a.active {
  background: rgba(191, 152, 47, 0.08);
  border-left: 3px solid #bf982f;
  color: #fff;
}

.menu-section {
  font-size: 11px;
  letter-spacing: 1px;
  color: #5c6f85;
  padding: 15px 25px 5px;
  text-transform: uppercase;
}

/* .office-container {

    margin-left: 240px;

    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;

} */
.office-container {
  width: calc(100% - 240px);
  max-width: 100%;
  padding: 30px;
  margin-top: 60px;
  margin-left: 240px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

.sidebar-overlay.active {
  display: block;
}

@media (max-width: 900px) {
  .office-product {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .office-sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1200;
  }
  .office-sidebar.active {
    transform: translateX(0);
  }
  .office-container {
    margin-left: 0;
    padding: 80px 20px;
  }
}
@media (max-width: 700px) {
  .office-header {
    padding: 0 15px;
    z-index: 1200;
  }
  .office-header-center {
    font-size: 12px;
  }
  .office-user {
    font-size: 12px;
  }
  .desktop-only {
    display: none;
  }
  .office-brand img {
    height: 26px;
  }
  .hero-divider {
    display: none;
  }
}
/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
/* DASHBOARD GRID */
.office-dashboard {
  position: relative;
  z-index: 1;
}

.office-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .office-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .office-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* BUTTON VARIANTS */
.btn-success {
  background: green;
  color: #000;
}

.btn-danger {
  background: #ff3b3b;
  color: #fff;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.queue-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  width: 100%;
}

.office-tickets {
  width: 100%;
  height: 100%;
}

.queue-list {
  height: calc(100vh - 140px);
  overflow: hidden;
}

/* header title row-tiketov */
.queue-header {
  display: grid;
  grid-template-columns: 70px 1fr 90px 80px 100px;
  font-size: 12px;
  color: #9fb3c8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.queue-header .center {
  text-align: center;
}

.queue-header .right {
  text-align: right;
}

.queue-grid {
  display: grid;
  grid-template-columns: 70px 1fr 100px 80px 100px;
  align-items: center;
}

.queue-header,
.queue-row {
  padding: 10px 15px;
}

.queue-header {
  font-size: 12px;
  color: #9fb3c8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.queue-row .ttl {
  font-weight: 600;
}

/* =========================
QUEUE ROW — AGGRESSIVE MODE
========================= */
.queue-row {
  display: grid;
  grid-template-columns: 70px 1fr 90px 80px 100px;
  /* Stake */
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.queue-row .roi,
.queue-row .risk,
.queue-row .stake {
  text-align: right;
  font-weight: 600;
}

/* RED */
.roi.negative {
  color: #ef4444;
}

.roi.negative.critical {
  color: #dc2626;
  font-weight: 800;
}

/* GREEN */
.roi.positive {
  color: #22c55e;
}

/* NEUTRAL */
.roi.neutral {
  color: #9ca3af;
}

/* HOVER */
.queue-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* ACTIVE (HLAVNÝ FOCUS) */
.queue-row.active {
  background: rgba(191, 152, 47, 0.18);
  border-left: 5px solid #bf982f;
  border-right: 5px solid #bf982f;
}

.queue-row.accepted {
  background: rgba(34, 197, 94, 0.25);
  border-left: 5px solid #22c55e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.queue-row.rejected {
  background: rgba(239, 68, 68, 0.25);
  border-left: 5px solid #ef4444;
}

.accepted-label {
  color: #22c55e;
  font-weight: 800;
  font-size: 16px;
}

/* =========================
TTL — KRITICKÝ PRVOK
========================= */
.ttl {
  font-weight: 800;
  font-size: 15px;
}

/* ZELENÁ */
.ttl.green {
  color: #22c55e;
}

/* ORANŽOVÁ */
.ttl.yellow {
  color: #f59e0b;
}

/* ČERVENÁ + PULZ */
.ttl.red {
  color: #ef4444;
  animation: ttlBlink 0.8s infinite;
}

@keyframes ttlBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
/* =========================
URGENT ROW (HARD ALERT)
========================= */
.queue-row.urgent {
  background: rgba(239, 68, 68, 0.12);
  border-left: 5px solid #ef4444;
  animation: urgentPulse 1s infinite;
}

@keyframes urgentPulse {
  0% {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
  }
}
/* =========================
   RISK BACKGROUND LAYER
========================= */
/* BASE */
.queue-row {
  position: relative;
  transition: background 0.2s ease;
}

.queue-row.risk-b-row {
  background: rgba(45, 138, 192, 0.02);
}

/* C - warning */
.queue-row.risk-c-row {
  background: rgba(191, 152, 47, 0.04);
}

/* D - kritické */
.queue-row.risk-d-row {
  background: rgba(220, 38, 38, 0.04);
  border-left: 3px solid #dc2626;
}

/* =========================
ID / TEXT
========================= */
.queue-row .id {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.queue-row .meta {
  font-size: 12px;
  color: #9fb3c8;
}
.queue-row .meta strong {
  font-size: 14px;
  color: #bf982f;
}

.ticket-line {
  font-size: 13px;
  font-weight: 500;
}

.ticket-line .sep {
  opacity: 0.3;
  margin: 0 6px;
}

/* =========================
STAKE
========================= */
.queue-row .stake {
  text-align: right;
  font-weight: 600;
}

/* =========================
AUTO FLASH NEW TICKET
========================= */
.queue-row.new {
  animation: newTicketFlash 1.5s ease;
}

@keyframes newTicketFlash {
  0% {
    background: rgba(34, 197, 94, 0.4);
  }
  100% {
    background: transparent;
  }
}
/* =========================
URGENT PANEL
========================= */
.urgent-tickets {
  background: rgba(239, 68, 68, 0.1);
  border-left: 5px solid #ef4444;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.urgent-header {
  font-weight: 700;
  color: #ff6b6b;
}

/* PANIC MODE */
.queue-row.critical {
  animation: panicFlash 0.4s infinite;
}

@keyframes panicFlash {
  0% {
    background: rgba(239, 68, 68, 0.4);
  }
  100% {
    background: rgba(239, 68, 68, 0.1);
  }
}
.keyboard-legend {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 11px;
  color: #6b7280;
}

/* ticket-preview */
.ticket-preview {
  background: #1c1c1c;
  border-radius: 8px;
  padding: 16px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.preview-card {
  margin-bottom: 20px;
}

.preview-card h3 {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.preview-player div,
.preview-ticket div {
  font-size: 14px;
  margin-bottom: 6px;
}

.preview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-placeholder {
  color: #888;
  font-size: 14px;
}

.player-trend {
  margin-top: 10px;
}

.sparkline {
  width: 100%;
  height: 40px;
  opacity: 0.9;
}

.player-trend.up {
  background: rgba(34, 197, 94, 0.08);
}

.player-trend.down {
  background: rgba(239, 68, 68, 0.08);
}

.exposure {
  text-align: right;
  font-weight: 800;
  font-size: 14px;
}

.exposure.high {
  color: #ef4444;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.exposure.medium {
  color: #f59e0b;
}

.exposure.low {
  color: #22c55e;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
/* PAGE HEADER */
.tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.tickets-header h1 {
  font-size: 26px;
}

/* FILTER BAR */
.tickets-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  background: #111827;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.queue-grouping {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.queue-section td {
  background: #020617;
  color: #94a3b8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tickets-filter input,
.tickets-filter select {
  background: #0f1c2d;
  border: 1px solid #1f2933;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.tickets-filter button {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 6px;
}

/* TABLE */
.tickets-table {
  width: 100%;
  border-collapse: collapse;
  background: #111827;
  border-radius: 10px;
  overflow: hidden;
}

.tickets-table th {
  text-align: left;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid #1f2933;
}

.tickets-table td {
  padding: 12px;
  border-bottom: 1px solid #1f2933;
  font-size: 14px;
}

/* HOVER */
.tickets-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

th[data-sort] {
  cursor: pointer;
  position: relative;
  padding-right: 18px;
}

th[data-sort]::after {
  content: "⇅";
  position: absolute;
  right: 6px;
  font-size: 10px;
  opacity: 0.4;
}

th.sorted-asc::after {
  content: "↑";
  opacity: 1;
}

th.sorted-desc::after {
  content: "↓";
  opacity: 1;
}

.queue-section td {
  background: #020617;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* TTL */
.ttl {
  font-weight: 600;
}

.ttl.green {
  color: #22c55e;
}

.ttl.yellow {
  color: #f59e0b;
}

.ttl.red {
  color: #ef4444;
}

.ttl.pulse {
  animation: ttlPulse 1s infinite;
}

@keyframes ttlPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.ticket-active {
  outline: 2px solid #bf982f;
  background: #1e1c12;
}

/* PRIORITY ROWS */
.ticket-high {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #ef4444;
}

.ticket-medium {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
}

.ticket-low {
  background: rgba(250, 204, 21, 0.08);
  border-left: 4px solid #facc15;
}

.priority-icon.high {
  color: #ef4444;
}

.priority-icon.medium {
  color: #f59e0b;
}

.priority-icon.low {
  color: #facc15;
}

/* BADGES */
.badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  border-radius: 4px;
  margin-left: 5px;
}

.badge.best {
  background: #2563eb;
  color: white;
}

.badge.arbitrage {
  background: #f59e0b;
  color: black;
}

/* ACTIONS */
.ticket-actions {
  display: flex;
  gap: 6px;
}

.ticket-actions button {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
}

/* BULK BAR */
.bulk-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* CHECKBOX */
.tickets-table input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ticket-link {
  color: #60a5fa;
  text-decoration: underline;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ticket-link:hover {
  color: #93c5fd;
}

.link-icon {
  font-size: 11px;
  opacity: 0.6;
}

.player-link {
  color: #38bdf8;
  text-decoration: underline;
}

.player-link:hover {
  color: #7dd3fc;
}

.tickets-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

.ticket-preview {
  background: #1c1c1c;
  border-radius: 8px;
  padding: 16px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.preview-card {
  margin-bottom: 20px;
}

.preview-card h3 {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.preview-player div,
.preview-ticket div {
  font-size: 14px;
  margin-bottom: 6px;
}

.preview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-placeholder {
  color: #888;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .tickets-table th:nth-child(5),
  .tickets-table td:nth-child(5) {
    display: none;
  }
}
.ticket-new {
  animation: ticketHighlight 3s ease;
}

@keyframes ticketHighlight {
  0% {
    background: rgba(34, 197, 94, 0.3);
  }
  100% {
    background: transparent;
  }
}
.ticket-expired {
  background: rgba(239, 68, 68, 0.15);
}

.ticket-auto-accept {
  border-left: 4px solid #22c55e;
}

.ticket-auto-reject {
  border-left: 4px solid #ef4444;
}

.queue-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  font-size: 13px;
}

.auto-refresh {
  display: flex;
  align-items: center;
  gap: 5px;
}

.refresh-status {
  color: #9fb3c8;
}

.btn-refresh {
  background: #2563eb;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}

.btn-refresh:hover {
  background: #1d4ed8;
}

/* SWITCH TIME LOST */
.switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.switch input {
  display: none;
}

.switch input:checked + .slider {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.slider {
  width: 34px;
  height: 18px;
  background: #334155;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.slider::before {
  content: "";
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.2s;
}

.switch input:checked + .slider {
  background: #22c55e;
}

.switch input:checked + .slider::before {
  transform: translateX(16px);
}

.switch-text {
  font-size: 13px;
  color: #9fb3c8;
}

/* .roi {

    padding: 3px 8px;

    border-radius: 4px;

    font-size: 16px;

    font-weight: 600;

    display: inline-block;

} */
.roi-low {
  background: #065f46;
  color: #34d399;
}

.roi-neutral {
  background: #1e3a8a;
  color: #60a5fa;
}

.roi-high {
  background: #78350f;
  color: #f59e0b;
}

.roi-sharp {
  background: #7f1d1d;
  color: #ef4444;
}

/* =========================
URGENT PANEL
========================= */
.urgent-tickets {
  background: #1a0e0e;
  border-left: 4px solid #ff4d4d;
  padding: 12px 16px;
  margin-bottom: 20px;
  position: sticky;
  top: 70px;
  z-index: 20;
}

.urgent-header {
  font-size: 13px;
  font-weight: 600;
  color: #ff6b6b;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.urgent-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.urgent-ticket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a1414;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.urgent-ticket .ttl {
  color: #ff4d4d;
  font-weight: 700;
}

/* =========================
NEW TICKET ANIMATION
========================= */
.ticket-new {
  animation: ticketDrop 0.5s ease;
  background: #2c2b0f;
}

@keyframes ticketDrop {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* MOBILE → CARD MODE */
@media (max-width: 750px) {
  .tickets-table {
    display: block;
  }
  .tickets-table thead {
    display: none;
  }
  .tickets-table tbody tr {
    display: block;
    background: #111827;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .tickets-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border: none;
  }
  .tickets-table td::before {
    content: attr(data-label);
    color: #9ca3af;
    font-size: 12px;
  }
  .ticket-actions {
    margin-top: 8px;
  }
  .ticket-actions button {
    width: 100%;
  }
}
/* =====================================
EXPANDABLE TICKET DETAIL
===================================== */
.ticket-detail-layout {
  display: grid;
  grid-template-columns: 300px 320px 1fr;
  gap: 20px;
  padding: 20px;
}

.ticket-player,
.ticket-summary,
.ticket-markets {
  background: #0e1c2e;
  padding: 20px;
  border-radius: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticket-bets-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.ticket-bets-table th,
.ticket-bets-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.ticket-actions-row {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-trading {
  padding: 100px;
}
@media (max-width: 768px) {
  .office-trading {
    padding: 60px;
  }
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-risk {
  padding: 30px 0;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-settings {
  padding: 30px 0;
}

/* FIELD ROW (univerzálne) */
.office-row {
  display: flex;
  gap: 10px;
}
.office-row input {
  flex: 2;
}
.office-row .office-select {
  flex: 1;
}

/* READONLY VARIANT */
.office-input[disabled],
.office-select.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* OPTIONAL – STATUS CHIP */
.office-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.office-status--success {
  background: rgba(121, 194, 29, 0.15);
  color: green;
}
.office-status--danger {
  background: rgba(255, 80, 80, 0.15);
  color: #ff5050;
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-api {
  padding: 100px;
}
@media (max-width: 768px) {
  .office-api {
    padding: 60px;
  }
}

/*
----------------------------------------
BETVIA BOOKMAKERS LANDING
MAIN STYLE ENTRY
----------------------------------------
*/
.office-routing {
  padding: 100px;
}
@media (max-width: 768px) {
  .office-routing {
    padding: 60px;
  }
}

.detail-block {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.block-title {
  font-size: 12px;
  color: #9fb3c8;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
}

.decision-strip {
  margin-top: 12px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
}

.decision-strip.high {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.decision-strip.medium {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.decision-strip.low {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/*# sourceMappingURL=style.css.map */
