


/* GENEL AYARLAR --------------------------------------------------------------------------------------------------------------- */

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #111111;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 3px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}



@keyframes new {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

[data-blink="true"] {
    animation: new 1s infinite;
    font-weight: 200;
}




.yazi-buton {
    text-decoration: none;
    color: #d35858;
    font-weight: bold;
    transition: color 0.3s ease;
}

.yazi-buton:hover {
    color: #a5a5a5;
    cursor: pointer;
}




/* SAYFA GEÇİŞİ */
.section-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.section-content.active {
    pointer-events: all;
    position: static;
    display: block;
    opacity: 1;
    overflow: auto;
}
.section-content.show-details {
    overflow: hidden;
}






/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #11111181;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    max-width: 100%;
    white-space: nowrap;
}

.nav-left a {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.3;
    color: #8d8d8d;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav-left a:hover, nav a.active {
    color: #ffffff;
}

.nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-center .logo img {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}


.nav-mobile {  
    display: none;
}

.mobile-nav-button {
    display: inline-block;
    cursor: pointer;
    z-index: 999;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #a1a1a1;
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background-color: #a1a1a1;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hamburger.active {
    background-color: transparent;
}

.hamburger.active::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active::after {
    transform: rotate(-45deg);
    top: 0;
}


.mobile-nav-menu {
    position: fixed;
    top: -30%;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #11111181;
    overflow: hidden;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 500;
}

.mobile-nav-menu-buttons {
    margin-top: 18%;
}

.mobile-nav-menu-buttons a {
    display: block;
    padding: 6px 16px;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #8d8d8d;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #ffffff;
}

.mobile-nav-menu.open {
    display: block;
    top: 0;
}


@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }

    .navbar {
        padding: 30px 30px;
    }

    .nav-center {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(30%, -50%);
        z-index: 999;
    }


    /* Mobil Menü */
    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

/* Sosyal Medya Butonları */
.nav-right a img {
    width: 24px;
    height: auto;
    filter: brightness(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-right a img:hover {
    filter: brightness(1);
}

/* Ara çizgi */
.nav-cizgi {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    display: inline-block;
}






/* HOME --------------------------------------------------------------------------------------------------------------- */






/* Video */
.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-container .fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #111111 100%);
}

.karsilama {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.karsilama img {
    width: 65%;
    height: auto;
    pointer-events: none;
}

.hosgeldiniz {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hosgeldiniz img {
    width: 60%;
    height: auto;
    pointer-events: none;
}

@media (max-width: 768px) {
    .karsilama {
        top: 45%;
        left: 45%;
    }
    .karsilama img {
        width: 120%;
    }

    .hosgeldiniz {
        top: 55%;
        left: 45%;
    }
    
    .hosgeldiniz img {
        width: 120%;
    }
}




/* İçerik Alanı */
.content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #d3d3d3;
    text-align: center;
    line-height: 1.8;
    margin: 20px auto;
    max-width: 900px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .content p {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 15px;
        color: #d3d3d3;
        text-align: center;
        line-height: 1.5;
        margin: 20px auto;
        max-width: 350px;
        letter-spacing: 0.3px;
    }
}


/* Sosyal Medya */
.social-widgets {
    display: flex;
    justify-content: center;
    gap: 10%;
    margin-top: 7%;
    margin-bottom: 7%;
}

.widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
    text-align: center;
}

.widget h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 40px;
    margin-bottom: 10%;
    text-align: center;
    text-transform: uppercase;
    background: radial-gradient(circle, #c1b18a, #d7a72d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.twitter-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 530px;
    background-color: #232323;
    border-radius: 5px;
    text-align: center;
}

.discord-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 530px;
    background-color: #232323;
    border-radius: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .social-widgets {
        flex-wrap: wrap;
    }
}


/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #11111181;
    box-sizing: border-box;
    color: #b1b1b1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding-top: 15px;
    padding-bottom: 10px;
    width: 100%;
    bottom: 0;
    font-size: 0.7rem;
}

.author {
    color: #b1b1b1;
    text-decoration: dashed;
    transition: color 0.3s ease;
}

.author:hover {
    color: #ffffff;
}


/* Floating kutusu */
.floating-box {
    font-family: 'Poppins', sans-serif;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 1%;
    right: -50%;
    background-color: #f0cb4468;
    color: #e0e0e0;
    border: 1px solid #f0cb44;
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 25%;
    z-index: 10;
    transition: right 2s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 3;
    pointer-events: all;
}

.close-button:hover {
    color: #ff5555;
}

.floating-box.show {
    right: 0.3%;
    opacity: 1;
}

.floating-box.hide {
    right: -50%;
    opacity: 0;
}

@media (max-width: 768px) {
    .floating-box {
        position: fixed;
        display: flex;
        bottom: -50%;
        right: 0%;
        padding: 16px;
        font-size: 14px;
        line-height: 1.6;
        max-width: 92%;
        transition: bottom 2s ease-in-out, opacity 0.3s ease-in-out;
        background-color: #96780e;
        color: #e0e0e0;
    }

    .floating-box.show {
        bottom: 0%;
        opacity: 1;
    }
    
    .floating-box.hide {
        bottom: -50%;
        opacity: 0;
    }
}





/* KURALLAR --------------------------------------------------------------------------------------------------------------- */




.image-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.image-div img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.2;
    pointer-events: none;
}

.image-div .fade2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #111111 100%);
    z-index: 1;
}

@media (max-width: 768px) { 
    .image-div img {
        width: 300%;
        transform: translate(-30%, 0%);
    }
}



/* Başlıklar */

.left-panel {
    margin-top: 5%;
    width: 24%;
    overflow-y: auto;
    background-color: #ffffff00;
    padding: 10px;
    position: fixed;
    left: 0;
    height: 100vh;
    z-index: 100;
}

.left-panel::-webkit-scrollbar {
    display: none;
}

.left-panel ul {
    list-style: none;
    padding: 0;
}

.left-panel li {
    margin: 5px 25px;
}

.left-panel a {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #8d8d8d;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.left-panel .sub {
    margin-left: 4%;
    font-size: 18px;
    text-transform: capitalize;
    color: #6d6d6d;
}

.left-panel .start-sub {
    margin-left: -5%;
}

.left-panel a:hover {
    color: #a32020;
}

.left-panel a.active {
    color: #a32020;
}

.left-panel-button img {
    display: none;
}


@media (max-width: 768px) {
    .left-panel-button {
        margin-top: 20%;
        width: 4%;
        overflow-y: auto;
        background-color: #111111d3;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: 0;
        height: 100vh;
        z-index: 100;
        cursor: pointer;
        transition: left 1s ease-in-out;
    }

    .left-panel-button img {
        display: block;
        width: 120%;
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .left-panel-button.active {
        margin-top: 20%;
        width: 4%;
        overflow-y: auto;
        background-color: #111111d3;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: -10%;
        height: 100vh;
        z-index: 100;
    }

    .left-panel {
        margin-top: 20%;
        width: 60%;
        overflow-y: auto;
        background-color: #111111;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: -70%;
        height: 100vh;
        z-index: 999;
        transition: left 1s ease-in-out;
    }

    .left-panel.active {
        left: 0;
    }
}


/* Açıklamalar */
#rules-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

#rules-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    pointer-events: none;
}

.right-panel h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-align: left;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}


.right-panel {
    margin-top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    overflow-y: auto;
    padding: 10px;
    background-color: #ffffff00;
    position: absolute;
    z-index: 10;
}

.right-panel .rule {
    background-color: #ffffff00;
    margin-bottom: 30px;
    border-radius: 3px;
}

.right-panel h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 35px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
}

.right-panel p {
    margin-top: 3%;
    margin-left: 5%;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 18px;
    text-align: left;
    color: #dadada;
}

.ceza {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-align: left;
    color: rgb(120, 10, 54);
}

.right-panel h3 {
    margin-top: 5%;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 27px;
    text-align: left;
    text-transform: uppercase;
    color: #efefef;
}


@keyframes blink {
    0% {
        background-color: #ffffff00;
    }
    50% {
        background-color: #67131382;
    }
    100% {
        background-color: #ffffff00;
    }
}

.blinking {
    animation: blink 1s linear infinite;
}


.rule-dipnot {
    margin-top: 5%;
    background: rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}


.rule-dipnot .dipnot-uyari {
    margin-top: 5%;
    font-weight: 400;
    font-size: 18px;
    color: #d31e1e;
}


@media (max-width: 768px) {
    
    .right-panel h1 {
        font-size: 28px;
    }

    .right-panel {
        margin-top: 20%;
        margin-left: 10%;
        left: 0%;
        transform: translateX(0%);
        width: 80%;
        overflow-y: auto;
        padding: 10px;
        background-color: #ffffff00;
        position: absolute;
        z-index: 10;
    }

    #rule-warning {
        display: none;
    }
    
    .right-panel h2 {
        font-size: 25px;
    }
    
    .right-panel p {
        margin-top: 5%;
        margin-bottom: 5%;
        font-family: 'Poppins', sans-serif;
        font-weight: 200;
        font-size: 15px;
        text-align: left;
        color: #dadada;
    }
    
    .right-panel h3 {
        font-size: 22px;
    }
}



.number-panel {
    margin-top: 5%;
    width: 5%;
    overflow-y: auto;
    background-color: #00000000;
    padding: 10px;
    position: fixed;
    right: 0;
    height: 100vh;
    z-index: 100;
    text-align: right;
}

.number-panel::-webkit-scrollbar {
    display: none;
}

.number-panel ul {
    list-style: none;
    padding: 0;
}

.number-panel a {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #8d8d8d;
    font-size: 18px;
    cursor: pointer;
    text-transform: uppercase;
}

.number-panel .sub {
    margin-left: 4%;
}

.number-panel a:hover {
    color: #a32020;
}

.number-panel a.active {
    color: #a32020;
}

.number-panel-button img {
    display: none;
}


@media (max-width: 768px) {
    .number-panel {
        display: none;
    }
}




/* ANAYASA --------------------------------------------------------------------------------------------------------------- */








/* Başlıklar */
.left-law-panel {
    margin-top: 5%;
    width: 24%;
    overflow-y: auto;
    background-color: #ffffff00;
    padding: 10px;
    position: fixed;
    left: 0;
    height: 100vh;
    z-index: 100;
}

.left-law-panel::-webkit-scrollbar {
    display: none;
}

.left-law-panel ul {
    margin-top: 12%;
    list-style: none;
    padding: 0;
}

.left-law-panel li {
    margin: 5px 25px;
}

.left-law-panel a {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #8d8d8d;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.left-law-panel .law {
    margin-left: 4%;
    font-size: 18px;
    text-transform: capitalize;
    color: #6d6d6d;
}

.left-law-panel .start-law {
    margin-left: -5%;
}

.left-law-panel a:hover {
    color: #a32020;
}

.left-law-panel a.active {
    color: #a32020;
}

.left-law-panel-button img {
    display: none;
}


@media (max-width: 768px) {
    .left-law-panel-button {
        margin-top: 20%;
        width: 4%;
        overflow-y: auto;
        background-color: #111111d3;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: 0;
        height: 100vh;
        z-index: 100;
        cursor: pointer;
        transition: left 1s ease-in-out;
    }

    .left-law-panel-button img {
        display: block;
        width: 120%;
        position: absolute;
        top: 2%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .left-law-panel-button.active {
        margin-top: 20%;
        width: 4%;
        overflow-y: auto;
        background-color: #111111d3;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: -10%;
        height: 100vh;
        z-index: 100;
    }
    

    .left-law-panel {
        margin-top: 20%;
        width: 60%;
        overflow-y: auto;
        background-color: #111111;
        border: 1px solid #000;
        padding: 10px;
        position: fixed;
        left: -70%;
        height: 100vh;
        z-index: 999;
        transition: left 1s ease-in-out;
    }

    .left-law-panel.active {
        left: 0;
    }
}


/* Açıklamalar */
#law-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

#law-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    pointer-events: none;
}

.right-law-panel h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-align: left;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.right-law-panel {
    margin-top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    overflow-y: auto;
    padding: 10px;
    background-color: #ffffff00;
    position: absolute;
    z-index: 10;
}

.right-law-panel .law {
    background-color: #ffffff00;
    margin-bottom: 30px;
    border-radius: 3px;
}

.right-law-panel h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 35px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
}

.right-law-panel p {
    margin-top: 5%;
    margin-bottom: 5%;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 18px;
    text-align: left;
    color: #dadada;
}

.law-dipnot {
    margin-top: 5%;
    background: rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.law-dipnot .dipnot {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 1%;
}

.law-dipnot .dipnot-uyari {
    margin-top: 0;
    font-weight: 400;
    font-size: 18px;
    color: #d31e1e;
}

.right-law-panel h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 27px;
    text-align: left;
    text-transform: uppercase;
    color: #efefef;
}

@media (max-width: 768px) {
    .right-law-panel h1 {
        font-size: 28px;
    }

    .right-law-panel {
        margin-top: 20%;
        margin-left: 10%;
        left: 0%;
        transform: translateX(0%);
        width: 80%;
        overflow-y: auto;
        padding: 10px;
        background-color: #ffffff00;
        position: absolute;
        z-index: 10;
    }
    
    .right-law-panel h2 {
        font-size: 25px;
    }
    
    .right-law-panel p {
        margin-top: 5%;
        margin-bottom: 5%;
        font-family: 'Poppins', sans-serif;
        font-weight: 200;
        font-size: 15px;
        text-align: left;
        color: #dadada;
    }
    
    .right-law-panel h3 {
        font-size: 22px;
    }
}


@keyframes blink {
    0% {
        background-color: #ffffff00;
    }
    50% {
        background-color: #67131382;
    }
    100% {
        background-color: #ffffff00;
    }
}

.blinking {
    animation: blink 1s linear infinite;
}



.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow.active {
    transform: rotate(180deg);
}




/* SSS --------------------------------------------------------------------------------------------------------------- */





.faq-baslik {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 5.6%;
    margin-left: 25%;
}

.faq-heading {
    position: relative;
    font-family: 'Poppins', sans-serif;
    margin-top: 3%;
    margin-left: 25%;
    max-width: 50%;
    font-size: 25px;
    color: #ddd;
    border-bottom: 2px solid #ddd;
}

.faq-item {
    position: relative;
    z-index: 10;
    border: 1px solid #ffffff86;
    border-radius: 1px;
    overflow: hidden;
    transition: transform 0.2s ease;
    max-width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    width: 100%;
    background-color: #11111181;
    color: #ffffffad;
    padding: 15px 20px;
    box-sizing: border-box;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    background-color: #a32020;
    color: #ffffffdd;
}

.faq-item:hover {
    border: 1px solid #a32020;
}

.faq-answer {
    font-family: 'Poppins', sans-serif;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #11111181;
    color: #d0d0d0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 15px 20px;
    box-sizing: border-box;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-baslik {
        margin-top: 25%;
        font-size: 30px;
    }
    
    .faq-heading {
        margin-top: 10%;
        margin-left: 5%;
        max-width: 90%;
        font-size: 22px;
    }
    
    .faq-item {
        max-width: 90%;
        margin-bottom: 10px;
    }

    .faq-question {
        font-size: 15px;
    }
}




/* FORMLAR --------------------------------------------------------------------------------------------------------------- */








.warning-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 5%;
    margin-bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0cb4415;
    color: #f0f0f0;
    border: 1px solid #f0cb44;
    padding: 16px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    z-index: 2;
}

.warning-box2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-top: 7%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f0444415;
    color: #f0f0f0;
    border: 1px solid #f04444;
    padding: 16px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
    width: 50%;
    z-index: 2;
}

.warning-box h1, .warning-box2 h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 20px;
}

.warning-box ul, .warning-box2 ul {
    margin: 0;
    padding-left: 20px;
}

.warning-box li, .warning-box2 li {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 15px;
}

.warning-box p, .warning-box2 p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 17px;
}


@media (max-width: 768px) {
    
    .warning-box, .warning-box2 {
        margin-top: 20%;
        padding: 10px;
        font-size: 10px;
        line-height: 1.4;
        width: 90%;
    }

    .warning-box li {
        font-size: 12px;
    }
    
    .warning-box p, .warning-box2 p {
        font-size: 13px;
    }
}







/* FORM */
.form-container {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    max-width: 50%;
    margin: 0 auto;
    margin-bottom: 5%;
    margin-top: 7%;
}

#form-baslik {
    margin-left: 0%;
    font-size: 50px;
    font-weight: bold;
    color: rgb(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: -2%;
}

.form-container h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 35px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
}

.form-soru {
    background-color: #98989812;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 2px;
    margin-top: 2%;
    width: 100%;
}

#kayit-form label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

#kayit-form textarea, #kayit-form input {
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.532);
    width: 100%;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 1%;
    background-color: transparent;
    color: rgb(255, 255, 255);
    outline: none;
    font-size: 14px;
    resize: none;
}

#cinsiyetSecim {
    margin-top: 3%;
}

#cinsiyetSecim input[type="radio"] {
    display: none;
}

#cinsiyetSecim label {
    position: relative;
    padding-top: 20px;
    padding-left: 40px;
    cursor: pointer;
    font-size: 16px;
    color: rgb(182, 182, 182);
}

#cinsiyetSecim label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #888;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s, border-color 0.3s;
}

#cinsiyetSecim input[type="radio"]:checked + label::before {
    background-color: #a32020;
    border-color: #a32020;
}

#cinsiyetSecim input[type="radio"]:checked + label {
    font-weight: bold;
    color: #a32020;
}

#cinsiyetSecim label:hover::before {
    border-color: #a32020;
}

#cinsiyetSecim input[type="radio"]:focus + label::before {
    border-color: #a32020;
}




#ruleSecim {
    margin-top: 3%;
}

#ruleSecim input[type="radio"] {
    display: none;
}

#ruleSecim label {
    position: relative;
    padding-top: 20px;
    padding-left: 40px;
    cursor: pointer;
    font-size: 16px;
    color: rgb(182, 182, 182);
}

#ruleSecim label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #888;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s, border-color 0.3s;
}

#ruleSecim input[type="radio"]:checked + label::before {
    background-color: #a32020;
    border-color: #a32020;
}

#ruleSecim input[type="radio"]:checked + label {
    font-weight: bold;
    color: #a32020;
}

#ruleSecim label:hover::before {
    border-color: #a32020;
}

#ruleSecim input[type="radio"]:focus + label::before {
    border-color: #a32020;
}




#sunucubulmaSecim {
    margin-top: 3%;
}

#sunucubulmaSecim input[type="radio"] {
    display: none;
}

#sunucubulmaSecim label {
    position: relative;
    padding-top: 20px;
    padding-left: 40px;
    cursor: pointer;
    font-size: 16px;
    color: rgb(182, 182, 182);
}

#sunucubulmaSecim label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #888;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.3s, border-color 0.3s;
}

#sunucubulmaSecim input[type="radio"]:checked + label::before {
    background-color: #a32020;
    border-color: #a32020;
}

#sunucubulmaSecim input[type="radio"]:checked + label {
    font-weight: bold;
    color: #a32020;
}

#sunucubulmaSecim label:hover::before {
    border-color: #a32020;
}

#sunucubulmaSecim input[type="radio"]:focus + label::before {
    border-color: #a32020;
}


@media (max-width: 768px) {

    #form-baslik {
        font-size: 30px;
        margin-bottom: -10%;
    }

    .form-container {
        max-width: 90%;
        margin-top: 25%;
    }
}


#steamLoginButton {
    background-color: #171a21;
    border: 1px solid rgba(255, 255, 255, 0.518);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 2%;
    margin-bottom: 2%;
}

#steamLoginButton i {
    margin-right: 8px;
    font-size: 30px;
}

#steamLoginButton:hover {
    background-color: #1b2838;
    cursor: pointer;
}

#steamLoginButton.success {
    background-color: #171a21;
    border: 1px solid rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0.496);
    padding: 10px 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: 2%;
    margin-bottom: 2%;
}

#steamLoginButton.success:hover {
    background-color: #171a21;
    cursor: none;
}

#kayit-button {
    background-color: #98989812;
    border: 1px solid rgba(255, 255, 255, 1);
    color: rgb(255, 255, 255);
    width: 30%;
    padding: 15px 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 3%;
    border-radius: 1px;
}

#kayit-button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    cursor: pointer;
}

#success-message {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    display: none;
    margin-top: 5%;
    text-align: center;
}

#error-message {
    font-size: 15px;
    color: rgb(192, 0, 0);
    display: none;
}

@media (max-width: 768px) {
    #kayit-form input {
        margin-top: 0%;
        margin-bottom: 5%;
    }

    #kayit-button {
        width: 90%;
        padding: 8px 10px;
        font-size: 14px;
        margin-top: 10%;
    }
}