body {
    background-color: #000000;
    color: #d6b3ff;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

.title {
    color: #d6b3ff;
    text-align: center;
    font-size: 2.8rem;
    text-shadow: 0 0 10px #a64bff, 0 0 20px #d86cff, 0 0 40px #ff79ff;
    margin-top: 2rem;
}

.content-wrapper {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.art {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.art_container {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #7a00cc;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(170, 0, 255, 0.3);
    overflow: hidden;
    padding: 1rem;
    align-items: center;
    gap: 1.5rem;
}

.art_container img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.art_container h2 {
    color: #e0b3ff;
    text-shadow: 0 0 5px #ff7bff;
    margin: 0;
}

.button_vm {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: transparent;
    color: #ffb3ff;
    font-weight: bold;
    border: 2px solid #ff7dee;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button_vm:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 15px #ff9ff7, 0 0 25px #c94eff;
    transform: scale(1.05);
}
.article-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.media {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.media video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.screenshots-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.screenshots-row img {
    width: 49%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.info-panel {
    flex: 1 1 40%;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.info-panel h2, p {
    color: #bb86fc;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #bb86fc;
}
.visit-site-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: 2px solid #bb86fc;
    background: transparent;
    color: #bb86fc;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.visit-site-btn:hover {
    background: #bb86fc;
    color: #000;
    box-shadow: 0 0 10px #bb86fc;
}

.author-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

a.article-link {
    color: #bb86fc;
    text-decoration: none;
    text-shadow: 0 0 5px #bb86fc, 0 0 10px #a333ef;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.6rem;
    font-weight: bold;
}

a.article-link:hover {
    color: #e0b3ff;
    transform: scale(1.03);
    text-shadow: 0 0 10px #e0b3ff, 0 0 20px #c94eff;
}

#catg {
    color: #f1a1ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 7px #ff4ff8;
}