body {
    font-family: Arial, sans-serif;
    background-color: #212530;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.poster img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.quick-download-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quick-download-btn:hover {
    background-color: #0056b3;
}

.description {
    margin-bottom: 30px;
}

.download-area {
    display: none;
    text-align: center;
}

.main-download-btn {
    padding: 15px 30px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-download-btn:hover {
    background-color: #218838;
}

.download-now-btn {
    display: block;
    margin: 20px auto;
    padding: 15px 50px; /* Keep padding as is */
    width: 350px; /* Set a specific width to make the button wider */
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 10px; /* Increase border radius for a smoother look */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.2em; /* Keep font size as is */
    text-align: center;
}

.download-now-btn:hover {
    background-color: #0056b3;
}



/* Ensure images within the slider are responsive and styled */
.slick-slider img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px; /* Rounded corners for images */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Drop shadow effect */
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: block;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dots {
    position: absolute;
    bottom: 10px;
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
}

.slick-dots li button:hover,
.slick-dots li button.slick-active {
    background-color: #333;
}



body.dark-mode {
    background-color: #212530;
    color: #ffffff;
}

.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}



.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
}

.close:hover {
    color: #f44336;
}

.main-download-btn {
	  text-decoration: none; /* Remove underline */
    margin-top: 10px;

}

/* Other styles remain the same */


.system-requirements {
    margin-bottom: 50px; /* Add margin to the bottom */
}






















.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.update-button {
    display: block; /* Display each button in a separate row */
    margin: 10px auto; /* Center each button horizontally */
    padding: 15px 30px;
    background-color: #ff4d4d; /* Red background color */
    color: #ffffff; /* White text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.update-button:hover {
    background-color: #ff3333; /* Darker red on hover */
}

.content-box {
    margin-bottom: 20px; /* Add margin to create space between buttons and content box */
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add shadow effect */
}

.content-box h2 {
    margin-top: 0; /* Remove top margin for heading */
}

.content-box ol {
    margin-top: 0; /* Remove top margin for ordered list */
    padding-left: 20px; /* Add left padding for list items */
}

.notice {
    text-align: center;
    background-color: #ff4d4d; /* Red background color */
    color: #fff; /* White text color */
    padding: 15px;
    margin-bottom: 20px; /* Add margin at the bottom to create space between notice and buttons */
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

.download-area .main-download-btn {
    width: 100%;
    max-width: 350px;
}
