    body {
        margin: 0;
        padding: 20px;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        text-align: center;
    }
    /*Cím*/
    
    .fejlec {
        position: relative;
        color: rgb(0, 0, 0);
        margin-top: 0;
        text-align: center;
        font-size: 50px;
        min-width: 200px;
    }
    
    .fejlec h1 {
        margin: 0;
        font-size: 50px;
        padding: 0;
    }
    /* Visszaszámláló */
    
    #valasztasCountdown {
        font-size: 20px;
        font-weight: bold;
        color: rgb(0, 0, 0);
        margin-top: 10px;
    }
    /* Keresőmező */
    
    #searchInput {
        display: block;
        margin: 40px auto 30px auto;
        padding: 8px;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 6px;
        width: 260px;
        font-size: 1rem;
        font-family: Arial, sans-serif;
    }
    /* Container */
    
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 80px;
        gap: 20px;
    }
    /* Azért felelős hogy ne csak a szövegre kattintva legyen kattintható */
    
    .click {
        width: 113%;
        padding: 55px 0px 55px;
    }
    /* Szöveges kártyák design */
    
    .traitor-card {
        border: 3px solid rgb(0, 0, 0);
        background: #f2f2f2;
        padding: 30px;
        width: 250px;
        height: 100px;
        position: relative;
        font-size: 20px;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    /* Footer */
    
    .footer {
        color: #333;
        margin-top: 20px;
        text-align: center;
        border-top: 1px solid #ccc;
        font-family: Arial, sans-serif;
    }
    
    .footer a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
        cursor: pointer;
    }
    /* Dark mód általános */
    
    body.dark-mode {
        background-color: #111;
        color: #eee;
    }
    /* Dark mód gombok */
    
    body.dark-mode .button-left-1 .btn-dropdown,
    /* Dark mód fejléchez */
    
    body.dark-mode .fejlec {
        color: white;
    }
    /* Dark mód visszaszámláló */
    
    body.dark-mode #valasztasCountdown {
        color: white;
    }
    /* Dark mód keresőmező */
    
    body.dark-mode #searchInput {
        background-color: #222;
        border-color: #555;
        color: white;
    }
    /* Dark mód container */
    
    body.dark-mode .container {
        color: #eee;
    }
    /* Dark mód szöveges kártyák */
    
    body.dark-mode .traitor-card {
        background: #2a2a2a;
        border: 3px solid #555;
        color: white;
    }
    /* Dark mód footer */
    
    body.dark-mode .footer {
        color: #ccc;
        border-top-color: #555;
    }
    /* Modal */
    
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        overflow-y: auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }
    /* Ez felelős a flexboxokért */
    
    .modal-content {
        background-color: #fff;
        margin: auto;
        padding: 25px 30px;
        border-radius: 15px;
        max-width: 500px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border: 3px solid rgb(0, 0, 0);
        position: relative;
        animation: fadeInScale 0.3s ease forwards;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-align: left;
    }
    /* Ez felelős a flexbox animációért megnyitáskor */
    
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.85);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    /* A linkek "X" gombjáért felelős */
    
    .close-btn {
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #333;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    
    .modal-content h2 {
        margin-top: 0;
        margin-bottom: 20px;
        color: rgb(0, 0, 0);
        font-weight: 700;
        font-size: 1.8rem;
        text-align: center;
    }
    
    .modal-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .modal-content ul li {
        margin: 12px 0;
        font-size: 1.1rem;
        text-align: center;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .modal-content ul li a {
        color: black;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
        display: inline-block;
        border: 1px solid transparent;
    }
    
    .modal-content ul li a:hover {
        background-color: white;
        color: black;
        border-color: black;
        text-decoration: none;
    }
    
    .modal-content ul li span {
        font-size: 1.1rem;
        color: black;
        text-decoration: underline;
    }
    
    body.dark-mode .modal-content {
        background-color: #2a2a2a;
        border: 3px solid #555;
        color: #eee;
    }
    
    body.dark-mode .modal-content h2 {
        color: #fff;
    }
    
    body.dark-mode .modal-content ul li a {
        color: #ffffff;
    }
    
    body.dark-mode .modal-content ul li a:hover {
        background-color: #2a2a2a;
        color: rgb(255, 255, 255);
        border-color: #555;
    }
    
    body.dark-mode .close-btn {
        color: #eee;
    }
    
    .blurred #searchInput,
    .blurred .container,
    .blurred h1 {
        filter: blur(4px);
        pointer-events: none;
    }
    /* Hamburger menü*/
    
    #hamburger {
        width: 30px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1010;
    }
    
    .bar {
        display: block;
        height: 4px;
        background: black;
        border-radius: 2px;
        transition: 0.3s;
        width: 100%;
    }
    
    #slideMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background: #222;
        /* Alapértelmezett sötét háttér */
        color: white;
        padding: 60px 20px 20px;
        z-index: 1005;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    #slideMenu h2 {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #444;
        font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
        font-size: 30px;
    }
    
    #slideMenu a {
        font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
        font-size: 22px;
        display: block;
        color: #ddd;
        padding: 10px 0;
        text-decoration: none;
        transition: color 0.2s;
        position: relative;
        margin-bottom: 12px;
    }
    
    #slideMenu a:hover {
        color: white;
    }
    /* Elválasztó vonal minden link után */
    
    #slideMenu a:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #444;
    }
    
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: none;
        z-index: 1000;
    }
    /* ==================== */
    /* VILÁGOS MÓD STÍLUSAI */
    /* ==================== */
    /* Alapértelmezett (világos) mód hamburger ikon */
    
    body:not(.dark-mode) #hamburger .bar {
        background: black;
    }
    /* Világos mód menü */
    
    body:not(.dark-mode) #slideMenu {
        background: #ffffff;
        /* Világos háttér */
        color: #333;
        /* Sötét szöveg */
    }
    
    body:not(.dark-mode) #slideMenu h2 {
        color: #333;
        border-bottom: 1px solid #ddd;
    }
    
    body:not(.dark-mode) #slideMenu a {
        color: #555;
        /* Sötétebb szürke szöveg */
    }
    
    body:not(.dark-mode) #slideMenu a:hover {
        color: #000;
        /* Fekete szöveg hover állapotban */
    }
    
    body:not(.dark-mode) #slideMenu a:not(:last-child)::after {
        background: #ddd;
        /* Világos elválasztó vonal */
    }
    /* ==================== */
    /* SÖTÉT MÓD STÍLUSAI */
    /* ==================== */
    /* Sötét mód hamburger ikon */
    
    body.dark-mode #hamburger .bar {
        background: white;
    }
    /* Sötét mód menü */
    
    body.dark-mode #slideMenu {
        background: #1a1a1a;
        /* Sötét háttér */
        color: #eee;
        /* Világos szöveg */
    }
    
    body.dark-mode #slideMenu h2 {
        color: #fff;
        border-bottom: 1px solid #444;
    }
    
    body.dark-mode #slideMenu a {
        color: #ccc;
        /* Világos szürke szöveg */
    }
    
    body.dark-mode #slideMenu a:hover {
        color: white;
        /* Fehér szöveg hover állapotban */
    }
    
    body.dark-mode #slideMenu a:not(:last-child)::after {
        background: #444;
        /* Sötét elválasztó vonal */
    }
    /* Overlay mindkét módban */
    
    body.dark-mode #overlay,
    body:not(.dark-mode) #overlay {
        background: rgba(0, 0, 0, 0.4);
    }
    /* Háttérvilágítás és támogatás fülek */
    
    #themeMenuItem {
        margin-top: 75px;
        /*200*/
    }
    /* Csillag gomb stílusa */
    
    .favorite-star {
        position: absolute;
        top: 5px;
        right: 10px;
        background: none;
        border: none;
        font-size: 1.1em;
        cursor: pointer;
        z-index: 10;
        padding: 3px;
        color: transparent;
        /* belső üres */
        -webkit-text-stroke: 0.01px yellow
        /* csak a körvonal látszik */
    }