html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111;
}

.logotext {
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    flex: 1 1 auto;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 4px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.info-section {
    max-width: 900px;
    margin: 60px auto;
    background-color: #111;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.info-text {
    flex: 1;
    border-right: 1px solid #444;
    padding-right: 20px;
}

.info-text h2 {
    margin-top: 0;
}

.download-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.download-buttons button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 26px;
    font-size: 17px;
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #555;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

.download-buttons button:hover {
    background-color: #333;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
}

.download-buttons button:hover .btn-icon {
    filter: brightness(1.3);
}

.btn-icon {
    width: 46px;
    height: 46px;
    transition: filter 0.3s ease;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #333;
    margin-top: 80px;
}

@media (max-width: 700px) {
    .info-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .info-text {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #444;
        padding-bottom: 15px;
    }

    .download-buttons {
        padding-left: 0;
    }
}

.feedback-container {
    width: 100%;
    max-width: 600px;
    margin: 60px auto;
    background-color: #111;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
}

.feedback-container h1 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: white;
    letter-spacing: 1px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feedback-form label {
    font-size: 15px;
    color: #aaa;
}

.feedback-form select,
.feedback-form textarea,
.feedback-form input[type="email"] {
    background-color: #1a1a1a;
    color: #eee;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    width: 95%;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form select {
    width: 100%;
}

.feedback-form textarea {
    resize: none;
}

.feedback-form select:focus,
.feedback-form textarea:focus,
.feedback-form input[type="email"]:focus {
    border-color: #666;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.feedback-form button {
    background-color: #1a1a1a;
    color: white;
    padding: 14px;
    border: 1px solid #555;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feedback-form button:hover {
    background-color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.08);
}


.feedback-form textarea::-webkit-scrollbar,
.feedback-form select::-webkit-scrollbar {
    width: 10px;
}


.feedback-form textarea::-webkit-scrollbar-track,
.feedback-form select::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 8px;
}


.feedback-form textarea::-webkit-scrollbar-thumb,
.feedback-form select::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

.feedback-form textarea::-webkit-scrollbar-thumb:hover,
.feedback-form select::-webkit-scrollbar-thumb:hover {
    background: #666;
}


.cli-doc-section {
    width: 75%;
    margin: 60px auto;
    background-color: #111;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
    border: 1px solid #222;
    max-height: 55vh;
    overflow-y: auto;
}


.cli-doc-section::-webkit-scrollbar {
    width: 10px;
}

.cli-doc-section::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 8px;
}

.cli-doc-section::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

.cli-doc-section::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.cli-doc-section h1 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.cli-command {
    margin-bottom: 28px;
}

.cli-title {
    font-size: 20px;
    color: #eee;
    margin-bottom: 4px;
    font-weight: bold;
}

.cli-desc {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 6px;
}

.cli-signature {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    font-family: monospace;
}

.cli-signature code {
    color: #ccc;
    background-color: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
}

.cli-command pre {
    background-color: #1a1a1a;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #ddd;
    border: 1px solid #333;
    overflow-x: auto;
    margin: 0;
}

.cli-command code {
    font-family: monospace;
}


.donation-themed-container {
    width: 40%;
    margin: 60px auto;
    background-color: #111;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.donate-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.donation-title {
    text-align: center;
    font-size: 30px;
    color: white;
}

.donation-info {
    text-align: center;
    font-size: 16px;
    color: #aaa;
}

.kofi-image {
    height: 50px;
    transition: transform 0.2s ease;
}

.kofi-image:hover {
    transform: scale(1.05);
}

.crypto-container h3 {
    color: #eee;
    margin-bottom: 15px;
}

.crypto-address {
    margin-bottom: 20px;
}

.crypto-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.crypto-address code {
    color: #ccc;
    background-color: #1a1a1a;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 14px;
}

.copy-btn {
    padding: 6px 12px;
    background-color: #1a1a1a;
    color: #eee;
    border: 1px solid #555;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.copy-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.copy-btn.copied {
    background-color: #2c2c2c;
    color: #7fff7f;
    border-color: #4c4c4c;
}

@media (max-width: 900px) {
    .donation-themed-container {
        width: 90%;
        padding: 20px;
    }

    .crypto-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.news-section {
    width: 55%;
    margin: 60px auto;
    background-color: #111;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.04);
    border: 1px solid #222;
    max-height: 55vh;
    overflow-y: auto;
}

.news-section::-webkit-scrollbar {
    width: 10px;
}

.news-section::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 8px;
}

.news-section::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

.news-section::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.news-section h1 {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.news-item {
    margin-bottom: 24px;
    border-bottom: 1px solid #333;
    padding-bottom: 16px;
}

.news-summary {
    cursor: pointer;
    color: white;
}

.news-summary h3 {
    margin: 0;
    font-size: 20px;
}

.news-summary p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #888;
    cursor: pointer;
}

.news-details {
    display: none;
    white-space: pre-wrap;
    margin-top: 10px;
    padding: 10px;
    border-left: 3px solid #ccc;
    background-color: #1a1a1a;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 900px) {
    .news-section {
        width: 90%;
        padding: 20px;
    }
}
