  :root {
      --primary-color: #1a237e;
      --secondary-color: #ff6f00;
      --text-color: #333;
      --bg-light: #f8f9fa;
      --bg-white: #ffffff;
      --border-color: #e0e0e0;
      --transition: all 0.3s ease;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: var(--bg-white);
      overflow-x: hidden;
  }

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

  ul {
      list-style: none;
  }


  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section-title {
      text-align: center;
      margin-bottom: 10px;
      font-size: 2.5rem;
      color: var(--primary-color);
  }

  .section-subtitle {
      text-align: center;
      margin-bottom: 50px;
      color: #666;
      font-size: 1.1rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: 700;
      transition: var(--transition);
      cursor: pointer;
      text-align: center;
      border: none;
  }

  .btn-primary {
      background-color: var(--secondary-color);
      color: white;
  }

  .btn-primary:hover {
      background-color: #e65100;
      transform: translateY(-2px);
  }

  .btn-outline {
      border: 2px solid white;
      color: white;
      background: transparent;
  }

  .btn-outline:hover {
      background: white;
      color: var(--primary-color);
  }

  .disclaimer-small {
      font-size: 0.8rem;
      color: #888;
      margin-top: 5px;
      display: block;
  }


  .fade-in-section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      will-change: opacity, visibility;
  }

  .fade-in-section.is-visible {
      opacity: 1;
      transform: none;
  }


  header {
      background-color: var(--primary-color);
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

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

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo i {
      color: var(--secondary-color);
  }

  .nav-menu {
      display: flex;
      gap: 20px;
  }

  .nav-link {
      color: white;
      font-weight: 500;
      transition: var(--transition);
      font-size: 0.95rem;
  }

  .nav-link:hover {
      color: var(--secondary-color);
  }

  .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
  }


  #hero {
      background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('../img/hero.png');
      background-size: cover;
      background-position: center;
      height: 80vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
  }

  .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }


  #benefits {
      padding: 60px 0;
      background-color: var(--bg-light);
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .benefit-card {
      background: white;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
  }

  .benefit-card:hover {
      transform: translateY(-5px);
  }

  .benefit-card i {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
  }

  .benefit-card h3 {
      margin-bottom: 15px;
      color: var(--primary-color);
  }


  #o-nama {
      padding: 80px 0;
  }

  .about-content {
      background: white;
      padding: 40px;
      border-radius: 10px;
      border-left: 5px solid var(--secondary-color);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .about-text p {
      margin-bottom: 20px;
      font-size: 1.05rem;
  }


  #usluge {
      padding: 80px 0;
      background-color: var(--bg-light);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
  }

  .service-card {
      background: white;
      padding: 30px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      transition: var(--transition);
  }

  .service-card:hover {
      border-color: var(--secondary-color);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
  }

  .service-header i {
      font-size: 1.8rem;
      color: var(--primary-color);
  }

  .service-header h3 {
      font-size: 1.3rem;
  }


  #kako-funkcionise {
      padding: 80px 0;
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .step-card {
      position: relative;
      padding: 20px;
      background: white;
      border-top: 4px solid var(--primary-color);
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .step-number {
      position: absolute;
      top: -20px;
      right: 20px;
      background: var(--secondary-color);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
  }


  #top-kladionice {
      padding: 80px 0;
      background-color: #f0f4f8;
  }

  .bookmaker-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 30px;
      display: flex;
      flex-direction: row;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
  }

  .bookmaker-card:hover {
      transform: translateY(-5px);
  }

  .bm-logo-area {
      flex: 1;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fafafa;
      border-right: 1px solid var(--border-color);
      min-width: 200px;
  }

  .bm-logo-area img {
      max-width: 100%;
      height: auto;
  }

  .bm-info-area {
      flex: 2;
      padding: 25px;
  }

  .bm-rating {
      color: #ffc107;
      margin-bottom: 10px;
      font-weight: bold;
  }

  .bm-details h3 {
      margin-bottom: 10px;
      color: var(--primary-color);
      font-size: 1.5rem;
  }

  .bm-contact {
      font-size: 0.9rem;
      color: #555;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px dashed #ccc;
  }

  .bm-contact p {
      margin-bottom: 5px;
  }

  .bm-contact i {
      width: 20px;
      color: var(--primary-color);
  }

  .bm-cta-area {
      flex: 1;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #fdfdfd;
      border-left: 1px solid var(--border-color);
      text-align: center;
  }


  #recenzije {
      padding: 80px 0;
  }

  .review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .review-card {
      background: var(--bg-light);
      padding: 25px;
      border-radius: 8px;
      position: relative;
  }

  .review-card i.quote {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: rgba(0, 0, 0, 0.1);
  }

  .reviewer {
      display: flex;
      align-items: center;
      margin-top: 15px;
      font-weight: bold;
  }

  .reviewer-avatar {
      width: 40px;
      height: 40px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
  }


  #faq {
      padding: 80px 0;
      background-color: var(--bg-light);
  }

  .accordion {
      max-width: 800px;
      margin: 0 auto;
  }

  .accordion-item {
      background: white;
      margin-bottom: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
  }

  .accordion-header {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      background: white;
      transition: var(--transition);
  }

  .accordion-header:hover {
      background: #f1f1f1;
  }

  .accordion-header i {
      transition: transform 0.3s ease;
  }

  .accordion-header.active i {
      transform: rotate(180deg);
  }

  .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 20px;
      background: #fafafa;
  }

  .accordion-body p {
      padding: 20px 0;
      font-size: 0.95rem;
  }


  #kontakt {
      padding: 80px 0;
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }

  .contact-info {
      background: var(--primary-color);
      color: white;
      padding: 40px;
      border-radius: 10px;
  }

  .contact-info h3 {
      margin-bottom: 20px;
      color: white;
  }

  .info-item {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: inherit;
  }


  .responsible-gaming {
      background-color: #333;
      color: white;
      padding: 20px 0;
      text-align: center;
  }

  .rg-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 10px;
      font-size: 1.5rem;
  }




  #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--secondary-color);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 999;
  }

  #back-to-top.show {
      opacity: 1;
      pointer-events: auto;
  }


  @media (max-width: 992px) {
      .bookmaker-card {
          flex-direction: column;
      }

      .bm-logo-area,
      .bm-cta-area {
          border: none;
          border-bottom: 1px solid var(--border-color);
      }
  }

  @media (max-width: 768px) {
      .navbar .nav-menu {
          position: fixed;
          left: -100%;
          top: 70px;
          flex-direction: column;
          background-color: var(--primary-color);
          width: 100%;
          text-align: center;
          transition: 0.3s;
          padding: 20px 0;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .navbar .nav-menu.active {
          left: 0;
      }

      .hamburger {
          display: block;
      }

      .hero-content h1 {
          font-size: 2.2rem;
      }

      .contact-container {
          grid-template-columns: 1fr;
      }
  }

  .sr-footer {
      background: #0b1017;
      color: #f4f4f4;
      font-size: 14px;
      line-height: 1.6;
      padding: 40px 20px 24px;
  }

  .sr-footer a {
      color: #f3cf55;
      text-decoration: none;
  }

  .sr-footer a:hover {
      text-decoration: underline;
  }

  .sr-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .sr-footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
  }

  .sr-footer-brand {
      max-width: 520px;
  }

  .sr-footer-logo {
      display: inline-block;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
  }

  .sr-footer-brand-text {
      margin: 0;
      opacity: 0.9;
  }

  .sr-footer-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
  }

  .sr-badge {
      min-height: 52px;
      border-radius: 999px;
      border: 1px solid rgba(243, 207, 85, 0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(5, 8, 15, 0.7);
  }

  .sr-badge img {
      height: 60px;
      display: block;
  }

  .sr-badge-18 {
      background: #c0392b;
      border-color: #c0392b;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
  }



  .sr-footer-columns {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      padding-top: 12px;
      padding-bottom: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .sr-footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
  }

  .sr-footer-col p {
      margin: 0 0 8px;
      opacity: 0.9;
  }

  .sr-footer-nav {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .sr-footer-nav li {
      margin-bottom: 6px;
  }

  .sr-footer-nav a {
      font-size: 14px;
  }



  .sr-footer-bottom {
      margin-top: 18px;
  }

  .sr-footer-disclaimer {
      margin: 0 0 10px;
      font-size: 13px;
      opacity: 0.9;
  }

  .sr-footer-copy {
      margin: 0 0 6px;
      font-size: 13px;
      opacity: 0.85;
  }

  .sr-footer-en {
      margin: 0;
      font-size: 12px;
      opacity: 0.75;
  }



  @media (max-width: 992px) {
      .sr-footer-columns {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 640px) {
      .sr-footer-top {
          flex-direction: column;
      }

      .sr-footer-columns {
          grid-template-columns: 1fr;
      }

      .sr-footer {
          padding: 28px 16px 20px;
      }
  }

  .content-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 40px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .content-container h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: var(--primary-color);
  }

  .content-container .last-updated {
      font-size: 0.9rem;
      color: #888;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 20px;
      display: block;
  }

  .content-container h2 {
      font-size: 1.5rem;
      margin-top: 40px;
      margin-bottom: 20px;
      color: var(--primary-color);
      border-left: 4px solid var(--secondary-color);
      padding-left: 15px;
  }

  .content-container h3 {
      font-size: 1.2rem;
      margin-top: 25px;
      margin-bottom: 15px;
      color: #444;
  }

  .content-container p {
      margin-bottom: 15px;
      color: var(--text-light);
      text-align: justify;
  }

  .content-container ul {
      margin-bottom: 20px;
      padding-left: 20px;
      color: var(--text-light);
  }

  .content-container li {
      margin-bottom: 10px;
  }

  .content-container .highlight-box {
      background-color: #f0f4f8;
      padding: 20px;
      border-radius: 5px;
      margin: 20px 0;
      border: 1px solid #d1d9e6;
  }

  @media (max-width: 768px) {
      .content-container {
          padding: 20px;
          margin: 20px;
      }

      .content-container h1 {
          font-size: 2rem;
      }
  }

  .highlight-box {
      background-color: #fff3e0;
      padding: 20px;
      border-radius: 5px;
      margin: 20px 0;
      border: 1px solid #ffe0b2;
      color: #e65100;
  }

  .warning-text {
      font-weight: bold;
      color: #d32f2f;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 0.95rem;
  }

  .cookie-table th,
  .cookie-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
  }

  .cookie-table th {
      background-color: var(--primary-color);
      color: white;
  }

  .cookie-table tr:nth-child(even) {
      background-color: #f9f9f9;
  }

  .info-box {
      background-color: #e3f2fd;
      border-left: 5px solid #2196f3;
      padding: 15px;
      margin: 20px 0;
      border-radius: 4px;
  }

  @media (max-width: 768px) {

      .cookie-table {
          display: block;
          overflow-x: auto;
      }
  }

  .tips-box {
      background-color: #e8f5e9;
      padding: 25px;
      border-radius: 8px;
      border: 1px solid #c8e6c9;
  }

  .tips-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .tips-box li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
  }

  .tips-box li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--success-color);
  }

  .warning-box {
      background-color: #ffebee;
      padding: 25px;
      border-radius: 8px;
      border: 1px solid #ffcdd2;
      margin: 30px 0;
      text-align: center;
  }

  .warning-box i {
      font-size: 2rem;
      color: var(--danger-color);
      margin-bottom: 10px;
  }

  .warning-box h3 {
      color: var(--danger-color);
      margin-top: 0;
  }

  .help-contact-card {
      background: white;
      border: 2px solid var(--primary-color);
      padding: 30px;
      border-radius: 10px;
      margin-top: 30px;
      text-align: center;
  }

  .help-contact-card h4 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary-color);
  }

  .contact-number {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--secondary-color);
      display: block;
      margin: 10px 0;
  }

  #age-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(26, 35, 126, 0.95);
      backdrop-filter: blur(5px);
      z-index: 10000;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
  }

  .age-modal-content {
      background: white;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      max-width: 500px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      border-top: 5px solid var(--secondary-color);
  }

  .age-modal-content i {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
  }

  .age-modal-content h2 {
      margin-bottom: 15px;
      color: var(--primary-color);
  }

  .age-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
  }

  .btn-age-yes {
      background-color: var(--success-color, #2e7d32);
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1rem;
      transition: 0.3s;
  }

  .btn-age-no {
      background-color: #d32f2f;
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1rem;
      transition: 0.3s;
  }

  .btn-age-yes:hover,
  .btn-age-no:hover {
      opacity: 0.9;
      transform: scale(1.05);
  }

  #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
      padding: 20px;
      z-index: 9990;
      display: none;
      border-top: 2px solid var(--primary-color);
  }

  .cookie-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
  }

  .cookie-text {
      flex: 1;
      min-width: 300px;
      font-size: 0.9rem;
      color: #444;
  }

  .cookie-buttons {
      display: flex;
      gap: 10px;
  }

  .btn-cookie-accept {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
  }

  .btn-cookie-settings {
      background-color: transparent;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
  }

  #cookie-settings-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9995;
      justify-content: center;
      align-items: center;
  }

  .settings-content {
      background: white;
      padding: 30px;
      border-radius: 8px;
      width: 90%;
      max-width: 500px;
  }

  .cookie-option {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
  }

  .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 24px;
  }

  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 24px;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
  }

  input:checked+.slider {
      background-color: var(--primary-color);
  }

  input:disabled+.slider {
      background-color: #999;
      cursor: not-allowed;
  }

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