body {
    background-color: #111111;
    color: #dddddd;
    font-family: sans-serif;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
}

a {
    color: #66ccff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

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: 2px;
}

strong {
    color: #222222;
}


.thumbnail {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    max-width: 95%;
    max-height: 95%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    max-width: 95%;
    max-height: 95%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    color: yellow;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.thumbnail {
    cursor: pointer;
}

.thumbnail-video {
    width: 100%;
    max-width: 500px;
    cursor: pointer;
    border-radius: 12px;
}

.modal-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
}


nav a {
    color: #66ccff;
    text-decoration: none;
    padding: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

