* {
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
    background-color: #121212;
}

html {
    scroll-behavior: smooth;
}

:root{
    color-scheme: dark;
}

::selection {
    background: rgba(53, 53, 53, 0.6);
}

::-moz-selection {
    background: rgba(53, 53, 53, 0.6);
}

#hiba {
    display: none !important;
    opacity: 0 !important;
}

.login-body {
    height: 100vh;
    width: 100%;
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login {
    animation: load 0.3s ease-in;
    width: 500px;
    height: 230px;
    max-width: 100%;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.login::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.login h1 {
    margin: 10px 0 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    cursor: default;
}

.login p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    text-align: center;
    cursor: default;
}

.login b {
    color: #c29b30;
    text-decoration: none;
}

.login a {
    position: relative;
    display: block;
    width: 180px;
    height: 50px;
    background-image: url('./IMG/steambtn.webp');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px auto 30px auto;
}

.header {
    position: fixed;
    top: 7px;
    left: 7px;
    right: 7px;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 40px;
    z-index: 100;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.header a {
    transition: all 0.15s linear;
    text-decoration: none;
    color: #d6d6d6;
    font-size: 23px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
}

.header a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.most {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.header a:first-child {
    position: absolute;
    left: 20px;
    top: 0;
    filter: brightness(0.8);
}

.header a:first-child:hover {
    filter: brightness(1);
}

.header a:first-child img {
    height: 50px;
}

.inaktiv {
    color: #d6d6d6 !important;
    cursor: default !important;
}

.inaktiv:hover {
    color: #d6d6d6 !important;
    text-shadow: none !important;
    transform: none !important;
    cursor: default !important;
}

.fiok {
    position: absolute;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #efefef;
    font-weight: 400;
    font-size: 20px;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fiok img {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.fiok a {
    position: relative !important;
    width: 125px !important;
    height: 40px !important;
    background-image: url('./IMG/steambtn.webp') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    border-radius: 10px !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
    transform: translateX(-20px);
}

.main-body {
    padding-top: 70px;
    min-height: calc(100vh - 70px);
}

.event {
    animation: load 0.3s ease-in;
    width: 1122px;
    margin: 10px auto 0 auto;
    height: 90px;
    max-width: calc(80% + 50px);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.slide-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-slide {
    display: block;
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.event-content {
    cursor: pointer;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px) saturate(110%);
    -webkit-backdrop-filter: blur(2px) saturate(110%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    transition: all ease-in-out 0.2s;
}

.event-content:hover {
    backdrop-filter: blur(1px) saturate(130%);
    -webkit-backdrop-filter: blur(1px) saturate(130%);
}

.event img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -56%) scale(1);
    width: 250px;
    animation: event-cim 3s ease-in-out infinite;
    transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
    pointer-events: none;
}

.event-content:hover img {
    animation: none; 
    transform: translate(-50%, -56%) scale(1.1) !important;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 30px 15px 30px 10px;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.arrow:hover { opacity: 0.9; scale: 1.05; }
.left { left: 1px; }
.right { right: 1px; }

@keyframes event-cim {
    0% { width: 250px; }
    50% { width: 265px; }
    100% { width: 250px; }
}

.fooldal {
    animation: load 0.3s ease-in;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
}

.kuldetes-holder {
    width: 500px;
    max-width: 80%;
    height: 230px;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.kuldetes-holder::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes lightflow {
    0% { transform: translateX(0px) translateY(0px); }
    50% { transform: translateX(20px) translateY(15px); }
    100% { transform: translateX(0px) translateY(0px); }
}

.kuldetesek {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.kuldetes-holder h2 {
    margin: 0 0 15px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    cursor: default;
}

.kuldetes-holder h3 {
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: #efefef;
    text-shadow: 0 0 6px rgba(0,0,0,0.5);
    position: relative;
    margin-bottom: 8px;
    cursor: default;
}

.kuldetes-holder hr {
    margin: 16px auto 5px auto;
    border: none;
    height: 1px;
    border-radius: 1px;
    background: rgba(255,255,255,0.15);
    width: 80%;
    cursor: default;
}

.kuldetesek > div:last-child hr {
    display: none;
}

.jutalom {
    position: absolute;
    right: 5px;
    top: 4px;
    color: #ce9d43;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 0 6px rgba(0,0,0,0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
}

.kuldetes-holder p {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d6d6d6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    position: absolute;
    right: -35px;
    top: -6px;
    cursor: default;
}

.bar {
    width: 460px;
    max-width: 95%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(60, 44, 0, 0.25), rgba(213, 156, 0, 0.25));
    box-shadow: inset 0 0 3px rgba(255,255,255,0.1);
    position: relative;
}

.bar div {
    height: 3px;
    max-width: 100%;
    border-radius: 3px;
    background: linear-gradient(40deg, #a08028, #caa94c, #a08028);
    background-size: 200% 200%;
    animation: keszanim 5s ease-in-out infinite;
    box-shadow: 0 0 3px rgba(255, 255, 200, 0.4);
    background-position: 0% 50%;
    overflow: visible !important;
}

@keyframes keszanim {
    0% {
        background-position:0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.szervercim {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

.iframe-holder {
    width: 500px;
    max-width: 80%;
    height: 230px;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    cursor: default;
}

.iframe-holder::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid rgba(194, 156, 50, 0.1); 
    border-top: 3px solid #c29c32; 
    border-right: 3px solid #c29c32;
    box-shadow: 0 0 10px rgba(194, 156, 50, 0.5); 
    animation: spin 1s linear infinite;
    z-index: 52;
    cursor: default;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.dataholder {
    z-index: 1;
    width: 500px;
    height: 190px;
    max-width: 100%;
    animation: load 0.3s ease-in;
    cursor: default;
    display: none;
    background: transparent;
    cursor: default;
}

.main-body h1 {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 55px;
    text-shadow: #00000096 3px 3px 3px;
    margin: 15px auto;
    cursor: default;
}

.stat-table {
    animation: load 0.3s ease-in;
    margin: 10px auto;
    width: 93%;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-table-holder  {
    width: 100%;
    height: fit-content;
    max-width: 700px;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.stat-table-holder::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.stat-table table {
    transform: translateY(4px);
}

.stat-table table td:nth-child(1), .stat-table table td:nth-child(2), .stat-table table td:nth-child(5)  {
    width: 130px;
    text-align: center;
}

.stat-table table td:nth-child(3), .stat-table table td:nth-child(4){
    width: 130px;
    text-align: center;
}

.stat-table td {
    width: fit-content;
    padding: 0 2px;
    cursor: default;
}

.stat-table img {
    height: 28px;
    margin-top: 11px;
}

.rangsor {
    margin-top: 10px;
}

.rang-table {
    animation: load 0.3s ease-in;
    margin: 0 auto;
    max-width: 90%;
    width: 700px;
    text-decoration: none;
    color: #efefef;
    font-size: 21px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 60px;
    cursor: default;
    border-collapse: collapse;
}

.rang-table thead {
    margin: 0 auto;
    width: 700px;
    height: fit-content;
    max-width: 100%;
    border-radius: 20px;
    height: 50px;
    padding: 0px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    color: #efefef;
}

.rang-table thead::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.rang-table a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.rang-table a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.rang-table th:nth-child(1) {
    width: 150px;
    text-align: center;
}

.rang-table th:nth-child(2) {
    width: 250px;
    text-align: left;
}

.rang-table th:nth-child(3) {
    width: 250px;
    text-align: center;
}

.rang-table tbody {
    margin: 0 auto;
    width: 700px;
    height: fit-content;
    max-width: 100%;
    border-radius: 20px;
    padding: 15px 25px;
    overflow: hidden;
    position: absolute;
    top: 155px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.rang-table tbody::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.rang-table td:nth-child(1) {
    width: 150px;
    text-align: center;
}

.rang-table td:nth-child(2) {
    width: 250px;
    text-align: left;
}

.rang-table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

.rang-table td {
    padding: 2px 0 !important;
}

.rang-table tr:nth-child(1), .rang-table tr:nth-child(2), .rang-table tr:nth-child(3) {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.rang-table img {
    height: 28px;
}

.pp {
    position: fixed;
    top: 18px;
    right: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 3px;
    z-index: 100;
    cursor: default;
}

.pp img {
    height: 27px;
    width: 27px;
}

.pp p {
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 2px;
    font-weight: 400;
}

.webshop-kat {
    margin: 10px auto 20px auto;
    gap: 40px;
    width: 700px;
    height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 20px;
    padding: 0px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.webshop-kat::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.webshop-kat a {
    font-weight: 400;
    transition: all 0.15s linear;
    cursor: pointer;
    font-size: 23px;
    text-decoration: none;
    color: #d6d6d6;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
}

.webshop-kat a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.napi {
    animation: load 0.3s ease-in;
    margin: 0 auto 20px auto;
    gap: 0;
    width: 700px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.napi::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.napi-body {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: fit-content;
}

.napi-body img {
    transition: all 0.15s linear;
    width: 300px;
    height: 300px;
    cursor: pointer;
    z-index: 0;
    animation: doboz 3s ease-in-out infinite;
    opacity: 0.9;
}

.napi-body h3 {
    margin: 0 0 20px 0;
    font-weight: 400;
    text-decoration: none;
    color: #efefef;
    font-size: 22px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    z-index: 100;
}

.napi-body h3:nth-child(1) {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.napi-body h3:nth-child(3) {
    margin: 5px 0 0 0;;
}

.napi-body img:hover {
    transition: all 0.2s linear;
}

.napi-body p {
    text-decoration: none;
    color: #efefef;
    text-shadow: 2px 2px 8px #c29b30de;
    letter-spacing: 1px;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 100;
    transform: translateY(110px);
    cursor: default;
    animation: nyeremeny 2s ease-in-out infinite;
}

@keyframes nyeremeny {
    0% {
        transform: translateY(110px);
    }
    22% {
        transform: scale(1.07) rotate(3deg) translateY(95px);
    }
    45% {
        transform:  translateY(110px);
    }
    72% {
        transform: scale(1.04) rotate(-2deg) translateY(100px);
    }
    100% {
        transform: translateY(110px);
    }
}

@keyframes doboz {
    0% {
        transform: none;
    }
    25% {
        transform: none;
    }
    30% {
        transform: translateY(-12px);
    }
    35% {
        transform: translateY(-12px) rotate(-9deg);
    }
    40% {
        transform: translateY(-12px) rotate(9deg);
    }
    45% {
        transform: translateY(-12px) rotate(-7deg);
    }
    53% {
        transform: translateY(-12px) rotate(7deg);
    }
    60% {
        transform: translateY(-12px) rotate(-5deg);
    }
    70% {
        transform: translateY(-12px) rotate(5deg);
    }
    80% {
        transform: translateY(-12px) rotate(0);
    }
    90% {
        transform: none;
    }
}

.rang-body {
    width: 100%;
    height: fit-content;
}

.rang-holder{
    animation: load 0.3s ease-in;
    margin: 20px auto 0 auto;
    width: 700px;
    height: fit-content;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.rang-holder div {
    transition: all 0.15s linear;
    width: 300px;
    height: 350px;
    padding: 5px 10px;
    cursor: default;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.rang-holder h2 {
    text-align: center;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.rang-holder h2:hover {
    color: #c29b30;
    text-shadow: 0 0 8px #c29b30ab;
}

.rang-holder .vipar {
    text-align: center;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    font-size: 21px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    margin: 2px 0 0 0;
}

.rang-holder hr {
    margin: 10px auto 10px auto;
    border: none;
    height: 1px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.411);
    width: 90%;
}

.rang-holder p {
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    padding: 3px 0 2px 17px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.rang-body button {
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 19px;
    line-height: 19px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 38px;
    width: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rang-body button:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.egyeb-body {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-holder{
    animation: load 0.3s ease-in;
    margin: 20px auto 20px auto;
    width: 1000px;
    height: fit-content;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.item-holder div {
    position: relative;
    padding: 15px 10px;
    width: 280px;
    height: 170px;
    cursor: default;
    border-radius: 20px;
    color: #efefef;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.item-holder div p {
    text-align: center;
    font-size: 18px;
    color: #efefef;
    margin: 7px 0 0 0;
}

.item-holder input[type="text"] {
    display: none;
    opacity: 0;
}

.item-holder div h3 {
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: #7e7e7edc 2px 2px 2px;
    text-align: center;
}

.item-holder input[type="submit"] {
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 18px;
    line-height: 17px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 38px;
    width: 100px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-holder input[type="submit"]:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.item-holder .ar {
    width: fit-content;
    position: absolute;
    bottom: 18px;
    left: 15px;
    color: #be9830;
    text-shadow: 1px 1px 2px #be983086;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.item-holder .akcio {
    z-index: 100;
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 14px;
    width: 41px;
    height: 41px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 220, 0.7) 0%, rgba(175, 164, 0, 0.6) 30%, rgba(160, 128, 40, 0.7) 100%);
    
    box-shadow: 
        inset -3px -3px 5px rgba(0, 0, 0, 0.3),
        inset 3px 3px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.3);
        
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0px;
    animation: akcio 2s ease-in-out infinite;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.3);
}

.item-holder .akcio::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 25%;
    height: 12%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
    pointer-events: none;
}

.item-holder .epic {
    background: radial-gradient(circle at 30% 30%, rgba(255, 230, 200, 0.7) 0%, rgba(210, 120, 0, 0.6) 40%, rgba(160, 80, 0, 0.7) 100%);
}

@keyframes akcio {
    0% {
        transform: scale(1) rotate(20deg);
    }
    50% {
        transform: scale(1.05) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(20deg);
    }
}

.talalat-holder {
    animation: load 0.3s ease-in;
    position: absolute;
    top: 120px;
    right: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1500px) {
    .talalat-holder {
        right: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .talalat-holder {
        position: relative;
        margin: 25px auto;
        top: 0;
        right: 0;
    }
}

.talalat-img {
    position: relative;
    width: 280px;
    height: auto;
    aspect-ratio: 129 / 200;
    background-image: url(./IMG/jatekos.webp);
    background-position: center center;
    background-size: 100% 100%;
}

.talalat-img div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 17px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    white-space: nowrap;
    border: 1px solid rgba(255, 0, 0, 0);
    transition: all 0.15s linear;
    border-radius: 2px;
}

.talalat-img div:hover {
    backdrop-filter: grayscale(0.9);
    font-size: 17px;
    line-height: 19px;
}

.szam {
    transition: all 0.15s linear;
    font-size: 20px;
    line-height: 22px;
}

.talalat-img div:hover .szam {
    font-size: 22px;
    line-height: 24px;
}

.fej {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 70px;
}

.mellkas {
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 65px;
}

.has {
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 75px;
}

.balkez {
    top: 75px;
    left: 35px;
    transform: rotate(30deg);
    width: 38px;
    height: 180px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.balkez p {
    transform: rotate(-30deg);
}

.jobbkez {
    top: 75px;
    right: 35px;
    transform: rotate(-30deg);
    width: 38px;
    height: 180px;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.jobbkez p {
    transform: rotate(30deg);
}

.ballab {
    top: 215px;
    left: 86px;
    width: 50px;
    height: 210px;
}

.ballab p {
    transform: translateX(-15px);
}

.jobblab {
    top: 215px;
    right: 86px;
    width: 50px;
    height: 210px;
}

.jobblab p {
    transform: translateX(15px);
}

.talalat-holder h3 {
    text-decoration: none;
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    margin-bottom: 15px;
}

.abra-holder  {
    animation: load 0.3s ease-in;
    width: 750px;
    max-width: 93% !important;
    margin: 20px auto;
    height: fit-content;
    gap: 60px;
    border-radius: 20px;
    padding: 15px 0 25px 0;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.abra-holder::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.abra-holder div {
    max-width: 50%;
}

.abra-holder div h3 {
    text-decoration: none;
    color: #efefef;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-align: center;
    margin-bottom: 15px;
}

.abra-holder canvas {
    width: 250px;
    height: 250px;
}

@keyframes load{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.figyelem {
    text-align: center;
    width: 100%;
    margin: 10px auto 30px auto;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
}

.figyelem b {
    color: #ce9d43;
}

.skin-holder {
    animation: load 0.3s ease-in;
    max-width: 67%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: auto;
    padding-bottom: 30px;
}

.elem {
    position: relative;
    padding: 15px 10px;
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    cursor: default;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-size: 20px;
    color: #efefef;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.elem input[type="text"] {
    display: none;
    opacity: 0;
}

.elem h3 {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: #7e7e7edc 2px 2px 2px;
    text-align: center;
}

.elem input[type="submit"] {
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 18px;
    line-height: 17px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 38px;
    width: 100px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elem input[type="submit"]:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.elem #forma {
    display: none;
    opacity: 0;
}

.elem .ar {
    width: fit-content;
    position: absolute;
    bottom: 18px;
    left: 15px;
    color: #be9830;
    text-shadow: 1px 1px 2px #be983086;
    font-size: 25px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.elem img {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    max-height: 120px;
    margin: 0 auto;
    cursor: default;
    z-index: -1;
}

.skin-kereso {
    animation: load 0.3s ease-in;
    width: 100%;
    height: fit-content;
    margin: 20px auto;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.skin-kereso form {
    width: 100%;
}

.skin-kereso h2 {
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 22px;
    cursor: default;
}

.skin-kereso form h2 {
    margin-bottom: 20px;
}

.rang-sajat {
    cursor: default;
    animation: load 0.3s ease-in;
    top: 80px;
    left: 7px;
    width: 180px;
    z-index: 100;
    margin: 0 auto;
    height: 65px;
    max-width: 80%;
    border-radius: 20px;
    padding: 0 25px;
    position: fixed;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.rang-sajat::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.rang-sajat h2 {
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    margin-bottom: 1px;
}

.rang-sajat h2:nth-child(2) {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    letter-spacing: 0px;
    color: #8a8a8a;
    margin-bottom: 0px;
}

.rang-ball {
    position: absolute;
    top: -50px;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #35353538 0%, rgba(206, 157, 67, 0) 65%);
    z-index: -100;
    animation: tracky-ball 6s ease-in-out infinite;
}

.rang-ball2 {
    position: absolute;
    top: -10px;
    left: -10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #bdbdbd36 0%, rgba(206, 157, 67, 0) 65%);
    z-index: -100;
    animation-delay: 1s;
    animation: tracky-ball 4s ease-in-out infinite;
}

.tracky {
    animation: load 0.3s ease-in;
    width: 1072px;
    margin: 20px auto;
    height: 90px;
    max-width: 80%;
    border-radius: 20px;
    padding: 0 25px 0 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.tracky::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.tracky h2 {
    margin: 10px 0 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    cursor: default;
}

.tracky p {
    margin: 5px 0 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    cursor: default;
}

.tracky ol {
    position: absolute;
    top: 50%;
    left: 27px;
    transform: translateY(-50%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.2px;
    text-shadow: 0 0 2px rgba(0,0,0,0.6);
    cursor: default;
}

.tracky li {
    margin-top: 3px;
}

.tracky .btn-holder {
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    right: 10px;
    bottom: 10px;
    gap: 10px;
}

.vote-btn {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 17px;
    line-height: 17px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 32px;
    width: 95px;
    background: linear-gradient(135deg, rgba(255, 181, 44, 0.3), rgba(255, 232, 26, 0.10));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.ell-btn {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 17px;
    line-height: 17px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 32px;
    width: 95px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ell-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.dis-btn {
    pointer-events: none;
    cursor: default; 
}

.in-a {
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-style: normal;
    color: #ce9d43;
}

.in-a:hover {
    text-shadow: 0 0 5px #ce9d434f;
}

.tracky-ball {
    position: absolute;
    top: -40px;
    right: 30%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, #ce9d434b 0%, rgba(206, 157, 67, 0) 65%);
    z-index: -100;
    animation: tracky-ball 4s ease-in-out infinite;
}

.tracky-ball-2 {
    position: absolute;
    top: -50px;
    left: 40%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #694a11a9 0%, rgba(206, 157, 67, 0) 65%);
    z-index: -100;
    animation: tracky-ball 3s ease-in-out infinite;
    animation-delay: 1s;
}

.tracky-ball-3 {
    position: absolute;
    top: -40px;
    left: 30%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, #88680073 0%, rgba(206, 157, 67, 0) 65%);
    z-index: -100;
    animation: tracky-ball 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes tracky-ball {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(0, 10px) scale(1.2);
    }
}

.gyik {
    animation: load 0.3s ease-in;
    width: 1072px;
    margin: 20px auto;
    height: fit-content;
    max-width: 80%;
    border-radius: 20px;
    padding: 15px 25px 40px 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.gyik::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.gyik h2 {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    cursor: default;
}

.gyik .gyikholder {
    width: 95%;
    height: fit-content;
    margin: 0 auto;
}

.gyik a {
    color: #be9830;
    text-decoration: none;
    font-weight: 600;
}

details {
    background-color: #00000031;
    backdrop-filter: blur(3px);
    color: #efefef;
    margin-top: 15px;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 12px;
}

summary {
    padding: 10px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 20px;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    margin-bottom: 0px;

}

details[open] div {
    padding: 10px;
}

#opendiv {
    cursor: default;
    font-size: 20px;
}

.kupon-body {
    width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px auto 0 auto;
}

.kupon-body div  {
    animation: load 0.3s ease-in;
    height: fit-content;
    max-width: 50%;
    width: 310px;
    gap: 0;
    border-radius: 20px;
    padding: 15px 25px 25px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.kupon-body div::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.kupon-body form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.kupon-body h2 {
    color: #efefef;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    margin: 5px auto 20px auto;
    cursor: default;
}

.kupon-body input[type="submit"] {
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    color: #efefef;
    font-size: 18px;
    line-height: 17px;
    font-style: normal;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    height: 38px;
    width: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kupon-body input[type="submit"]:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.kupon-body ::placeholder {
    color: rgb(58, 58, 58);
}

.kupon-body input[type="text"] {
    transition: all 0.15s linear;
    display: block;
    text-decoration: none;
    color: #efefef;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    font-size: 20px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 40px;
    width: 230px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 2px 10px;
    text-align: center;
}

.kupon-body input[type="text"]:focus {
    box-shadow: 0 0 8px rgba(194, 194, 194, 0.5) !important;
}

.kupon-uzen p {
    text-decoration: none;
    color: #F44336;
    font-size: 21px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    transform: translateY(20px);
}

.jo {
    color: #a08028 !important;
}

.skin-sajat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px auto 0 auto;
    justify-content: center;
    align-items: center;
    max-width: 67%;
}

.tilt {
    cursor: default !important;
    border-color: #8a8a8a !important;
    color: #8a8a8a !important;
}

.tilt:hover {
    background-color: transparent !important;
    cursor: default !important;
}

.oldal-menu {
    animation: load 0.3s ease-in;
    position: fixed !important;
    top: 80px;
    left: 7px;
    width: 180px;
    z-index: 100;
    height: fit-content;
    max-width: 100%;
    border-radius: 20px;
    padding: 15px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.oldal-menu::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.oldal-tarto {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.oldal-tarto a {
    font-size: 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 3px 0;
    transition: all 0.15s linear;
    text-decoration: none;
    color: #d6d6d6;
    font-size: 21px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
}

.oldal-tarto a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.aktiv {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
}

.kiemelt {
    box-shadow: inset 5px 5px 25px #c29b307c, inset -5px -5px 25px #c29b307c;
}

.kiszov {
    position: absolute;
    top: 3px;
    left: -5px;
    color: #c29b30;
    text-shadow: 0 0 8px #c29b30ab;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    animation: kiemelt 2.5s ease-in-out infinite;
    cursor: default;
}

.profil-holder {
    animation: load 0.3s ease-in;
    margin: 10px auto;
    width: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-style: normal;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profil-header {
    width: 730px;
    height: 111px;
    max-width: 93%;
    border-radius: 20px;
    padding: 0 0;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.profil-header::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0.4;
    animation: lightflow 12s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.profil-header img {
    height: 101px;
    margin: 5px;
    border-radius: 15px;
    z-index: 100;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.profil-nev {
    margin: 29px 0 0 5px;
    z-index: 100;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profil-nev h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
    text-align: left;
    white-space: nowrap;
}

.profil-nev h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 15px;
    color: #8a8a8a;
    font-weight: 400;
    margin: 8px 0 0 0;
    text-align: left;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    transition: all 0.2s ease-in-out;
}

.profil-nev h2:hover {
    color: #c0c0c0;
    text-shadow: 1px 1px 2px rgba(175, 175, 175, 0.6);
}

.profil-info {
    animation: load 0.3s ease-in;
    width: 730px;
    max-width: 93%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    align-items: center;
    justify-content: center;
    margin: 20px auto 15px auto;
    gap: 20px;
}

.profil-info > div {
    width: 226px;
    min-width: 220px;
    height: 60px;
    max-width: 33%;
    border-radius: 20px;
    padding: 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease-in-out;
}

.profil-info > div:hover {
    border: 1px solid rgba(255, 255, 255, 0.527);
}

.profil-info p {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    color: #8a8a8a;
    font-size: 13px;
    line-height: 13px;
    cursor: default;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.profil-info h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    margin: 3px 0 0 0;
    text-align: center;
    cursor: default;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.profil-skin {
    animation: load 0.3s ease-in;
    width: 730px;
    max-width: 93%;
    height: fit-content;
    margin: 0 auto 20px auto;
}

.profil-skin h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.profil-skin-holder {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.profil-skin-holder div {
    width: 226px;
    min-width: 220px;
    height: fit-content;
    max-width: 33%;
    border-radius: 20px;
    padding: 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease-in-out;
}

.profil-skin-holder div:hover {
    border: 1px solid rgba(255, 255, 255, 0.527);
}

.profil-skin img {
    max-height: 120px;
    margin: 5px auto 10px auto;
}

.profil-skin h3 {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 400;
    cursor: default;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.fiok {
    transition: transform 0.2s ease-in-out;
    z-index: 11;
}

.menu {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    right: 0px;
    top: 51px;
    width: 170px;
    flex-direction: column;
    border-radius: 15px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, #4F4F4F, #232323);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.menu::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.fiok:hover + .menu,
.menu:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    padding: 8px 20px;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative !important;
    left: unset !important;
    top: unset !important;
    filter: none !important;
    border-radius: 15px 15px 0 0;
}

.menu a:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}













@keyframes kiemelt {
    0% {
        transform: rotate(-20deg) scale(1);
    }
    50% {
        transform: rotate(-20deg) scale(1.04);
    }
    100% {
        transform: rotate(-20deg) scale(1);
    }
}

@media screen and (max-width: 1200px) {
    #hiba {
        display: block !important;
        opacity: 1 !important;
    }
    .login {
        display: none !important;
        opacity: 0 !important;
    }
    .ell-btn {
        display: none !important;
    }
    .tracky ol {
        display: none !important;
    }
    .header a:nth-child(5), .header a:nth-child(4) {
        display: none !important;
    }
    .oldal-menu {
        width: 700px !important;
        max-width: 93% !important;
        left: 50% !important;
        transform: translateX(-50%);
        top: 80px !important;
        overflow-x: hidden !important;
        height: 50px !important;
        padding: 0 25px !important;
    }
    .oldal-tarto {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 15px !important;
        padding: 0px 20px 0 0 !important;
    }
    .oldal-tarto a {
        width: fit-content !important;
        text-wrap: nowrap !important;
    }
    .oldal-menu a:nth-child(2) {
        display: none !important;
    }
    .rang-table thead {
        top: 150px !important;
        padding: 0 0 !important;
        max-width: 93% !important;
    }
    .rang-table tbody {
        top: 220px !important;
        padding: 15px 0 !important;
        max-width: 93% !important;
    }
}

@media screen and (max-width: 750px) {
    .oldal-menu {
        width: 100% !important;
        max-width: 93% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 80px !important;
        overflow-x: scroll !important;
        padding: 0 0 !important;
    }
    .oldal-tarto {
        padding: 0 20px 0 40px !important;
        align-items: center !important;
        justify-content: start !important;
        border-radius: 15px !important;
        font-size: 18px !important;
    }
    .vote-btn {
        display: none !important;
    }
}

@media screen and (max-width: 650px) {
    .jutalom {
        transform: translateX(20px) !important;
        font-size: 16px !important;
        letter-spacing: -1px !important;
        font-weight: 400 !important;
    }
    .kuldetes-holder h3 {
        font-size: 18px !important;
        font-weight: 400 !important;
    }
    .iframe-holder {
        max-width: 93% !important;
        padding: 15px 0 !important;
    }
    .gyikholder {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .gyikholder summary {
        font-size: 18px !important;
    }
    .gyikholder #opendiv {
        font-size: 18px !important;
    }
    .rang-table {
        font-size: 18px !important;
    }
    .tracky h2 {
        margin-top: 13px !important;
        font-size: 25px !important;
        letter-spacing: normal !important;
    }
    .tracky p {
        font-size: 18px !important;
    }
    .fiok a {
        width: 40px !important;
        background-size: cover !important;
        background-position: 0 0;
    }
    .stat-table {
        font-size: 19px !important;
    }
    .stat-table img {
        height: 23px !important;
        margin-top: 11px !important;
    }
}

@media screen and (max-width: 500px) {
    .profil-info {
        flex-direction: column;
        width: 100%;
    }
    .profil-info > div {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }
    .profil-skin-holder div {
        width: 150px !important;
        height: 126px !important;
        min-width: 150px;
    }
    .profil-skin img {
        max-height: 80px !important;
        height: 80px !important;
        margin: 5px auto 10px auto;
    }
    .rang-ball {
        top: -100px;
        right: -10%;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, #35353538 0%, rgba(206, 157, 67, 0) 65%);
        z-index: -100;
        animation: tracky-ball 6s ease-in-out infinite;
    }
    .rang-ball2 {
        top: -100px;
        left: -10%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, #bdbdbd36 0%, rgba(206, 157, 67, 0) 65%);
        z-index: -100;
        animation-delay: 1s;
        animation: tracky-ball 4s ease-in-out infinite;
    }
    .profil-nev h1 {
        font-size: 25px;
        line-height: 25px;
        font-weight: 400;
    }
    .profil-nev h2 {
        font-size: 13px;
        line-height: 13px;
    }
    .stat-table-holder {
        padding: 15px 0;
    }
    .stat-table-holder table {
        width: 100%;
        max-width: 100%;
    }
    .profil-skin h3 {
        font-size: 15px !important;
        white-space: nowrap !important;
    }
}

@media screen and (max-width: 450px) {
    .tracky h2 {
        margin-top: 20px !important;
        font-size: 18px !important;
    }
    .tracky p {
        font-size: 15px !important;
    }
    .tracky-ball-3 {
        left: -10%;
    }
    .tracky-ball-2 {
        right: -25%;
    }
    .header {
        gap: 25px;
    }
}

@media screen and (max-width: 430px) {

}
