* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #191724; /* Base */
    color: #e0def4; /* Text */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem;
}

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

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ebbcba, #c4a7e7); /* Rose & Iris */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #908caa; /* Subtext */
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .download-section {
        flex-direction: row;
        justify-content: center;
    }
}

.download-option {
    padding: 2rem;
    border-radius: 12px;
    background-color: #1f1d2e; /* Surface */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.download-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 167, 231, 0.15); /* Iris with opacity */
    background-color: #26233a; /* Overlay */
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ebbcba; /* Rose */
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0def4; /* Text */
}

.platform-desc {
    color: #908caa; /* Subtext */
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.download-btn {
    display: inline-block;
    width: 80%;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #eb6f92, #c4a7e7); /* Love & Iris */
    color: #191724; /* Base (for text contrast) */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(235, 111, 146, 0.3); /* Love with opacity */
}

footer {
    margin-top: auto;
    padding-top: 2rem;
    color: #6e6a86; /* Muted */
    font-size: 0.9rem;
}

.requirements {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #26233a; /* Overlay */
}

.requirements h3 {
    color: #e0def4; /* Text */
    margin-bottom: 0.75rem;
}

.requirements ul,
.requirements ol {
    margin-left: 1.25rem;
    color: #908caa; /* Subtext */
}

.requirements li {
    margin-bottom: 0.5rem;
}

.requirements code {
    background-color: #26233a; /* Overlay */
    padding: 2px 6px;
    border-radius: 4px;
    color: #e0def4; /* Text */
}
