/* Stilovi za tehničke (informativne) stranice Boomerang - usklađeno s glavnim dizajnom */
:root {
  --primary-color: #0f4c81;
  --secondary-color: #f7b801;
  --bg-color: #000a1f;
  --text-color: #e0e0e0;
  --header-bg: linear-gradient(28deg, rgba(12, 49, 122, 0.9), rgba(5, 25, 65, 0.9));
  --section-separator-color: rgba(255, 255, 255, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  background-image: url('/media/content/images/df2e2c28-7fc8-4b71-9612-86ba90def7c6-bg.png');
  background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
  line-height: 1.7;
}
.site-wrapper { max-width: 1000px; margin: 0 auto; padding: 0 15px; }
a { color: var(--secondary-color); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #fff; }
h1, h2, h3, h4 { margin-bottom: 1rem; font-weight: 700; line-height: 1.25; }
h1 { font-size: 2.3rem; line-height: 1.15; }
h2 { font-size: 1.7rem; margin-top: 2rem; }
h3 { font-size: 1.3rem; margin-top: 1.5rem; }
p, ul, ol { margin-bottom: 1rem; font-size: 0.98rem; }
.bb-tech-content ul, .bb-tech-content ol { padding-left: 1.4rem; }
.bb-tech-content li { margin-bottom: 0.5rem; }
.section-separator { border-top: 1px solid var(--section-separator-color); margin-top: 1.5rem; padding-top: 1.5rem; }

/* Header */
.bbet-header { position: sticky; top: 0; z-index: 1000; width: 100%; background: var(--header-bg); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0.75rem 15px; }
.logo-link img { height: 45px; width: auto; max-width: 180px; }
.bbet-desktop-nav { margin-left: 2rem; }
.bbet-desktop-nav ul { list-style: none; display: flex; gap: 25px; }
.bbet-desktop-nav a { color: var(--text-color); font-weight: 700; text-transform: uppercase; padding: 10px 5px; position: relative; }
.bbet-desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--secondary-color); transition: width 0.3s ease-in-out; }
.bbet-desktop-nav a:hover::after, .bbet-desktop-nav a.active::after { width: 100%; }
.header-auth { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-secondary-link { color: var(--text-color); font-weight: 700; font-size: 0.9rem; padding: 8px 12px; border-radius: 5px; }
.btn-secondary-link:hover { background-color: rgba(255,255,255,0.1); color: #fff; }
.cta-button { display: inline-block; background-color: var(--secondary-color); color: #000; padding: 8px 18px; border-radius: 5px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; border: none; }
.cta-button:hover { background-color: #ffc933; color: #000; }
.burger-menu-control, .bbet-mobile-nav { display: none; }
#burger-toggle { display: none; }

/* Main content */
.bb-tech-hero { text-align: center; padding: 2rem 1rem 1rem; }
.bb-tech-content { padding: 1.5rem 0 2rem; }
.bb-tech-content .lead { font-size: 1.05rem; background: rgba(15,76,129,0.2); border-left: 4px solid var(--secondary-color); border-radius: 8px; padding: 1.1rem 1.3rem; }
.bb-tech-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; min-width: 480px; }
.bb-tech-content th, .bb-tech-content td { padding: 0.75rem; border-bottom: 1px solid var(--section-separator-color); text-align: left; }
.bb-tech-content th { border-bottom: 2px solid var(--secondary-color); color: var(--secondary-color); }
.bb-tech-content .card { background: rgba(10,35,70,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 1.25rem 1.5rem; margin: 1.25rem 0; }

/* Footer */
.site-footer { background-color: #040e27; padding: 3rem 0 2rem; margin-top: 1.5rem; border-top: 2px solid var(--primary-color); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: start; gap: 2rem 1.5rem; }
.footer-nav h4, .footer-payments h4, .footer-responsible-gaming h4 { color: var(--secondary-color); text-transform: uppercase; font-size: 1.1rem; }
.footer-nav ul { list-style: none; margin-top: 1rem; }
.footer-nav li { margin-bottom: 0.6rem; }
.footer-nav a { color: var(--text-color); opacity: 0.8; }
.footer-nav a:hover { opacity: 1; color: var(--secondary-color); }
.footer-socials a { margin: 0 8px 0 0; display: inline-block; }
.footer-socials img { height: 36px; }
.footer-payments div { margin-top: 1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 160px; }
.footer-payments img { height: auto; width: 100%; max-height: 45px; object-fit: contain; opacity: 0.85; }
.footer-copy { text-align: center; width: 100%; margin-top: 1.5rem; padding-top: 1.5rem; font-size: 0.9em; opacity: 0.7; border-top: 1px solid var(--section-separator-color); grid-column: 1 / -1; }

@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  .bbet-desktop-nav, .header-auth { display: none; }
  .burger-menu-control { display: block; position: relative; width: 30px; height: 22px; cursor: pointer; z-index: 1002; margin-left: auto; }
  .burger-lines, .burger-lines::before, .burger-lines::after { content: ''; position: absolute; width: 100%; height: 3px; background-color: #fff; border-radius: 3px; transition: all 0.3s ease; }
  .burger-lines { top: 50%; transform: translateY(-50%); }
  .burger-lines::before { top: -10px; }
  .burger-lines::after { top: 10px; }
  #burger-toggle:checked + .burger-menu-control .burger-lines { background-color: transparent; }
  #burger-toggle:checked + .burger-menu-control .burger-lines::before { top: 0; transform: rotate(45deg); }
  #burger-toggle:checked + .burger-menu-control .burger-lines::after { top: 0; transform: rotate(-45deg); }
  .bbet-mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--bg-color); flex-direction: column; align-items: center; justify-content: center; z-index: 1001; padding: 1rem; }
  #burger-toggle:checked ~ .bbet-mobile-nav { display: flex; }
  .bbet-mobile-nav ul { list-style: none; text-align: center; }
  .bbet-mobile-nav li { margin: 20px 0; }
  .bbet-mobile-nav a { color: #fff; font-size: 1.5rem; text-transform: uppercase; font-weight: 700; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-payments div { margin-left: auto; margin-right: auto; }
}
