body {
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Sağa kaymayı tamamen engelle */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.join-button, .whitepaper-button {
    background-color: #2A2A2A;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 10;
}

.join-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.whitepaper-button {
    position: relative;
}

.whitepaper-button span {
    background-color: #5A5A5A;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 12px;
    margin-left: 5px;
}

.logo-section {
    margin: 80px 0 20px 0;
}

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

.logo img {
    width: 150px;
    height: 150px;
}

.logo-text {
    margin-left: 10px;
    font-size: 30px;
    font-weight: bold;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.main-text {
    padding: 0 20px;
}

.main-text h1 {
    font-size: 18px;
    margin-bottom: 10px;
}

.main-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.play-button {
    background-color: #3A3AFF;
    border: none;
    padding: 30px 60px;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 36px;
    cursor: pointer;
    box-shadow: 0 0 700px rgba(58, 58, 255, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 20px;
}

.play-button:hover {
    background-color: #2A2AFF;
    box-shadow: 0 0 400px rgba(58, 58, 255, 0.7);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: #333;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover {
    color: #000;
    cursor: pointer;
}

label {
    font-size: 18px;
    margin-right: 10px;
}

input[type="text"] {
    padding: 8px;
    font-size: 16px;
    width: 70%;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    color: #000;
    background-color: #fff;
}

.connect-button {
    background-color: #3A3AFF;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.connect-button:hover {
    background-color: #2A2AFF;
}

/* Coin Miktarı hizalaması düzeltildi */
.puan-options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
}

.coin-option {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.coin-option img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.coin-option.selected img {
    border: 2px solid #32CD32; /* Seçilen seçenek yeşil renkte */
    border-radius: 50%;
}

#loading-screen {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loading-bar {
    display: flex;
    align-items: center; /* Görseli ve yazıyı hizalayacak */
    justify-content: center;
    margin-top: 20px;
}
#loading-bar img {
    width: 70px; /* Görselin boyutunu ayarladım */
    margin-right: 10px; /* Yazı ile arasında boşluk bıraktım */
}

/* Chat ekranını açıp kapatan buton */
.open-chat-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000; /* Üstte görünsün diye */
}


.loading-content {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.loading-content img {
    width: 100px;
    margin-bottom: 20px;
}

.payment-button {
    background-color: #32CD32;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
    transition: background-color 0.3s ease;
}

.payment-button:hover {
    background-color: #28A745;
}

.loading-content p {
    color: white;
    margin-top: 10px;
}

/* Chat Bölümü */
.chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #1e1e1e;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    height: 375px;
    display: none;
}



}

.chat-box {
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px);
    overflow-y: auto;
    background-color: #1e1e1e;
    padding: 10px;
}

.chat-message {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-message img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-message span {
    color: white;
}

.chat-input-container {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    background-color: #333;
    color: white;
    border: 1px solid #555;
    border-radius: 5px;
}

.chat-submit {
    background-color: #3A3AFF;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-submit:hover {
    background-color: #2A2AFF;
}

/* Telegram görseli boyutlandırma */
.icon {
    width: 15px;
    height: 15px;
}

/* Gönder butonu - yeşil renk ve güven veren tasarım */
.submit-button {
    background-color: #28a745;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
    display: block;
    margin: 20px auto;
}

.submit-button:hover {
    background-color: #218838;
}

/* Info Sections için temel stiller */
.info-sections {
    display: flex;
    flex-wrap: wrap; /* Satır kaymasını sağlar */
    justify-content: space-around; /* Eşit boşluk bırakır */
    margin-top: 40px;
}

.info-section {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin: 10px;
    flex: 1 1 calc(50% - 40px); /* Mobilde 2 sütun yapacak şekilde */
    box-sizing: border-box;
    max-width: calc(50% - 40px); /* Genişlik ayarı */
}

.info-section img {
    width: 50px;
    height: 50px;
    margin-top: 10px;
}

.info-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Mobil için özel ayarlar */
@media (max-width: 768px) {
    .info-section {
        flex: 1 1 calc(100% - 20px); /* Mobilde her biri tam genişlik alır */
        max-width: calc(100% - 20px);
    }
}