/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c3e50; /* Dark gray-ish blue background */
    color: #ecf0f1;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header Styles */
header {
    margin: 40px 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ecf0f1;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #3498db;
}

/* Download Section */
.download-section {
    margin: 40px auto; /* Center horizontally */
    max-width: 1000px; /* Set max width */
    padding: 30px;
    background-color: rgba(52, 73, 94, 0.7);
    border-radius: 10px;
}

.download-buttons {
    display: flex;
    flex-direction: row; /* Arrange buttons horizontally */
    justify-content: center; /* Center buttons horizontally */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px; /* Increase gap between buttons */
}

.download-button {
    margin: 10px; /* Adjust margin for spacing */
    width: 300px; /* Set fixed width - increased for wider button */
    height: 150px; /* Set fixed height */
}

.download-link {
    display: flex; /* Use flexbox for content centering */
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    width: 100%;
    height: 100%; /* Make link fill the button */
    padding: 15px; /* Adjust padding */
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 15px; /* Add rounded corners */
    font-weight: bold;
    font-size: 1rem; /* Slightly reduce font size */
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.download-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Space between icons and text */
}

.download-link i.fa-apple,
.download-link i.fa-windows {
    margin: 0 25px; /* Further increased space between icons */
    font-size: 2.5rem; /* Increase icon size */
}

.download-link i.fa-windows {
    color: white;
    font-size: 2.5rem; /* Increase icon size */
}

.download-link:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.disabled {
    background-color: #7f8c8d;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.disabled:hover {
    background-color: #7f8c8d;
    transform: none;
}

.version-text {
    display: block;
    font-size: 0.8rem;
    color: #a8b6c0;
    margin-top: 10px;
    font-weight: normal;
}

.unavailable-text {
    display: block;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 5px;
    font-style: italic;
}

/* Features Section */
.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto; /* Center horizontally */
    max-width: 1000px; /* Set max width */
}

.feature {
    flex: 1 1 300px;
    max-width: 600px; /* Further increased max-width for the feature container */
    padding: 20px;
    background-color: rgba(52, 73, 94, 0.7);
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    max-width: 100%; /* Image will scale to the new container width */
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

.social-links {
    margin: 20px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.social-link:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features-section {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        max-width: 100%;
    }
    
    .download-link {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .download-link {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* Style for the legal disclaimer */
.legal-disclaimer {
  width: 50%; /* Set width to 50% */
  margin: 5px auto 20px auto; /* Reduce top margin, keep bottom, center horizontally */
  text-align: center; /* Center the text within the element */
  font-size: 0.8em; /* Make the font slightly smaller */
  color: #bbb; /* Use a darker gray color */
}
/* Changelog Section Styles */
.changelog-section {
  margin: 40px auto; /* Center horizontally */
  max-width: 1000px; /* Set max width */
  padding: 20px;
  background-color: rgba(52, 73, 94, 0.7); /* Similar background as other sections */
  border-radius: 10px;
  text-align: left; /* Align text to the left for readability */
}

.changelog-section h2 {
  text-align: center; /* Center the heading */
  margin-bottom: 15px;
  color: #3498db; /* Match other h2 colors */
}

.changelog-section ul {
  list-style-type: disc; /* Use standard bullet points */
  margin-left: 40px; /* Indent the list */
}

.changelog-section li {
  margin-bottom: 10px; /* Add spacing between list items */
  color: #ecf0f1; /* Match body text color */
}
/* Changelog Date Style */
.changelog-date {
  font-size: 0.9em; /* Make font slightly smaller */
  color: #a8b6c0; /* Use a lighter gray color */
  text-align: center; /* Center the date */
  margin-top: -15px; /* Move date closer to the heading */
  margin-bottom: 20px; /* Add space below the date */
}
