
#night-theme:target ~ .header-right #toggle-night,
body:not(:target) .header-right #toggle-night {
    display: none;
}

#day-theme:target ~ .header-right #toggle-day,
body:target .header-right #toggle-day {
    display: none;
}


body {
    background: white;
    color: #272930; 
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}


.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.menu li {
    display: inline;
}

.menu li a {
    text-decoration: none;
    color: #ffffff; 
    background-color: #2a3c4c; 
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu li a:hover {
    background-color: #00ff7f; 
    color: #2a3c4c; 
}


.menu input[type="checkbox"] {
    display: none;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a3c4c; 
    padding: 10px 20px;
    color: #00ff7f; 
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 10%;
}

.logo img {
    width: 50px;
    padding-right: 7px;
}

.title {
    margin-left: 5px;
    margin-right: 13px;
    
}

.title h1 {
    color: #00ff7f; 
    margin-bottom: 5px;
}

.title h2 {
    color: #dcdee1; 
}



.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 10%;
}

.btn-theme-toggle {
    background-color: #00ff7f; 
    color: #2a3c4c; 
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
}

.btn-theme-toggle:hover {
    background-color: #272930; 
    color: #ffffff;
}


main {
    padding-left: 7%;
    padding-right: 7%;
}

section {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

section h2 {
    color: #2a3c4c; 
}


.intro-content {
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #2a3c4c;
    border-radius: 10px;
    background: #f2f2f2;
    font-size: 18px;
    color: #272930; 
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #dcdee1; 
}

th, td {
    padding: 10px;
    text-align: center;
    background-color: #white; 
}

th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
}


.styled-block {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    background-color: white; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.styled-block-pgp {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    background-color: #f2f2f2; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}


.icons-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon img {
    width: 100px; 
    height: auto;
    margin-right: 20px;
}

.icon-text {
    flex: 1;
    font-size: 20px;
    color: #00ff7f; 
}

.styled-block .icons-block {
    display: flex;
    flex-direction: column;
}

.styled-block .icons-block .icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.styled-block .icons-block .icon img {
    flex-shrink: 0;
    margin-right: 20px;
    width: 100px; 
    height: 100px; 
}


.faq-item input[type="checkbox"], #faq-toggle, #how-to-play-toggle {
    display: none;
}


.faq-section-question, .faq-question {
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    padding: 10px;

    border: none;
    text-align: left;
    outline: none;
    font-size: 18px; 
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative; 
    padding-left: 30px; 
}

.faq-section-question:hover, .faq-question:hover {
    background-color: #2a3c4c; 
    color: #faf7f0; 
}



.faq-content, .faq-answer {
    display: none;
    padding: 10px;
    background-color: white; 
    border-radius: 5px;
}

.faq-item input[type="checkbox"]:checked + .faq-question + .faq-answer, #faq-toggle:checked + .faq-section-question + .faq-content {
    display: block;
}



#faq-toggle:checked + .faq-section-question + .faq-content,
#how-to-play-toggle:checked + .faq-section-question + .faq-content {
    display: block;
}




}
.faq-how-to-play-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.faq-container, .how-to-play-container {

    flex: 1;
    min-width: 300px;
}



.how-to-play-container .faq-content ol {
    padding-left: 20px;
}

.how-to-play-container .faq-content ol li {
    margin-bottom: 10px;
}


.faq-how-to-play-section .faq-content a,
.how-to-play-container .faq-content a {
    color: #00ff7f; 
    text-decoration: none; 
    transition: color 0.3s ease, text-decoration 0.3s ease; 
}

.faq-how-to-play-section .faq-content a:hover,
.how-to-play-container .faq-content a:hover {
    text-decoration: underline; 
}





}
pre {
    background-color: #272930; 
    color: #f2f2f2; 
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;

}




.terms-section, .privacy-section {
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: #f2f2f2; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.terms-section h2, .privacy-section h2 {
    color: #2a3c4c; 
}

.terms-section p, .privacy-section p {
    font-size: 18px;
    color: #272930; 
    line-height: 1.6;
}




.dividends-table-container {
    max-height: 400px; 
    overflow-y: scroll;
    margin-top: 20px;
}

.dividends-table {
    width: 100%;
    border-collapse: collapse;
}

.dividends-table th, .dividends-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.dividends-table th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
    text-align: center;
}

.dividends-table td {
    text-align: center;
    background-color: white; 
}


footer {
    background-color: #2a3c4c; 
    color: #faf7f0; 
    padding: 20px;
    text-align: center;
}

.footer-links a {
    color: #faf7f0; 
    margin-right: 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00ff7f; 
}



pre {
    background-color: #272930; 
    color: #faf7f0; 
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}


.terms-section, .privacy-section {
    padding: 20px;
    padding-left: 7%;
    padding-right: 7%;
    margin: 20px 0;
    border-radius: 10px;
    background-color: #f2f2f2; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.terms-section h2, .privacy-section h2 {
    color: #2a3c4c; 
}

.terms-section p, .privacy-section p {
    font-size: 18px;
    color: #272930; 
    line-height: 1.6;
}


.benefits-section {
    background-color: #dcdee1; 
    padding-left: 7%;
    padding-right: 7%;
    border-radius: 10px;
    color: #272930; 
    font-size: 20px; 
}



.benefits-section .icon-text {
    font-size: 18px; 
    color: #272930; 
}

.benefits-section .icons-block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: transparent; 
    border: none; 
}

.benefits-section .icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.benefits-section .icon img {
    width: 100px; 
    height: auto;
    margin-right: 20px;
}


.play-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #2a3c4c; 
    border-radius: 10px;
    background-color: #f2f2f2; 
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.play-block .qr-code {
    margin-bottom: 20px;
}

.play-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.play-block table, .play-block th, .play-block td {
    border: 1px solid #dcdee1; 
}

.play-block th, .play-block td {
    padding: 10px;
    text-align: center;
    background-color: ##f2f2f2; 
}

.play-block th {
    background-color: #f2f2f2; 
    color: #faf7f0; 
}



.play-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #2a3c4c; 
    border-radius: 10px;
    background-color: #f2f2f2; 
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.play-block .qr-code {
    margin-bottom: 20px;
    max-width: 100%; 
    display: flex;
    justify-content: center;
}

.play-block .qr-code img {
    max-width: 100%; 
    height: auto;
    border-radius: 10px;
}

.play-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.play-block table, .play-block th, .play-block td {
    border: 1px solid #dcdee1; 
}

.play-block th, .play-block td {
    padding: 10px;
    text-align: center;
    background-color: white; 
}

.play-block th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
}


.transaction-info-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 1400px;
    border-radius: 10px;
    background-color: #f2f2f2; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
}

.transaction-info-section h2 {
    color: #2a3c4c; 
    text-align: center;
    margin-bottom: 20px;
}

.transaction-info-section table {
    width: 100%;
    border-collapse: collapse;
}

.transaction-info-section th, .transaction-info-section td {
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1; 
}

.transaction-info-section th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
}

.transaction-info-section td {
    background-color: #ffffff; 
    color: #272930; 
}


#game-stats {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
    background-color: #f2f2f2; 
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1); 
    color: #272930; 
}

#game-stats h2 {
    color: #2a3c4c; 
    text-align: center;
    margin-bottom: 20px;
}

#game-stats table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff; 
    color: #272930; 
}

#game-stats table, #game-stats th, #game-stats td {
    border: 1px solid #dcdee1; 
}

#game-stats th, #game-stats td {
    padding: 10px;
    text-align: center;
}

#game-stats th {
    background-color: #00ff7f; 
    color: #faf7f0; 
}

#game-stats td {
    background-color: #ffffff; 
    color: #272930; 
}


.styled-block img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    box-sizing: border-box; 
    padding: 0; 
    border: none; 
}


#partners {
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px; 
    margin: 0 auto; 
}

.partners-logos a {
    display: inline-block;
    width: 5%;
    height: 5%;
    margin-bottom: 10px;
}

.partners-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.copy-container {
    display: flex;
    align-items: center;
}

.copy-button {
    background-color: #2a3c4c;
    color: #faf7f0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    margin-left: 10px;
    outline: none; 
    transition: background-color 0.5s ease; 
}

.copy-button:hover {
    background-color: #00ff7f;
}

.copy-button:focus {
    animation: flashCopy 1s ease forwards;
    outline: none; 
}

@keyframes flashCopy {
    0%, 100% { background-color: #2a3c4c; }
    50% { background-color: #28a745; } 
}






.play-block .address {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 14px; 
    max-width: 100%; 
}



@media only screen and (max-width: 480px) {
  
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-left, .header-right {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 8px;
    padding: 5px;
  }

  .menu li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .menu li a {
    padding: 15px 20px; 
  }

  .btn-theme-toggle {
    width: 100%;
    margin-bottom: 10px;
  }

  .title h1, .title h2 {
    font-size: 1.2em;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .partners-logos a {
    width: 12%;
    height: 12%;
  }

  .play-block, .styled-block, .benefits-section, .centered-block, .faq-how-to-play-section {
    padding: 10px;
    margin: 10px auto;
    width: 100%;
    box-sizing: border-box; 
  }

  .play-block table {
    width: 100%;
    table-layout: fixed; 
    word-wrap: break-word; 
  }

  .play-block th, .play-block td {
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .play-block th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .play-block td {
    background-color: white; 
    color: #272930; 
  }

  .icons-block {
    flex-direction: column;
    align-items: center;
  }

  .icons-block .icon {
    width: 90%;
    margin-bottom: 10px;
  }

  .faq-container, .how-to-play-container {
    width: 100%;
  }

  
  table {
    width: 100%;
    overflow-x: auto;
    table-layout: fixed; 
  }

  .play-block table, .styled-block table, .transaction-info-section table {
    word-wrap: break-word;
    table-layout: fixed; 
  }

  .play-block th, .play-block td, .transaction-info-section th, .transaction-info-section td {
    word-wrap: break-word;
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .play-block th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .play-block td {
    background-color: white; 
    color: #272930; 
  }

  
  .transaction-info-section {
    overflow-x: auto; 
  }

  .transaction-info-section table {
    width: 100%;
    table-layout: fixed;
  }

  .transaction-info-section th, .transaction-info-section td {
    word-wrap: break-word;
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .transaction-info-section th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .transaction-info-section td {
    background-color: white; 
    color: #272930; 
  }

  
  .copy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .copy-container div {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
  }

  .copy-container .copy-button {
    width: 80%;
    margin-top: 10px;
    padding: 10px;
  }

  
  #rules table {
    width: 100%;
    table-layout: fixed; 
    word-wrap: break-word; 
    border-collapse: collapse;
    margin: 10px 0; 
  }

  #rules th, #rules td {
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  #rules th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  #rules td {
    background-color: white; 
    color: #272930; 
  }
}






@media only screen and (min-width: 481px) and (max-width: 860px) {
  
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-left, .header-right {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 8px;
    padding: 5px;
  }

  .menu li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .menu li a {
    padding: 15px 20px; 
  }

  .btn-theme-toggle {
    width: 100%;
    margin-bottom: 10px;
  }

  .title h1, .title h2 {
    font-size: 1.4em;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .partners-logos a {
    width: 10%;
    height: 10%;
  }

  .play-block, .styled-block, .benefits-section, .centered-block,  .faq-how-to-play-section {
    padding: 15px;
    margin: 15px auto;
    width: 100%;
    box-sizing: border-box; 
  }

  .play-block table {
    width: 100%;
    table-layout: fixed; 
    word-wrap: break-word; 
  }

  .play-block th, .play-block td {
    padding: 12px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .play-block th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .play-block td {
    background-color: white; 
    color: #272930; 
  }

  .icons-block {
    flex-direction: column;
    align-items: center;
  }

  .icons-block .icon {
    width: 80%;
    margin-bottom: 10px;
  }

  .faq-container, .how-to-play-container {
    width: 100%;
  }

  
  table {
    width: 100%;
    overflow-x: auto;
    table-layout: fixed; 
  }

  .play-block table, .styled-block table, .transaction-info-section table {
    word-wrap: break-word;
    table-layout: fixed; 
  }

  .play-block th, .play-block td, .transaction-info-section th, .transaction-info-section td {
    word-wrap: break-word;
    padding: 12px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .play-block th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .play-block td {
    background-color: white; 
    color: #272930; 
  }

  
  .transaction-info-section {
    overflow-x: auto; 
  }

  .transaction-info-section table {
    width: 100%;
    table-layout: fixed;
  }

  .transaction-info-section th, .transaction-info-section td {
    word-wrap: break-word;
    padding: 12px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  .transaction-info-section th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  .transaction-info-section td {
    background-color: white; 
    color: #272930; 
  }

  
  .copy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .copy-container div {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
  }

  .copy-container .copy-button {
    width: 80%;
    margin-top: 10px;
    padding: 10px;
  }

  
  #rules table {
    width: 100%;
    table-layout: fixed; 
    word-wrap: break-word; 
    border-collapse: collapse;
    margin: 10px 0; 
  }

  #rules th, #rules td {
    padding: 12px;
    text-align: center;
    border: 1px solid #dcdee1; 
  }

  #rules th {
    background-color: #2a3c4c; 
    color: #faf7f0; 
  }

  #rules td {
    background-color: white; 
    color: #272930; 
  }
}



@media only screen and (min-width: 860px) and (max-width: 1080px) {
  

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-left, .header-right {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu li {
    display: block;
    width: auto;
    text-align: center;
  }

  .menu li a {
    padding: 15px 20px; 
  }

  .btn-theme-toggle {
    width: 100%;
    margin-bottom: 10px;
  }

  .title h1, .title h2 {
    font-size: 1.8em;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .partners-logos a {
    width: 7%;
    height: 7%;
  }

  .play-block, .styled-block, .benefits-section, .centered-block, .faq-how-to-play-section {
    padding: 15px;
    margin: 15px auto;
    width: 90%;
  }

  .icons-block {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .icons-block .icon {
    width: 45%;
    margin-bottom: 20px;
  }

  .faq-container, .how-to-play-container {
    width: 100%;
  }

  
  table {
    width: 100%;
    overflow-x: auto;
  }

  .play-block table, .styled-block table {
    word-wrap: break-word;
  }

  
  .play-block th, .play-block td {
    word-wrap: break-word;
  }
  
      
    .play-block table, .styled-block table {
        table-layout: fixed; 
        width: 100%; 
    }

    .play-block th, .play-block td, .styled-block th, .styled-block td {
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        max-width: 180px; 
        padding: 10px; 
    }

    .play-block th, .styled-block th {
        min-width: 100px; 
    }
    
      
  .copy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .copy-container div {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
  }

  .copy-container .copy-button {
    width: 80%;
    margin-top: 10px;
    padding: 10px;
  }
}


@media only screen and (min-width: 1080px) and (max-width: 1366px) {
  

  header {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .header-left, .header-right {
    flex-direction: row;
    align-items: center;
  }

  .menu {
    flex-direction: row;
    gap: 15px;
  }

  .menu li {
    display: block;
    width: auto;
    text-align: center;
  }

  .menu li a {
    padding: 15px 20px; 
  }

  .btn-theme-toggle {
    width: auto;
    margin-bottom: 0;
  }

  .title h1, .title h2 {
    font-size: 2em;
  }

  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .partners-logos a {
    width: 7%;
    height: 7%;
  }

  .play-block, .styled-block, .benefits-section, .centered-block, .faq-how-to-play-section {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
  }


  .faq-container, .how-to-play-container {
    width: 100%;
  }

  
  table {
    width: 100%;
    overflow-x: auto;
  }

  .play-block table, .styled-block table {
    word-wrap: break-word;
  }

  
  .play-block th, .play-block td {
    word-wrap: break-word;
  }
  
      
    .play-block table, .styled-block table {
        table-layout: fixed; 
        width: 100%; 
    }

    .play-block th, .play-block td, .styled-block th, .styled-block td {
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        max-width: 180px; 
        padding: 10px; 
    }

    .play-block th, .styled-block th {
        min-width: 100px; 
    }
    
      
  .copy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .copy-container div {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
  }

  .copy-container .copy-button {
    width: 80%;
    margin-top: 10px;
    padding: 10px;
  }
}

.in, .solusd {
    color: #dcdee1; 
}

@media (min-width: 1401px) {
    .in {
        padding-left: 2vw; 
    }

    .solusd {
        margin-right: 2vw; 
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1284px) {
    .in {
        display: none; 
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1108px) {
    .solusd {
        display: none; 
    }
}

@media (max-width: 500px) {
    .addition {
        display: none;
    }
}

@media (max-width: 1080px) {
    .header-left, .header-center, .header-right, .logo, .title {
        margin-left: 0; 
        margin-right: 0; 
        text-align: center; 

    }
    .header-right {
    margin-bottom: 10px;}
}





.play-block table th {
    width: 25%; 
    min-width: 100px; 
}

.play-block table td {
    width: 75%; 
}

a {
    color: #00ff7f;
    text-decoration: none; 
}


main { font-size: 100%;}
.title p { font-size: 105%;}
.in {font-size: 110%;}
.play-block p {font-size: 110%;}
.rules-table td {text-align: left; font-size: 110%;}
.centered-block {font-size: 107%;}
.faq-content p {font-size: 110%;}




.transaction-info-section table th,
.transaction-info-section table td {
    max-width: 150px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

#development-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #2a3c4c; /* Тёмно-синий фон */
    color: #faf7f0; /* Белый текст */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.5s ease-in-out;
}

.notification-content p {
    margin: 0;
    font-size: 16px;
    flex-grow: 1;
}


main { font-size: 100%;}
.title p { font-size: 105%;}
.in {font-size: 110%;}
.play-block p {font-size: 110%;}
.rules-table td {text-align: left; font-size: 110%;}
.centered-block {font-size: 107%;}
.faq-content p {font-size: 110%;}




.transaction-info-section table th,
.transaction-info-section table td {
    max-width: 150px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

#development-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: #2a3c4c; /* Тёмно-синий фон */
    color: #faf7f0; /* Белый текст */
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.5s ease-in-out;
}

.notification-content p {
    margin: 0;
    font-size: 16px;
    flex-grow: 1;
}

#close-notification {
    background-color: #00ff7f; 
    color: #2a3c4c;
    border: none;
    padding: 20px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#close-notification:hover {
    background-color: #272930;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}



#close-notification:hover {
    background-color: #272930;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}



.copyable {
    cursor: pointer;
    position: relative;
}


.copyable.copied {
    background-color: #00ff7f; 
    transition: background-color 0.3s ease;
}

.notification-banner {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    background-color: #2a3c4c;
    color: #faf7f0;
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(68, 69, 78, 0.1);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.notification-banner p {
    margin: 0;
    line-height: 1.6;
}

.notification-banner strong {
    color: #00ff7f;
}


.scrollable-container {
    max-height: 400px; 
    overflow-y: auto; 
    border: 1px solid #dcdee1; 
    border-radius: 5px; 
    margin-top: 20px;
}

.scrollable-container table {
    width: 100%; 
    border-collapse: collapse;
}

.scrollable-container th, 
.scrollable-container td {
    padding: 10px;
    text-align: center;
    border: 1px solid #dcdee1;
}

.scrollable-container th {
    background-color: #2a3c4c;
    color: #faf7f0;
}

.scrollable-container td {
    background-color: white;
    color: #272930;
}


@media (max-width: 480px) {
    #transaction-info table th:nth-child(1),
    #transaction-info table th:nth-child(2),
    #transaction-info table td:nth-child(1),
    #transaction-info table td:nth-child(2) {
        display: none; 
    }
}


