* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1f1f1f;
    color: #e0e0e0;
    display: flex;
    flex-direction: column-reverse;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    padding: 20px;
    margin-bottom: 60px;
}

.about-container {
    background-color: #333333;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.about-section {
    margin-bottom: 25px;
}

.about-section h2 {
    color: #a2c3db;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

/* New improved link styling */
.feature-list li a {
    color: #a2c3db;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.feature-list li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.feature-list li a:hover {
    color: #ff6b6b;
}

.feature-list li a:hover:after {
    width: 100%;
}

.download-button {
    display: block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    margin: 20px auto;
    transition: background-color 0.3s;
    max-width: 250px;
}

.download-button i {
    margin-right: 8px;
}

.download-button:hover {
    background-color: #e05c5c;
}

aside {
    background-color: #333333;
    color: #a2c3db;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

aside nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

aside nav a {
    color: #a2c3db;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    display: block;
    transition: color 0.3s ease;
}

aside nav a:hover {
    color: #ff6b6b;
}

aside nav a i {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.version-info {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 20px;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improve text selection */
::selection {
    background-color: #ff6b6b;
    color: #fff;
}