body {
    background-color: #111111;
    color: #dddddd;
    font-family: sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
}

a {
    color: #66ccff;
}

img {
    display: block;
    margin: 20px auto;
}

.logo {
    position: fixed;
    right: 240px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 250px;
    max-width: 100%;
    border-radius: 12px;
}

.screenshot {
    margin-bottom: 50px;
    text-align: center;
}

.screenshot img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.caption {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #aaaaaa;
}

.screenshot video {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}


.clickable-image {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.01);
}

h1, h2, h3 {
    margin-top: 40px;
}

ul {
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #222222;
}