/* style.css */

/* Reset some defaults */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

header.header {
    background: linear-gradient(135deg, #6c63ff, #00bcd4);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.download-links div {
    flex: 1 1 200px;
    text-align: center;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #6c63ff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.download-btn:hover {
    background-color: #574fd1;
}

.features ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.beta p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.beta a {
    color: #6c63ff;
    text-decoration: none;
}

.beta a:hover {
    text-decoration: underline;
}