    .content-container {
        width: 95%;
        margin: 15px auto;
        border-radius: 5px;
        background: #f9f9f9;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

.dark-mode .content-container{background: #464646;}
.dark-mode .content-container h2{color: #fff;}
.dark-mode .content-container h2{color: #fff;}
.dark-mode .content-container p{color: #fff;}
.dark-mode .content-container ul li {background: #222}

    .content-container h2 {
        text-align: center;
        color: #333;
        font-size: 24px;
        border-bottom: 2px solid #007BFF;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .content-container p, .content-container ul {
        font-size: 16px;
        color: #444;
        line-height: 1.6;
    }

    .content-container ul {
        list-style: none;
        padding: 0;
    }

    .content-container ul li {
        background: #fff;
        padding: 10px;
        margin: 5px 0;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
    }

    .content-container ul li::before {
        content: "✔";
        color: #007BFF;
        font-weight: bold;
        margin-right: 10px;
    }

    .highlight {
        font-weight: bold;
        color: #d9534f;
	margin: 0 4px 0 4px;
    }

.dark-mode .panelde{
color: #fff;
}
    .domain-container {
        width: 90%;
        margin: auto;
        text-align: center;
    }
    .domain-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    .domain-table th, .domain-table td {
        padding: 6px;
        border: 1px solid #ddd;
    }
    .domain-table th {
        background-color: #007BFF;
        color: white;
    }
.dark-mode .domain-table th {
    background-color: #222222;
    color: white;
}
    .domain-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    .dark-mode .domain-table tr:nth-child(even) {
        background-color: gray;
    }
    .buy-button {
        background-color: #28a745;
        color: white;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
    }
    .buy-button:hover {
        background-color: #218838;
    }

.back-to-top {position: fixed;bottom: 105px;right: 20px;background-color: #fff;background-image: url(/images/icons/uparrow.png);background-size: contain;border: none;border-radius: 50%;width: 48px;height: 48px;display: none;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);}
.back-to-top:hover {background-color:#c3c3c3;}
.dark-mode .back-to-top{background-color: #797979;}
.dark-mode .back-to-top:hover{background-color: #393939;}

    .bildirish {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 0;
    transition: transform 0.3sease-out, opacity 0.3sease-out;
    border-radius: 10px;
    width: 70%;
    color: #000;
    z-index: 4;
    transition: 0.3s;
        }
.dark-mode .bildirish{background: #545454;color: #fff;}
.bildirish.active {display: block;transform: translate(-50%, -50%) scale(1);opacity: 1;}
.close-btn {cursor: pointer;margin-top: 10px;padding: 5px 10px;background: red;color: white;border: none;border-radius: 5px;}