          /* index.html CSS */
          :root {
              --bg-start: #010306;
              --bg-end: #131313;
              --card-bg: rgba(86, 23, 0, 0.458);
              --muted: #B0BEC5;
              --accent: #E0F7FA;
              --primary: orangered;
              --primary-dark: #00BCD4;
              --green: #4CAF50;
              --maxw: 1200px;
              --header-h: 72px;
              font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
          }

          @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

          * {
              box-sizing: border-box;
          }

.mobile-menu {
    position: fixed;
    top: 60px; /* A header magassága alatt */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.907);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-menu nav a {
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.mobile-menu nav a:hover {
    background: rgba(255, 0, 0, 0.1);
}
          
          body {
              margin: 0;
              background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
              color: var(--accent);
              line-height: 1.6;
              min-height: 100%;
              position: relative;
          }

          a {
              color: inherit;
              text-decoration: none
          }

          header {
              position: fixed;
              top: 0;
              left: 0;
              right: 0;
              height: var(--header-h);
              background: rgb(0, 0, 0);
              -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
              color: #fff;
              display: flex;
              align-items: center;
              justify-content: space-between;
              padding: 0 24px;
              z-index: 9999;
              box-shadow: 0 4px 16px rgba(0, 68, 136, 0.3)
          }

          .wrap {
              width: 94%;
              max-width: var(--maxw);
              margin: 0 auto;
              padding-top: calc(var(--header-h) + 30px);
              padding-bottom: 30px
          }

          .brand {
              font-weight: 800;
              font-size: 24px;
              color: orangered;
          }

          nav {
              display: flex;
              gap: 20px
          }

          nav a {
              color: var(--accent);
              font-weight: 600;
              padding: 10px 12px;
              border-radius: 8px;
              transition: background 0.2s
          }

          nav a:hover {
              background: rgba(0, 255, 255, 0.1)
          }

          .menu-icon {
              display: none;
              font-size: 30px;
              cursor: pointer;
              line-height: 1;
          }

          .hero {
              margin: 24px 0;
              border-radius: 16px;
              overflow: hidden;
              background: rgba(255, 255, 255, 0.05);
              border: 1px solid rgba(0, 255, 255, 0.1);
              height: auto;
              display: flex;
              align-items: center;
              justify-content: center;
              color: var(--muted);
              min-height: 180px
          }

          .hero img {
              max-width: 100%;
              height: auto;
              display: block
          }

          .card {
              background: #0B0E17;
              border-radius: 16px;
              box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
              transition: transform 0.3s, box-shadow 0.3s;
              border: 1px solid rgba(0, 255, 255, 0.08);
              cursor: pointer;
          }

          .card:hover {
              transform: translateY(-8px);
              box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
              border-color: var(--primary-dark)
          }

          .section-head {
              font-size: 26px;
              font-weight: 800;
              margin: 30px 0 18px 0;
              color: var(--primary)
          }

          .news-row-wide {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 24px;
              margin-bottom: 24px
          }

          .big-news,
          .small-news {
              position: relative;
              width: 100%;
          }

          .big-news {
              display: flex;
              flex-direction: column;
              justify-content: flex-end;
              padding: 24px;
              border-radius: 16px;
              overflow: hidden;
              aspect-ratio: 16/9;
              background-size: cover;
              background-position: center;
              min-height: 250px;
              border: none;
              color: #fff;
          }

          .big-news::before {
              content: '';
              position: absolute;
              top: 0;
              right: 0;
              bottom: 0;
              left: 0;
              background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%)
          }

          .big-news .title {
              font-size: 22px;
              font-weight: 700;
              color: var(--primary);
              position: relative;
              z-index: 2
          }

          .big-news .desc {
              color: #CFD8DC;
              margin-top: 10px;
              font-size: 15px;
              position: relative;
              z-index: 2
          }

          .news-row-3 {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 24px;
              margin-bottom: 30px
          }

          .small-news {
              padding: 20px;
              border-radius: 16px;
              aspect-ratio: 4/3;
              display: flex;
              flex-direction: column;
              justify-content: flex-end;
              background: rgba(255, 255, 255, 0.05)
          }

          .small-news .title {
              font-weight: 700;
              font-size: 18px;
              margin-bottom: 6px;
              color: orangered;
          }

          .small-news .desc {
              color: var(--muted);
              font-size: 14px
          }

          .promo-grid {
              display: grid;
              grid-template-columns: 2fr 1fr;
              gap: 24px;
              margin: 35px 0
          }

          .promo-large {
              background: linear-gradient(135deg, #1A444E, #1E3A4B);
              border: 2px solid var(--primary);
              padding: 40px;
              border-radius: 28px;
              display: flex;
              flex-direction: column;
              justify-content: center;
              min-height: 350px
          }

          .promo-large .promo-title {
              color: var(--primary);
              font-weight: 800;
              font-size: 32px;
              margin: 0 0 15px 0
          }

          .promo-large .promo-desc {
              color: var(--muted);
              font-size: 16px;
              margin-bottom: 20px
          }

          .promo-large .promo-btn {
              background: var(--primary);
              color: var(--bg-start);
              padding: 14px 24px;
              border-radius: 12px;
              font-weight: 700;
              align-self: flex-start;
              transition: background 0.2s, color 0.2s
          }

          .promo-large .promo-btn:hover {
              background: var(--primary-dark);
              color: #fff
          }

          .promo-small {
              background: rgba(255, 255, 255, 0.05);
              padding: 24px;
              border-radius: 16px;
              border: 1px solid rgba(255, 255, 255, 0.1);
              display: flex;
              flex-direction: column;
              justify-content: center;
              gap: 12px;
              min-height: 180px
          }

          .promo-small .title {
              font-weight: 700;
              font-size: 20px;
              color: var(--accent)
          }

          .promo-small .desc {
              color: var(--muted);
              font-size: 15px
          }

          .promo-small .btn {
              padding: 10px 16px;
              border-radius: 10px;
              background: var(--primary-dark);
              color: var(--bg-start);
              font-weight: 700;
              align-self: flex-start;
              transition: background 0.2s
          }

          .promo-small .btn:hover {
              background: var(--primary)
          }

          .bookies {
              display: flex;
              flex-direction: column;
              gap: 16px;
              margin-bottom: 30px
          }

          .bookie {
              display: flex;
              align-items: center;
              gap: 20px;
              padding: 16px 20px;
              border-radius: 12px;
              background: rgba(40, 11, 0, 0.503);
              border: 1px solid rgba(255, 255, 255, 0.05)
          }

          .bookie-logo {
              width: 72px;
              height: 72px;
              border-radius: 10px;
              background: var(--primary-dark);
              color: var(--bg-start);
              display: flex;
              align-items: center;
              justify-content: center;
              font-weight: 700;
              font-size: 20px;
              flex-shrink: 0
          }

          .bookie-meta {
              flex: 1
          }

          .bookie-title {
              font-weight: 700;
              font-size: 18px;
              margin-bottom: 4px;
              color: var(--accent)
          }

          .bookie-stars {
              color: #FFD700;
              margin-bottom: 6px;
              font-size: 18px
          }

          .bookie-desc {
              color: var(--muted);
              font-size: 14px
          }

          .bookie-action a {
              padding: 10px 18px;
              background: var(--primary);
              color: var(--bg-start);
              border-radius: 10px;
              font-weight: 700;
              transition: background 0.2s
          }

          .bookie-action a:hover {
              background: var(--primary-dark);
              color: #fff
          }

          .below-news {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 24px;
              margin: 20px 0 30px 0
          }

          .below-news .card {
              padding: 20px;
              min-height: 180px;
              border-radius: 16px;
              display: flex;
              flex-direction: column;
              justify-content: flex-end;
              background: rgba(255, 255, 255, 0.05)
          }

          .below-news .title {
              font-weight: 700;
              font-size: 18px;
              margin-bottom: 6px;
              color: var(--accent)
          }

          .below-news .desc {
              color: var(--muted);
              font-size: 14px
          }

          .advantages {
              display: grid;
              grid-template-columns: repeat(4, 1fr);
              gap: 16px;
              margin-top: 24px
          }

          .adv {
              background: rgba(255, 255, 255, 0.05);
              padding: 18px;
              border-radius: 12px;
              display: flex;
              gap: 16px;
              align-items: flex-start;
              border: 1px solid orangered;
              min-height: 120px;
              cursor: default;
          }

          .adv .icon {
              font-size: 28px;
              width: 40px;
              text-align: center;
              line-height: 1;
              flex-shrink: 0
          }

          .adv .meta .a-title {
              font-weight: 700;
              margin-bottom: 4px;
              color: var(--primary-dark)
          }

          .adv .meta .a-desc {
              color: var(--muted);
              font-size: 13px
          }

          footer {
              margin-top: 40px;
              background: var(--bg-end);
              color: #fff
          }

          .footer-wrap {
              max-width: var(--maxw);
              margin: 0 auto;
              padding: 50px 20px;
              text-align: center;
              color: #fff
          }

          .footer-grid {
              display: flex;
              justify-content: space-between;
              gap: 30px;
              flex-wrap: wrap;
              margin-bottom: 30px;
              text-align: left
          }

          .footer-block {
              flex: 1 1 200px
          }

          .footer-block h3 {
              margin-bottom: 15px;
              font-size: 20px;
              font-weight: 700;
              color: var(--primary)
          }

          .footer-block p,
          .footer-block ul {
              font-size: 14px;
              line-height: 1.8;
              color: #90A4AE
          }

          .footer-block ul {
              padding-left: 20px;
              list-style: disc inside
          }

          .footer-block a {
              color: #CFD8DC;
              text-decoration: none;
              transition: color 0.2s
          }

          .footer-block a:hover {
              color: var(--primary)
          }

          .footer-bottom {
              font-size: 13px;
              opacity: 0.7;
              text-align: center;
              margin-top: 20px;
              padding-top: 20px;
              border-top: 1px solid rgba(255, 255, 255, 0.1)
          }

          .modal {
              display: none;
              position: fixed;
              z-index: 10000;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              overflow: auto;
              background-color: rgba(0, 0, 0, 0.9);
              -webkit-backdrop-filter: blur(8px);
              backdrop-filter: blur(8px);
              padding-top: 50px;
          }

          .modal-content {
              background-color: var(--bg-start);
              margin: 5% auto;
              padding: 30px;
              border: 2px solid var(--primary-dark);
              width: 90%;
              max-width: 1000px;
              border-radius: 16px;
              box-shadow: 0 5px 25px rgba(0, 255, 255, 0.2);
              position: relative;
              color: var(--accent);
          }

          .modal-content h2 {
              color: var(--primary);
              font-size: 32px;
              margin-top: 0;
              border-bottom: 2px solid rgba(0, 255, 255, 0.3);
              padding-bottom: 10px;
          }

          .modal-content .date {
              color: var(--muted);
              font-size: 16px;
              display: block;
              margin-bottom: 20px;
          }

          .modal-content p {
              font-size: 18px;
              color: var(--accent);
              line-height: 1.8;
              text-align: justify;
          }

          .close {
              color: var(--muted);
              float: right;
              font-size: 40px;
              font-weight: bold;
              transition: color 0.2s;
              position: absolute;
              top: 10px;
              right: 25px;
          }

          .close:hover,
          .close:focus {
              color: var(--primary);
              text-decoration: none;
              cursor: pointer;
          }

          @media(max-width:1200px) {
              .wrap {
                  width: 96%
              }
          }

          @media(max-width:1000px) {

              .news-row-3,
              .below-news,
              .advantages {
                  grid-template-columns: 1fr 1fr
              }
          }

          @media(max-width:768px) {
              :root {
                  --header-h: 60px;
              }

              header {
                  padding: 0 16px
              }

              nav {
                  display: none
              }

              .wrap {
                  padding-left: 16px;
                  padding-right: 16px;
                  padding-top: calc(var(--header-h) + 20px);
              }

              .news-row-wide,
              .news-row-3,
              .below-news,
              .advantages {
                  grid-template-columns: 1fr
              }

              .promo-grid {
                  grid-template-columns: 1fr
              }

              .promo-large {
                  padding: 30px
              }

              .promo-large .promo-title {
                  font-size: 26px
              }

              .footer-grid {
                  flex-direction: column;
                  gap: 20px
              }

              .footer-block {
                  text-align: center;
                  flex: 0 0 0;
              }

              .footer-block ul {
                  text-align: left;
                  margin-left: auto;
                  margin-right: auto;
                  max-width: 300px
              }

              .modal-content {
                  width: 95%;
                  margin: 20px auto;
                  padding: 20px;
              }

              .modal-content h2 {
                  font-size: 24px;
              }

              .close {
                  top: 5px;
                  right: 15px;
                  font-size: 30px;
              }
          }




          /* fogadóirodák.html CSS */


          .layout {
              display: grid;
              /* 1. oszlop: Szűrők (260px) | 2. oszlop: Kártyák (maradék hely) */
              grid-template-columns: 260px 1fr;
              gap: 24px;
              align-items: start
          }

          /* PANELS AND FILTERS */
          .panel {
              background: #0B0E17;
              border-radius: 16px;
              border: 1px solid rgba(0, 255, 255, 0.1);
              padding: 20px;
              box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
          }

          .filters h3,
          .sort h3 {
              margin: 0 0 15px 0;
              font-size: 18px;
              color: rgb(0, 234, 255)
          }

          .filters label {
              display: flex;
              align-items: center;
              gap: 12px;
              margin-bottom: 10px;
              cursor: pointer;
              color: var(--accent);
          }

          .sort {
              display: flex;
              gap: 10px;
              align-items: center;
              padding: 12px 20px;
              border-radius: 16px;
          }

          .sort h3 {
              margin: 0;
              font-size: 16px;
              color: var(--muted);
          }

          .sort .sort-btn {
              padding: 8px 15px;
              border-radius: 10px;
              border: 1px solid rgba(0, 255, 255, 0.2);
              background: var(--card-bg);
              color: var(--accent);
              cursor: pointer;
              font-weight: 600;
              transition: background 0.2s, color 0.2s;
              white-space: nowrap;
          }

          .sort .sort-btn:hover {
              background: rgba(0, 255, 255, 0.15);
              color: var(--primary);
          }

          .sort .sort-btn.active {
              background: var(--primary-dark);
              color: var(--bg-start);
              border-color: var(--primary);
          }


          .grid-cards {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 20px;
          }

          .fogado-card {
              background: #0B0E17;
              border-radius: 16px;
              border: 1px solid rgba(0, 255, 255, 0.08);
              padding: 18px;
              margin-bottom: 20px;
              display: flex;
              flex-direction: column;
              gap: 12px;
              transition: transform .2s, box-shadow .2s;
              min-height: 250px;
              position: relative;
              /* Fontos, hogy az overlay pozicionálható legyen */
              overflow: hidden;
          }

          

          .pros-cons-overlay h4 {
              margin: 0 0 8px 0;
              font-size: 16px;
              color: var(--primary);
          }

          .pros-cons-overlay ul {
              list-style: none;
              padding: 0;
              margin: 0;
          }

          .pros-cons-overlay li {
              font-size: 14px;
              margin-bottom: 5px;
          }

          .pros-list {
              border-bottom: 1px dashed rgba(0, 255, 255, 0.2);
              padding-bottom: 15px;
          }

          /* A kártya tartalmának elrejtése, amikor az overlay látható (nem feltétlen szükséges, de ad egy szebb hatást) */
          

        

          .fogado-card:hover {
              transform: translateY(-8px);
              box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
              border-color: var(--primary-dark);
          }

          .fogado-card .top {
              display: flex;
              justify-content: space-between;
              align-items: flex-start;
              gap: 12px
          }

          .fogado-card .name {
              font-weight: 800;
              font-size: 18px;
              color: var(--primary)
          }

          .fogado-card .tag {
              font-size: 13px;
              color: var(--bg-start);
              padding: 6px 10px;
              border-radius: 8px;
              background: var(--primary-dark);
              font-weight: 700;
              flex-shrink: 0;
          }

          .fogado-card .info {
              color: var(--muted);
              font-size: 14px
          }

          @media(max-width:1000px) {
              .wrap {
                  width: 96%
              }

              .layout {
                  grid-template-columns: 1fr;
              }

              .filters {
                  order: -1;
                  /* Szűrő legyen a kártyák felett */
              }

              .sort {
                  flex-wrap: wrap;
                  justify-content: center;
              }

              .grid-cards {
                  grid-template-columns: repeat(2, 1fr)
              }
          }

          @media(max-width:768px) {
              :root {
                  --header-h: 60px;
              }

              header {
                  padding: 0 16px
              }

              nav {
                  display: none
              }

              .menu-icon {
                  display: block;
              }

              .wrap {
                  padding-left: 16px;
                  padding-right: 16px;
                  padding-top: calc(var(--header-h) + 20px);
              }

              .page-head h1 {
                  font-size: 30px
              }

              .grid-cards {
                  grid-template-columns: 1fr
              }

              .footer-grid {
                  flex-direction: column;
                  gap: 20px
              }

              .footer-block {
                  text-align: center;
              }

              .footer-block ul {
                  text-align: left;
                  margin-left: auto;
                  margin-right: auto;
                  max-width: 300px;
              }

              .article-section {
                  padding: 20px;
              }

              .sort {
                  padding: 10px;
              }

              .sort .sort-btn {
                  flex-grow: 1;
                  /* Gombok kitöltik a helyet */
                  text-align: center;
              }
          }

          /* ARTICLES */
          .article-section {
              margin-top: 40px;
              background: #0B0E17;
              padding: 30px;
              border-radius: 16px;
              border: 1px solid rgba(0, 255, 255, 0.1);
              line-height: 1.7;
              max-width: 900px;
              margin-left: auto;
              margin-right: auto;
              color: var(--accent);
              box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
          }

          .article-section h2 {
              text-align: center;
              margin-top: 0;
              font-size: 26px;
              color: var(--primary-dark);
              border-bottom: 1px solid rgba(0, 255, 255, 0.1);
              padding-bottom: 10px;
              margin-bottom: 20px;
          }

          .article-section p {
              color: var(--muted);
              margin-bottom: 1em;
              text-align: justify;
          }












          /* Tippek html CSS */
          .page-head {
              text-align: center;
              margin: 6px 0 24px 0
          }

          .page-head h1 {
              margin: 0;
              font-size: 36px;
              color: rgb(0, 234, 255)
          }

          .page-head p {
              margin: 6px 0 0 0;
              color: var(--muted);
              font-size: 18px;
          }

          .calc-layout {
              display: grid;
              grid-template-columns: 1fr;
              gap: 22px;
              max-width: 900px;
              margin: 0 auto 40px auto;
          }

          @media (min-width: 768px) {
              .calc-layout {
                  grid-template-columns: 1fr 1fr;
              }
          }

          /* CARD STYLES */
          .calc-layout {
              background: var(--card-bg);
              border-radius: 16px;
              border: 1px solid rgba(0, 255, 255, 0.08);
              padding: 24px;
              box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
              transition: transform .2s, box-shadow .2s;
          }

          .card:hover {
              transform: translateY(-4px);
              box-shadow: 0 14px 30px rgba(0, 0, 0, .4);
              border-color: var(--primary-dark);
          }

          .card h2 {
              text-align: center;
              margin-top: 0;
              font-size: 26px;
              color: var(--primary-dark);
          }

          .hero {
              margin: 20px 0;
              border-radius: 16px;
              overflow: hidden;
              background: var(--card-bg);
              border: 1px solid rgba(0, 255, 255, 0.1);
              height: auto;
              display: flex;
              align-items: center;
              justify-content: center;
              color: var(--muted)
          }

          /* --- Kalkulátor stílusok --- */
          .calculator-form label {
              display: block;
              margin-top: 15px;
              margin-bottom: 5px;
              font-weight: 600;
              color: var(--accent);
          }

          .input-row {
              display: flex;
              gap: 10px;
              align-items: center;
              margin-bottom: 8px;
          }

          /* INPUT FIELD STYLING for dark theme */
          .calculator-form input[type="number"] {
              width: 100%;
              padding: 10px;
              border: 1px solid rgba(0, 255, 255, 0.2);
              border-radius: 8px;
              font-size: 16px;
              background-color: rgba(0, 0, 0, 0.3);
              color: var(--primary);
              /* Jól látható szöveg */
              flex-grow: 1;
          }

          /* A kiinduló odds inputok stílusa */
          .odd-input {
              width: 100%;
          }

          .remove-btn {
              background-color: #d32f2f;
              /* Piros gomb sötét háttéren */
              color: white;
              border: none;
              border-radius: 50%;
              width: 30px;
              height: 30px;
              font-size: 16px;
              cursor: pointer;
              line-height: 1;
              padding: 0;
              transition: background-color 0.15s;
              flex-shrink: 0;
              font-weight: 700;
          }

          .remove-btn:hover {
              background-color: #f44336;
          }

          .add-btn {
              display: block;
              width: 100%;
              padding: 12px;
              margin-top: 15px;
              background-color: var(--primary-dark);
              color: var(--bg-start);
              border: none;
              border-radius: 8px;
              font-size: 18px;
              font-weight: 700;
              cursor: pointer;
              transition: background-color 0.2s, color 0.2s;
          }

          .add-btn:hover {
              background-color: var(--primary);
              color: var(--bg-start);
          }

          /* RESULT PANEL STYLING */
          .result {
              margin-top: 30px;
              padding: 20px;
              border-radius: 12px;
              background: rgba(0, 255, 255, 0.05);
              /* Enyhe kék háttér */
              border: 1px solid var(--primary-dark);
              box-shadow: 0 4px 10px rgba(0, 255, 255, 0.1);
          }

          .result h3 {
              margin-top: 0;
              border-bottom: 1px solid rgba(0, 255, 255, 0.2);
              padding-bottom: 8px;
              margin-bottom: 15px;
              color: var(--primary);
              font-size: 20px;
          }

          .result p {
              margin: 10px 0;
              font-size: 17px;
              font-weight: 500;
              display: flex;
              justify-content: space-between;
          }

          .result strong {
              font-weight: 700;
              color: var(--primary);
              font-size: 18px;
              text-align: right;
          }

          /* ARTICLE SECTION STYLES (How it works) */
          .card .how-it-works {
              color: var(--muted);
          }

          .card .how-it-works strong {
              color: var(--accent);
          }

          .card .how-it-works ol {
              padding-left: 20px;
              list-style-type: decimal;
          }

          .card .how-it-works li {
              margin-bottom: 8px;
          }

          .card .how-it-works b {
              color: var(--primary-dark);
          }








          /* kaszinok html CSS */


          .badges {
              display: flex;
              gap: 8px;
              flex-wrap: wrap
          }

          .badge {
              font-size: 12px;
              padding: 6px 10px;
              border-radius: 8px;
              background: rgba(255, 255, 255, 0.15);
              color: var(--accent);
              border: 1px solid rgba(0, 255, 255, 0.1);
          }




          /* Tudástár html CSS */

          /* TUDÁSTÁR GRID ÉS KÁRTYÁK STÍLUSA */
          .grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
              gap: 25px;
              padding: 20px 0;
          }

          .tudas-card {
              background: #0B0E17;
              border-radius: 12px;
              padding: 25px;
              box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
              transition: transform 0.3s, box-shadow 0.3s;
              cursor: pointer;
              display: flex;
              flex-direction: column;
              justify-content: space-between;
              border: 1px solid rgba(0, 255, 255, 0.2);
          }

          .tudas-card:hover {
              transform: translateY(-5px);
              box-shadow: 0 12px 24px rgba(0, 255, 255, 0.15);
          }

          .tudas-card h2 {
              margin-top: 0;
              color: var(--primary);
              font-size: 22px;
          }

          .tudas-card p {
              color: var(--muted);
              font-size: 15px;
              flex-grow: 1;
              margin-bottom: 20px;
          }

          .tudas-card button {
              background: var(--primary);
              color: var(--bg-start);
              border: none;
              padding: 12px 20px;
              border-radius: 8px;
              font-weight: 700;
              cursor: pointer;
              transition: background 0.2s, transform 0.1s;
              width: 100%;
          }

          .tudas-card button:hover {
              background: var(--primary-dark);
              transform: scale(1.02);
          }

          /* FULLPAGE CIKK MEGJELENÍTÉS STÍLUSOK */
          .fullpage {
              display: none;
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background: rgba(0, 0, 0, 0.95);
              z-index: 10000;
              overflow-y: auto;
              padding: 20px;
          }

          .full-wrap {
              max-width: 900px;
              margin: 50px auto 100px auto;
              background: var(--bg-end);
              padding: 30px 40px;
              border-radius: 15px;
              box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
          }

          .close-btn {
              position: fixed;
              top: 20px;
              right: 20px;
              font-size: 30px;
              color: var(--primary);
              cursor: pointer;
              transition: color 0.2s;
              z-index: 10001;
              padding: 10px;
          }

          .close-btn:hover {
              color: #fff;
          }


          /* alap: rejtett */
          .modal {
              display: none;
              position: fixed;
              inset: 0;
              background: rgba(0, 0, 0, 0.6);
              backdrop-filter: blur(4px);
              justify-content: center;
              align-items: center;
              z-index: 2000;
          }

          /* amikor nyitva van -> flex (középre igazítva) */
          .modal.show {
              display: flex;
          }

          #felelossegBtn {
              color: orangered;
              margin-top: 22px;
              cursor: pointer;
              text-decoration: underline;
              background: none;
              border: none;
              padding: 0;
              font: inherit;
              font-size: 20px;
              font-weight: 700;
              color: var(--primary);
              text-decoration: none;
          }