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

body {
    margin: 0;
    overflow-x: hidden !important;
    background-color: #121212;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #efefef;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

:root {
    color-scheme: dark;
}

::selection {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes load {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

.glass-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(14px) saturate(200%);
    -webkit-backdrop-filter: blur(14px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 20px;
    overflow: hidden;
    animation: load 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.glass-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0.4;
    animation: lightflow 15s infinite linear alternate;
    pointer-events: none;
    z-index: 0;
}

.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);
}

.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;
}

.nyelv {
    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;
}

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

.nyelv 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);
}

.hir {
    position: absolute;
    top: 73px;
    left: 0;
    width: 100vw;
    height: 30px;
    background: linear-gradient(90deg, rgba(160, 128, 40, 0.2), rgba(160, 128, 40, 0.4));
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    padding-top: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    overflow: hidden;
    z-index: 90;
    cursor: pointer;
}

.hir-track {
    display: inline-flex;
    white-space: nowrap;
    gap: 100px;
    will-change: transform;
    animation: hird 30s linear infinite;
}

@keyframes hird {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.main {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    overflow: hidden !important;
}

.awpimg {
    position: absolute;
    top: 100px;
    right: -50px;
    width: 65%;
    height: 85vh;
    background-image: url(IMG/awp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.8;
    animation: awpload 1.5s ease-out;
}

@keyframes awpload {
    0% { right: -600px; opacity: 0; }
    100% { opacity: 0.8; }
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.text-side {
    width: 500px;
    height: 200px;
    padding: 20px 25px;
    max-width: 100%;
    text-align: center;
}

.maintitle h1 {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    margin-bottom: 10px;
    letter-spacing: -1px;
    cursor: default;
}

.title {
    font-size: 26px;
    line-height: 1.4;
    color: #efefef;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 300;
    cursor: default;
}

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

.btn-holder a {
    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: 35px;
    width: 110px;
    background: linear-gradient(30deg, rgba(255, 181, 44, 0.25), rgba(230, 209, 23, 0.35));
    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;
    z-index: 10;
}

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

.btn-holder a:nth-of-type(2) {
    background: linear-gradient(30deg, rgba(12, 138, 255, 0.25), rgba(85, 23, 230, 0.35));
}

.iframe-tarto {
    width: 500px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dataholder2 {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.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);
    }
}

.arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background-image: url(IMG/downarrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    animation: arrow 3s infinite ease-in-out;
}

@keyframes arrow {
    0%, 100% { transform: translate(-50%, 2px); opacity: 0.4; }
    50% { transform: translate(-50%, 10px); opacity: 0.8; }
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.info-box {
    width: 800px;
    max-width: 95%;
    padding: 25px;
}

.info-box h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    cursor: default;
}

.info-box p {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    color: #ddd;
}

.info-box a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.staffs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staffs h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    margin-bottom: 30px;
    cursor: default;
}

.staffholder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.staff {
    width: 160px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.staff:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.4);
}

.staff div[class$="pp"], .staff div.rudiks, .staff div.kovi, .staff div.sokase {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.kovi { background-image: url(IMG/kovipp.webp); }
.sokase { background-image: url(IMG/sokasepp.png); }
.rudiks { background-image: url(IMG/rudikspp.webp); }

.staff .name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

.staff .rank {
    font-size: 16px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gyik {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gyik a {
    color: #d4af37;
    text-decoration: none;
}

.gyik h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    cursor: default;
}

.gyik .holder {
    width: 800px;
    max-width: 95%;
}

details {
    margin-bottom: 15px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

details[open] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

summary {
    padding: 20px;
    list-style: none;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

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

#opendiv {
    padding: 0 20px 20px 20px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.hirek {
    width: 100%;
    height: fit-content;
    padding: 12px 0 0 0;
}

.hirek h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    cursor: default;
    text-align: center;
}

.hirek h2 {
    margin: 27px 0 5px 0;
    font-size: 22px;
    white-space: nowrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hirek p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hirek-holder {
    width: fit-content;
    max-width: 93%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.hirek-holder > div {
    width: 350px;
    height: 220px;
    border-radius: 15px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    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);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.hirek-holder > div:hover {
    border: 1px solid rgba(206, 206, 206, 0.616);
}

.hirek-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
}

.hirek-holder .hir-wrapper {
    width: 100%;
    height: 170px;
    position: absolute;
    top: 50px;
    left: 0;
    border-radius: 0 0 15px 15px;
    padding: 20px 10px 0 10px;
    cursor: default;
    z-index: 1;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.4) 20%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
}

.hirek-holder .datum {
    position: absolute;
    right: 8px;
    top: 2px;
    text-shadow: 0 0 2px #575757af;
    font-size: 15px;
    color: #b8b8b8;
    z-index: 10;
    cursor: default;
}

.hirek-holder a {
    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(30deg, rgba(255, 181, 44, 0.25), rgba(230, 209, 23, 0.35));
    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;
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 10;
}

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

.frissitesek {
    transition: all 0.2s 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: 125px;
    background: linear-gradient(30deg, rgba(255, 181, 44, 0.25), rgba(230, 209, 23, 0.35));
    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;
    position: relative;
    margin-top: 20px;
    margin-left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

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







footer {
    height: 150px;
    background-image: url(IMG/footerbg.webp);
    background-size: 300px 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.left{
    width: min-content;
    height: 50px;
    display: flex;
    flex-direction: row;
    margin-right: 150px;
    gap: 20px;
    z-index: 5;
}

.right{
    width: min-content;
    height: 50px;
    display: flex;
    flex-direction: row;
    margin-left: 150px;
    gap: 20px;
    z-index: 5;
}

.footerpic{
    transition: all 0.2s ease-in-out;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}

.footerpic:hover{
    transform: scale(1.07);
    cursor: pointer;
}

.discord{
    background-image: url(IMG/discord.webp);
}

.csgo{
    background-image: url(IMG/csgo.webp);
}

.steam{
    background-image: url(IMG/steam.webp);
}

.tracky{
    background-image: url(IMG/trackyserver.webp);
}

.footerpic:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.discord { background-image: url(IMG/discord.webp); }
.csgo { background-image: url(IMG/csgo.webp); }
.steam { background-image: url(IMG/steam.webp); }
.tracky { background-image: url(IMG/trackyserver.webp); }


@media screen and (max-width: 1100px) {
    .awpimg { width: 90%; right: 5%; top: 300px; opacity: 0.4; }
    .maintitle h1 { font-size: 60px; }
    .header { gap: 30px; }
}

@media screen and (max-width: 600px) {
    .maintitle h1 { font-size: 45px; }
    .title { font-size: 20px; }
    .iframe-tarto { width: 100%; }
    .text-side { width: 100%; }
    .staffholder { gap: 20px; }
    .main { padding-top: 60px; }
    footer .left { margin-right: 10px; }
    footer .right { margin-left: 10px; }
    footer { height: 200px; }
    .hirek h2 {font-size: 20px; letter-spacing: -1px;}
    .hirek p {font-size: 15px;}
    .main { padding-top: 103px !important; }
    .hir { top: 65px; }
}

@media screen and (max-width: 500px) {
    .header a:first-child { display: none; }
    .header { gap: 15px; }
    .header a { font-size: 22px; }
    iframe .dataholder {
        gap: 20px !important;
    }
}

@media screen and (max-width: 400px) {
    .header { gap: 15px; padding-right: 40px; }
    .maintitle h1 {font-size: 37px;}
}

@media screen and (max-width: 300px) {
    .maintitle h1 {font-size: 30px;}
    .title { font-size: 18px; }
    .header { gap: 8px; padding-right: 40px; }
    .header a { font-size: 18px; }
}