/* ====================================
   GOOD LITTLE GAMES - COLOR SCHEME
   ==================================== */

   :root {
    --color-primary: #F5A623;        /* Основной оранжевый */
    --color-primary-light: #FFA500;  /* Светлый оранжевый */
    --color-secondary: #7BC831;      /* Зелёный */
    --color-secondary-dark: #6ab01f; /* Тёмный зелёный */
    --color-accent: #FFC857;         /* Жёлтый акцент */
    --color-dark: #0B1020;           /* Тёмный */
    --color-white: #ffffff;          /* Белый */
    --color-light-gray: #f4f4f4;     /* Светло-серый */
    --color-border: #e5e7eb;         /* Граница */
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
  }
  
  /* ====================================
     TYPOGRAPHY
     ==================================== */
  
  h1, h2, h3, h4, h5, h6 {
    margin: 15px 0;
    font-weight: 800;
  }
  
  h1 {
    font-size: 35px;
    line-height: 45px;
  }
  
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  
  h3 {
    font-size: 25px;
    line-height: 35px;
  }
  
  h4 {
    font-size: 22px;
    line-height: 32px;
  }
  
  h5 {
    font-size: 20px;
    line-height: 30px;
  }
  
  h6 {
    font-size: 18px;
    line-height: 28px;
  }
  
  a:link {
    color: #7BC831;
  }
  
  /* ====================================
     CONTAINER & LAYOUT
     ==================================== */
  
  .container {
    width: 100%;
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
  }
  
  .content-part-fljs {
    font-size: 16px;
    line-height: 26px;
  }
  
  .aligncenter {
    display: block;
    margin: auto;
  }
  
  /* ====================================
     HEADER & NAVIGATION
     ==================================== */
  
  header.header-section {
    padding: 15px 0;
    position: relative;
    background: linear-gradient(135deg, #F5A623 0%, #FFA500 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .logo-menu-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .site-logo {
    width: auto;
    margin-right: 35px;
    display: flex;
    align-items: center;
  }
  
  .site-logo img {
    width: 100%;
    height: 100%;
  }
  
  /* Logo Text Style */
  .custom-logo-link.logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    text-decoration: none;
    color: #fff;
  }
  
  .logo-good {
    color: #7BC831;
    font-size: 24px;
  }
  
  .logo-little {
    color: #FFC857;
    font-size: 20px;
  }
  
  .logo-games {
    color: #ffffff;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #FFC857;
    padding-bottom: 2px;
  }
  
  .custom-logo-link.logo-text:hover {
    text-decoration: none;
    opacity: 0.9;
  }
  
  /* Menu */
  ul.wp-menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 200px);
    justify-content: flex-end;
    gap: 10px;
  }
  
  ul.wp-menu li {
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.5s ease;
  }
  
  ul.wp-menu li a {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    text-decoration: none;
  }
  
  ul.wp-menu li:hover {
    background: #7BC831;
    cursor: pointer;
    transition: all 0.5s;
  }
  
  ul.wp-menu li:hover a {
    color: #fff !important;
    transition: all 0.5s;
  }
  
  ul.wp-menu li.active {
    background: #7BC831 !important;
    border-radius: 50px;
  }
  
  ul.wp-menu li.active a {
    color: #fff;
  }
  
  /* Submenu */
  ul.sub-menu {
    list-style: none;
    padding-left: 0;
    background: #fff;
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    z-index: 9999;
    width: 200px;
    box-shadow: 0 0 5px #919191;
  }
  
  ul.wp-menu ul.sub-menu li {
    padding: 0;
  }
  
  ul.wp-menu ul.sub-menu li a {
    width: 100%;
    display: block;
    padding: 8px;
    color: #000 !important;
  }
  
  ul.wp-menu ul.sub-menu li:hover a {
    color: #fff !important;
    background: #7BC831;
  }
  
  li.menu-item-has-children {
    position: relative;
    padding-right: 20px !important;
  }
  
  li.menu-item-has-children:after {
    position: absolute;
    content: "\f107";
    font: normal normal normal 14px / 1 FontAwesome;
    top: 16px;
    right: 7px;
    color: #000;
  }
  
  li.menu-item-has-children:hover:after {
    color: #fff;
    transition: all 0.5s;
  }
  
  li.menu-item-has-children:hover ul.sub-menu {
    display: block;
  }
  
  li.menu-item-has-children.active:after {
    color: #000;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    position: relative;
    width: 32px;
    height: 24px;
    margin-left: auto;
    cursor: pointer;
  }
  
  .mobile-menu::before,
  .mobile-menu::after,
  .mobile-menu i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    content: "";
  }
  
  .mobile-menu::before {
    top: 0;
  }
  
  .mobile-menu i {
    display: block;
    color: transparent;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .mobile-menu::after {
    bottom: 0;
  }
  
  /* ====================================
     TABLES & CONTENT
     ==================================== */
  
  .content-part-fljs table {
    margin: 25px 0;
    border-collapse: collapse;
    width: 100%;
  }
  
  .content-part-fljs table tr td,
  .content-part-fljs table tr th {
    border: 1px solid #000;
    padding: 10px;
    font-size: 16px;
  }
  
  .content-part-fljs table tr th {
    font-weight: 700;
    text-align: center;
    background: #F5A623;
    color: #fff;
  }
  
  .table-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Blockquote */
  .content-part-fljs blockquote {
    padding: 25px;
    background: #fff;
    border-left: 5px solid #7BC831;
    position: relative;
    margin: 20px auto;
    font-style: italic;
    quotes: """ """ "'" "'";
  }
  
  .content-part-fljs blockquote::before {
    content: open-quote;
    top: 0px;
    left: 20px;
  }
  
  .content-part-fljs blockquote::before,
  .content-part-fljs blockquote::after {
    position: absolute;
    font-size: 3em;
    color: #7BC831;
    font-family: serif;
    line-height: 1;
    z-index: 1;
  }
  
  .content-part-fljs blockquote::after {
    content: close-quote;
    bottom: 0px;
    right: 20px;
  }
  
  .content-part-fljs blockquote p {
    display: inline;
    color: #000;
    position: relative;
    z-index: 2;
  }
  
  /* Lists */
  .content-part-fljs ul {
    list-style: disc;
    padding-left: 30px;
  }
  
  .content-part-fljs ol {
    list-style: decimal;
    padding-left: 30px;
  }
  
  /* Definition List */
  .content-part-fljs dl {
    margin: 20px;
    padding: 0;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  .content-part-fljs dt {
    font-weight: bold;
    margin: 10px 0 5px;
    padding: 10px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
  }
  
  .content-part-fljs dd {
    margin: 0 0 10px 20px;
    padding: 10px;
    border-left: 2px solid #ddd;
    background-color: #fff;
  }
  
  /* ====================================
     FOOTER
     ==================================== */
  
  footer.footer-section {
    background: linear-gradient(135deg, #F5A623 0%, #FFA500 100%);
    padding: 25px 0;
    margin-top: 30px;
  }
  
  .copyright p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
  }
  
  .copyright p a {
    color: #fff;
    text-decoration: none;
  }
  
  ul#menu-footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-left: 0;
    padding-bottom: 15px;
  }
  
  ul#menu-footer-menu li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
  }
  
  ul#menu-footer-menu li a:hover {
    text-decoration: underline;
  }
  
  /* ====================================
     BUTTONS & LINKS
     ==================================== */
  
  body .su-button-center a,
  body .su-button-center span {
    background: #7BC831 !important;
    border-color: #7BC831 !important;
  }
  
  .button {
    border-radius: 4px;
    background-color: #7BC831;
    color: #ffffff;
    padding: 12.5px 50px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
  }
  
  .button:hover {
    background-color: #6ab01f;
  }
  
  input#searchsubmit {
    color: #fff !important;
    background: #7BC831 !important;
    border: none;
    max-width: 130px;
    border-radius: 0 4px 4px 0px !important;
    padding: 10px !important;
    font-size: 16px !important;
    cursor: pointer;
  }
  
  /* ====================================
     SEARCH BAR (404)
     ==================================== */
  
  .search-bar-404 form input,
  form#searchform input {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    font-size: 16px;
    line-height: 26px;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px 0px 0px 4px;
    outline: none;
    height: auto;
  }
  
  .search-bar-404 form input::placeholder {
    color: #000;
  }
  
  .search-bar-404 form,
  form#searchform div {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .search-bar-404 strong {
    padding-bottom: 10px;
    display: block;
    font-size: 16px;
    line-height: 26px;
  }
  
  /* ====================================
     PAGINATION
     ==================================== */
  
  nav.navigation.pagination {
    display: inline-block;
    padding: 6px;
    margin: 20px 0;
  }
  
  .pagination {
    text-align: center;
  }
  
  .pagination .nav-links a,
  .pagination span.current {
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 5px 10px;
    margin: -3px;
  }
  
  .pagination .nav-links a:hover {
    background: #7BC831;
    color: #fff;
    border-color: #7BC831;
  }
  
  /* ====================================
     CAMPAIGN LIST ITEMS
     ==================================== */
  
  .campaign-list-item {
    background: #fff;
    display: grid;
    grid-template-columns: 150px minmax(280px, 1fr) 110px 130px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  }
  
  .campaign-list-item_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 10px;
    border-radius: 10px;
    background: #0b1020;
  }
  
  .campaign-list-item_logo img {
    display: block;
    width: 130px;
    max-width: 100%;
    height: auto;
  }
  
  .campaign-list-item_key-features {
    color: #1f2937;
  }
  
  .campaign-list-item_key-features.mobile {
    display: none;
  }
  
  .campaign-list-item_key-features p {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
  }
  
  .campaign-list-item_key-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .campaign-list-item_key-features li {
    position: relative;
    margin: 4px 0;
    padding-left: 18px;
  }
  
  .campaign-list-item_key-features li:before {
    position: absolute;
    left: 0;
    color: #7BC831;
    content: "✓";
  }
  
  .campaign-list-item_scores {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-weight: 700;
  }
  
  .campaign_list_item__score_text {
    font-size: 18px;
    color: #111827;
  }
  
  .star_rating_img {
    width: 99px;
    height: auto;
  }
  
  .campaign-list-item_cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #7BC831;
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  
  .campaign-list-item_cta-btn:hover {
    background: #6ab01f;
    color: #fff;
  }
  
  .campaign-list-item_coupon,
  .campaign-list-item_more-btns {
    display: none;
  }
  
  .campaign-compact-table__offers-wrapper .campaign-compact-table__offer td {
    border: 0;
  }
  
  body .campaign-list-item_key-features ul,
  td.campaign-compact-table__offer-key-features ul,
  .toplist-poker__filter,
  .toplist-poker-v2__offer-key-features ul,
  .toplist-poker-compact__offer-key-features ul,
  .toplist-flagship-crypto__offer-key-features ul,
  .toplist-cardplayer__offer-inner .toplist-cardplayer__offer-key-features,
  .dw-toplist-sp__offer-main .dw-toplist-sp__offer-key-features,
  .dw-toplist-ct__offer-features .dw-toplist-ct__offer-key-features,
  .toplist-99bitcoins__offer .toplist-99bitcoins__offer-key-features,
  .toplist-99bitcoins-poker__offer .toplist-99bitcoins-poker__offer-key-features {
    padding-left: 0;
  }
  
  .campaign-list-item .campaign-list-item_cta-btn,
  .campaign-fullwidth-shortcode_item_face-wrapper .slider-item_cta-button,
  .toplist-poker-v2__offer-buttons .toplist-poker-v2__offer-cta-btn,
  .toplist-poker-compact__offer-extra .toplist-poker-compact__offer-cta-btn,
  .toplist-flagship-crypto__offer-sidebar .toplist-flagship-crypto__offer-visit-link,
  .toplist-outlook-india__offer .toplist-outlook-india__offer-cta-btn,
  .toplist-poka__offer-cta-w-payments .toplist-poka__offer-cta-btn,
  .toplist-cardplayer__offer-actions .toplist-cardplayer__offer-cta-btn,
  .toplist-rivertimes__offer a.toplist-rivertimes__offer-cta-btn {
    color: #fff;
    text-decoration: none;
  }
  
  .campaign-list-item .campaign-list-item_key-features ul li,
  .campaign-compact-table__offer .campaign-compact-table__offer-key-features li,
  .toplist-poker-v2__offer-body .toplist-poker-v2__offer-key-features li,
  .toplist-poker-compact__offer-body .toplist-poker-compact__offer-key-features li,
  .toplist-flagship-crypto__offer-main .toplist-flagship-crypto__offer-key-features ul li,
  tr.campaign-compact-table__offer .campaign-compact-table__offer-key-features li,
  .dw-toplist-sp__offer-main .dw-toplist-sp__offer-key-features li,
  .dw-toplist-ct__offer-features .dw-toplist-ct__offer-key-features li,
  .toplist-99bitcoins__offer .toplist-99bitcoins__offer-key-features li,
  .toplist-99bitcoins-poker__offer .toplist-99bitcoins-poker__offer-key-features li {
    list-style: none;
  }
  
  /* ====================================
     404 PAGE
     ==================================== */
  
  section.page-section-404 {
    padding: 45px 0;
    width: 100%;
    max-width: 920px;
    margin: auto;
  }
  
  section.page-section-404 h1 {
    font-size: 35px;
    line-height: 45px;
  }
  
  .search-bar-404 {
    padding: 12px 0;
  }
  
  .search-bar-404 button {
    width: 100% !important;
    color: #fff !important;
    background: #7BC831 !important;
    border: none;
    max-width: 130px;
    border-radius: 0 4px 4px 0px !important;
    padding: 10px !important;
    font-size: 16px !important;
    cursor: pointer;
  }
  
  .links-group-404 ul {
    padding-left: 20px;
    line-height: 26px;
  }
  
  .links-group-404 ul li a,
  .need-more-help-404 a,
  .links-group-404 a {
    color: #000;
    text-decoration: none;
  }
  
  .links-group-404 ul li a:hover,
  .need-more-help-404 a:hover,
  .links-group-404 a:hover {
    color: #7BC831;
  }
  
  .links-group-404 {
    font-size: 16px;
    line-height: 26px;
  }
  
  .description-404 {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 0;
  }
  
  /* ====================================
     AUTHOR PAGE
     ==================================== */
  
  .modifyDetails {
    background: #F5A623b0;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .custom_top_author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .author_imag img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
  }
  
  .name_author_out span.lbl {
    margin-right: 5px;
    font-weight: 700;
    color: #000;
  }
  
  .name_author_out h4,
  .name_author_out p {
    margin: 0;
    padding: 0;
    font-weight: normal;
  }
  
  .custom_author_info {
    color: #000;
  }
  
  .name_author_out a {
    color: inherit;
    text-decoration: underline;
  }
  
  .name_author_out a p {
    font-size: 16px;
  }
  
  .profile-tab-content {
    padding: 30px 0;
  }
  
  .profile-header-container {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .profile-header-container .header-name-container h2 {
    margin: 0;
    font-weight: 700;
  }
  
  .profile-fields-group.profile-fields-group-1 {
    border: 1px solid #abb8c3;
    margin: 1.5rem 0 0;
    padding: 15px 20px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background: #fff;
    border-radius: 8px;
  }
  
  .profile-fields-group.profile-fields-group-1 h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 700;
  }
  
  .author-f-name {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .author-description-name {
    margin-top: 20px;
    font-size: 20px;
    word-break: break-word;
  }
  
  .author-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .author-page .author-box-wrapper {
    flex: 1;
  }
  
  .main-title {
    text-align: left;
  }
  
  .custom_top_author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
  }
  
  .author_imag {
    line-height: 0;
  }
  
  /* ====================================
     RESPONSIVE DESIGN
     ==================================== */
  
  @media (max-width: 900px) {
    .campaign-list-item {
      grid-template-columns: 120px 1fr;
    }
  
    .campaign-list-item_scores,
    .campaign-list-item_cta-btn {
      grid-column: 2;
      justify-self: start;
    }
  }
  
  @media (max-width: 591px) {
    .content-part-fljs table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
  
  @media (max-width: 560px) {
    .campaign-list-item {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .campaign-list-item_logo,
    .campaign-list-item_scores,
    .campaign-list-item_cta-btn {
      grid-column: auto;
      justify-self: center;
    }
  
    .campaign-list-item_cta-btn {
      width: 100%;
      justify-self: stretch;
    }
  
    .campaign-list-item_key-features {
      display: none;
    }
  
    .campaign-list-item_key-features.mobile {
      display: block;
    }
  
    h1 {
      font-size: 24px;
      line-height: 35px;
      text-align: center;
    }
  
    ul.wp-menu li:hover {
      background: transparent;
    }
  
    .mobile-menu {
      display: block;
    }
  
    ul.wp-menu {
      position: absolute;
      width: 100%;
      left: 0;
      background: #F5A623;
      top: 98%;
      display: none;
      z-index: 999;
      margin: 0;
      padding: 10px 15px;
    }
  
    ul.wp-menu.is-open {
      display: block;
    }
  
    ul.wp-menu li {
      padding: 0;
      width: fit-content;
      margin-bottom: 8px;
    }
  
    li.menu-item-has-children:hover ul.sub-menu {
      display: none;
    }
  
    li.menu-item-has-children:after {
      display: none;
    }
  
    ul.wp-menu li a {
      width: 100%;
      display: block;
      padding: 12px 15px;
      color: #fff;
    }
  
    span.toggle-menu {
      position: absolute;
      margin-top: 0;
      right: 12px;
      z-index: 9999;
      top: 11px;
    }
  
    li.menu-item-has-children:hover span.toggle-menu {
      color: #fff;
    }
  
    ul.sub-menu {
      position: relative;
      width: 100%;
    }
  
    li.menu-item-has-children.active span.toggle-menu {
      color: #000;
    }
  
    li.menu-item-has-children {
      padding-right: 0px !important;
    }
  }
  
  @media screen and (max-width: 991px) {
    *:not(.simulator) {
      scrollbar-width: none !important;
    }
  
    h1 {
      font-size: 24px;
      line-height: 35px;
      text-align: center;
    }
  
    ul.wp-menu li:hover {
      background: transparent;
    }
  }
  
  /* ====================================
     WORDPRESS DEFAULTS
     ==================================== */
  
  *:not(.simulator) {
    scrollbar-width: thin;
  }
  
  img.wp-smiley,
  img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
  }
  
  .wp-block-image > a,
  .wp-block-image > figure > a {
    display: inline-block;
  }
  
  .wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
  }
  
  figure {
    margin: 0 0 1em;
  }
  
  .screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }
  
  .screen-reader-text:focus {
    background-color: #ddd;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
  }
  
  /* ====================================
     ADDITIONAL UTILITIES
     ==================================== */
  
  body .su-button-center a,
  body .su-button-center span {
    background: #7BC831 !important;
    border-color: #7BC831 !important;
    color: #fff !important;
  }
  
  .campaign-shortcode-table {
    margin: 24px 0;
  }
  
  .campaign-shortcode-table_offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .toplist-tech__offer-inner .toplist-tech__offer-cta-btn {
    color: #7BC831;
  }