/*cook*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #08f;
    margin: 15% auto;
    padding: 1vw;
    width: 60%;
    text-align: center;
}
.modal-content p {
    color: #ccc;
    font-weight: 600;
    font-size: 2vw;
}
.close {
    color: #aaa;
    float: right;
    font-size: 2.5vw;
    font-weight: bold;
}

.close:hover {
    color: black;
    cursor: pointer;
}
.cookie-popup {
    z-index: 99999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #08f;
    color: #ccc;
    padding: 2vw;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.close-button {
    background-color: #111;
    color: #ccc;
    font-size: 1vw;
    width: 6vw;
    padding: 1vw 1vw;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.cookie-popup img {
    width: 2vw;
}
.coo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.coo p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ccc;
    margin: 1vw;
    font-size: 1.5vw;
}
.close-button:hover {
    background-color: #f0f;
    color: #ccc;
}

.show-cookie-popup .cookie-popup {
    visibility: visible;
    opacity: 1;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Monserat', sans-serif;
    background-color: #ccc;
}
/*navig*/
header {
    background-color: #000000cc;
    color: white;
    position: absolute;
    top: 0;
    z-index: 99999;
    left: 0;
    right: 0;
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    align-items: center;
    padding: 1vw 3vw;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 3vw;
    height: auto;
    margin-right: 1vw;
}

.tittle {
    font-size: 2vw;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 4vw;
}

nav a {
    text-decoration: none;
    color: white;
    background-color: #0ff;
    border-radius: 2vw;
    font-weight: bold;
    position: relative;
    font-size: 1.3vw;
    padding: 1vw;
    display: inline-block;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.content {
    padding: 10vw 2vw;
}

.burger-icon {
    display: none;
}

/*cube*/
.zoom-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 90vh;
}

.zoom-logo {
    top: 15vw;
    width: 60vw;
    position: absolute;
    left: 20vw;
    z-index: 2;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s ease-in-out;
    position: relative; /* ÃƒÂÃ¢â‚¬ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Âµ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¾, Ãƒâ€˜Ã¢â‚¬Â¡Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â¹ Ãƒâ€˜Ã†â€™ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ z-index */
    z-index: 1; /* ÃƒÂÃ‚Â£Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Âµ z-index ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â zoom-image */
}

.zoom-container:hover .zoom-image {
    transform: scale(1.05);
}

.outer-section {
    padding-top: 5vw;
    height: 70vh;
    background-image: linear-gradient(145deg, #111, #1a1a1a);

    background-position: center;
    background-color: #1b1e2f;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-size 0.3s;
}

.outer-section:hover {
    background-size: 110%;
}

.hole {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35vw;
}
.hole img {
    width: 30vw;
    opacity: 0.9;
    animation: zoomAnimation 1s infinite alternate;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

.inner-section {
}

.cube-container {
    perspective: 80vw;
    perspective-origin: 50% 50%;
    width: 10vw;
    height: 10vw;
    position: relative;
}

.cube {
    width: 10vw;
    height: 10vw;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(45deg) rotateY(45deg);
    animation: rotate 15s infinite linear;
}

.face {
    position: absolute;
    width: 10vw;
    height: 10vw;
    background-color: #2f3451;
    color: #ccc;
    line-height: 9vw;
    text-align: center;
    font-size: 2vw;
    border: 1px solid #2980b9;
}

.face:nth-child(1) {
    transform: rotateY(0deg) translateZ(5vw);
}
.face:nth-child(2) {
    transform: rotateY(90deg) translateZ(5vw);
}
.face:nth-child(3) {
    transform: rotateY(180deg) translateZ(5vw);
}
.face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(5vw);
}
.face:nth-child(5) {
    transform: rotateX(90deg) translateZ(5vw);
}
.face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(5vw);
}

@keyframes rotate {
    0% {
        transform: rotateX(45deg) rotateY(45deg);
    }
    100% {
        transform: rotateX(45deg) rotateY(405deg);
    }
}

/*about*/
.formilar h5 {
    text-align: center;
    color: #08f;
    font-size: 3vw;
    margin: 0.5vw;
}
.indis {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rew {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rew img {
    width: 25vw;
    height: 15vw;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.indis img {
    width: 25vw;
}
.formilar p {
    text-align: center;
    color: #ccc;
    font-size: 1.3vw;
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: linear-gradient(145deg, #111, #1a1a1a);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.cards {
    margin-bottom: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 2vw;
}
.about h2 {
    color: #08f;
    font-size: 3.5vw;
    margin: 0.4vw;
}
.card {
    text-align: center;
    display: flex;
    padding: 1vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 45vh;
    border-radius: 2vw;
    background-color: #111;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(0.96);
}
.card h1 {
    color: #08f;
    font-size: 1.5vw;
    margin: 0.4vw;
}

.card p {
    font-family: 'Noto Sans Linear B', sans-serif;
    color: #ccc;

    font-size: 1vw;
    overflow: hidden;
}

@keyframes fontChange {
    to {
        font-family: 'Space Grotesk', sans-serif;
    }
}

/*Stats*/
.stats iframe {
    width: 70vw;
    height: 50vw;
}
.stats {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #111;
    background-image: linear-gradient(145deg, #111, #1a1a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2vw 0vw;
}
.stat-bl {
    display: flex;
    gap: 3vw;
    flex-direction: row;
}
.stats h2 {
    color: #08f;
    font-size: 3vw;
    margin: 0.4vw;
}
.stats h3 {
    color: #ccc;
    font-size: 1.5vw;
    margin: 0.4vw;
}
.stat1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.count img {
    width: 3vw;
}
.count {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    width: 10vw;
    height: 10vw;
    border-radius: 2vw;
    background-color: #08f;
    padding: 2vw 1vw;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.count p {
    font-size: 3vw;
    margin: 0.2vw;
    color: #ccc;
}

/*Games*/
.games {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(145deg, #111, #1a1a1a);
    background-color: #111;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.games h2 {
    color: #08f;
    font-size: 3vw;
}
.game-list {
    padding: 3vw;
    gap: 3vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.cur-game {
    width: 16vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5vw;
    border-radius: 2vw;
    background-color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.cur-game img {
    height: 12vw;
    object-fit: cover;
}
.cur-game a {
    text-align: center;
    text-decoration: none;
    color: #ccc;
    font-weight: 900;
    font-size: 1.2vw;
    padding: 1vw 2vw;
    border-radius: 1vw;
    background-color: #5e5c1e;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s;
}
.cur-game h4 {
    font-size: 1.4vw;
    color: #ccc;
}
.cur-game a:hover {
    background-color: #111;
    color: #ccc;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.games iframe {
    width: 60vw;
    height: 40vw;
}
.pad {
    padding: 2vw;
}
.game-container {
    padding: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5vw;
    background-color: #1b213e;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
/*Contacts*/
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    background-image: linear-gradient(145deg, #111, #1a1a1a);
    background-color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.contact h2 {
    color: #08f;
    font-size: 3vw;
    margin: 0.4vw;
}
.formilar {
    border-radius: 2vw;
    background-color: #111;
    display: flex;
    flex-direction: column;
    padding: 3vw;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.formilar form {
    background-color: #111;
    display: flex;
    flex-direction: column;
}
.formilar input {
    border: none;
    width: 72vw;
    color: #ccc;
    font-size: 2.5vw;
    padding: 0.5vw;
    background-color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.formilar textarea {
    border: none;
    color: #ccc;
    font-size: 1.5vw;
    padding: 0.5vw;
    background-color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.formilar label {
    font-size: 2.5vw;
    color: #ccc;
}
.formilar button {
    text-align: center;
    text-decoration: none;
    margin-top: 1vw;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-weight: 900;
    font-size: 3.2vw;
    padding: 1vw 5vw;
    background-color: #08f;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s;
}
.formilar button:hover {
    background-color: #ccc;
    color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.pols {
    text-align: left;
}
.pols h3 {
    font-size: 1.7vw;
    color: #08f;
}
.pols p {
    font-size: 1.1vw;
    color: #ccc;
}
.conts {
    width: 65vw;
    text-align: center;
    background-color: #111;
    padding: 1vw;
    border-radius: 2vw;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.conts p {
    font-size: 1.2vw;
    color: #ccc;
}
.footer {
    padding: 2vw;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer-content {
    border-top: 0.2vw solid #08f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-section {
    text-align: center;
    width: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer-section input {
    border: none;
    color: #ccc;
    border-radius: 1vw;
    font-size: 1.1vw;
    padding: 0.2vw;
    background-color: #111;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.footer-section button {
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-weight: 900;
    font-size: 1vw;
    border-radius: 1vw;
    padding: 0.2vw 0.3vw;
    background-color: #08f;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s;
}
.imcard {
    display: flex;
    align-items: center;
    justify-content: center;
}
.imcard img {
    margin-right: 0.5vw;
    width: 5vw;
}
.footer-section button:hover {
    background-color: #ccc;
    color: #08f;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.aaas {
    text-align: left;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.notie {
    text-align: center;
    width: 50vw;
}
.notie a {
    color: #08f;
}
.footer a {
    text-decoration: none;
    color: #08f;
}
.footer a:hover {
    color: #08f;
}
.footer p {
    color: #ccc;
    font-size: 1.1vw;
}
.footer ul li a {
    font-size: 1.2vw;
    color: #ccc;
}
.footer h3 {
    font-size: 1.2vw;
    color: #08f;
}
.notie h1 {
    color: #08f;
    font-size: 1.3vw;
}
@media (max-width: 768px) {
    .tittle {
        font-size: 8vw;
        margin: 0;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 5.5vw 3vw;
    }

    .logo {
        display: flex;
        flex-direction: column;
    }

    .logo img {
        width: 12vw;
    }

    nav ul {
        display: none;
    }

    .burger-icon {
        display: block;
        width: 30px;
        height: 20px;
        cursor: pointer;
        position: relative;
    }

    .line {
        width: 100%;
        height: 4px;
        background-color: #ccc;
        margin: 6px 0;
        transition: 0.4s;
    }

    .burger-icon.open .line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
        background-color: #08f;
    }

    .burger-icon.open .line:nth-child(2) {
        opacity: 0;
    }

    .burger-icon.open .line:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
        background-color: #08f;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #08f;
        width: 100%;
    }

    .mobile-menu.show {
        background-color: #08f;
        max-height: 100vh;
    }

    .mobile-menu.hide {
        max-height: 0;
    }

    .mobile-menu ul {
        background-color: #08f;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    nav a {
        font-size: 7.3vw;
    }

    .mobile-menu li {
        margin: 1vw 0;
    }
    .zoom-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 46vh;
    }
    .zoom-logo {
        top: 54vw;
        width: 76vw;
        position: absolute;
        left: 12vw;
        z-index: 2;
    }
    .stats h2 {
        color: #08f;
        font-size: 13vw;
        margin: 0.4vw;
    }
    .sepa img {
        width: 82vw;
    }
    .count {
        display: flex;
        align-items: center;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        width: 26vw;
        height: 29vw;
        border-radius: 2vw;
        background-color: #08f;
        padding: 1vw 1vw;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .count img {
        width: 8vw;
    }
    .stats h3 {
        color: #ccc;
        font-size: 3.5vw;
        margin: 0.4vw;
    }
    .count p {
        font-size: 7vw;
        margin: 0.2vw;
        color: #ccc;
    }
    .card img {
        width: 29vw;
    }
    .cards {
        margin-bottom: 2vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2vw;
        padding: 2vw;
    }
    .card {
        text-align: center;
        display: flex;
        padding: 1vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90vw;
        height: 43vh;
        border-radius: 2vw;
        background-color: #111;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s;
    }
    .card h1 {
        color: #08f;
        font-size: 3.5vw;
        margin: 0.4vw;
    }
    .card p {
        font-family: 'Noto Sans Linear B', sans-serif;
        color: #ccc;
        font-size: 4vw;
        overflow: hidden;
    }
    .games h2 {
        color: #08f;
        font-size: 11vw;
    }
    .game-list {
        padding: 3vw;
        gap: 4vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .cur-game {
        width: 37vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5vw;
        border-radius: 2vw;
        background-color: #08f;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .cur-game img {
        width: 34vw;
        height: 35vw;
        object-fit: cover;
    }
    .cur-game h4 {
        text-align: center;
        margin: 0.5vw;
        font-size: 4.4vw;
        color: #ccc;
    }
    .cur-game a {
        text-align: center;
        text-decoration: none;
        color: #ccc;
        font-weight: 900;
        font-size: 7.2vw;
        padding: 1vw 2vw;
        border-radius: 1vw;
        background-color: #ffa31b;
        transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s;
    }
    .contact h2 {
        color: #08f;
        font-size: 8vw;
        margin: 0.4vw;
    }
    .conts p {
        font-size: 5.2vw;
        color: #ccc;
    }
    .conts {
        width: 86vw;
        text-align: center;
        background-color: #111;
        padding: 1vw;
        border-radius: 2vw;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .notie h1 {
        color: #08f;
        font-size: 5.3vw;
    }
    .footer p {
        color: #ccc;
        font-size: 4.1vw;
    }
    .notie {
        text-align: center;
        width: 78vw;
    }
    .footer h3 {
        font-size: 4.2vw;
        color: #08f;
    }
    .footer-content {
        border-top: 0.2vw solid #08f;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-section {
        text-align: center;
        width: 70vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .imcard img {
        margin-right: 0.5vw;
        width: 18vw;
    }

    .footer-section ul {
        padding: 0;
        list-style: none;
    }
    .footer ul li a {
        font-size: 6.2vw;
        color: #ccc;
    }
    .footer-section input {
        border: none;
        color: #ccc;
        border-radius: 1vw;
        font-size: 7.1vw;
        padding: 0.2vw;
        background-color: #111;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .footer-section button {
        text-align: center;
        text-decoration: none;
        border: none;
        cursor: pointer;
        color: #ccc;
        font-weight: 900;
        margin-top: 3vw;
        font-size: 5vw;
        border-radius: 1vw;
        padding: 0.2vw 0.3vw;
        background-color: #08f;
        transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s;
    }
    .coo p {
        padding: 4vw;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #ccc;
        margin: 1vw;
        font-size: 4.5vw;
    }
    .close-button {
        background-color: #111;
        color: #ccc;
        font-size: 5vw;
        width: 25vw;
        padding: 1vw 1vw;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
    .coo {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    .cookie-popup img {
        width: 15vw;
    }
    .modal-content p {
        color: #ccc;
        font-weight: 600;
        font-size: 8vw;
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 7.5vw;
        font-weight: bold;
    }
    .modal-content {
        background-color: #08f;
        margin: 37% auto;
        padding: 1vw;
        width: 73%;
        text-align: center;
    }
    .stats iframe {
        width: 91vw;
        height: 77vw;
    }
    .pols h3 {
        font-size: 6.7vw;
        color: #08f;
    }
    .formilar label {
        font-size: 5.5vw;
        color: #1a1a1a;
    }
    .formilar input {
        border: none;
        width: 72vw;
        color: #ccc;
        font-size: 7.5vw;
        padding: 0.5vw;
        background-color: #08f;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }
    .formilar textarea {
        border: none;
        color: #ccc;
        font-size: 5.5vw;
        padding: 0.5vw;
        background-color: #08f;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    }
}
