body {
    margin: 0;
    font-family: Consolas, monospace;
    background: #0d0d0d;
    color: #e0e0e0;
}

a {
    color: #39bdff;
    text-decoration: none;
}

a:hover { color: rgb(100, 200, 255); }
a:active { color: rgb(255, 0, 225); }


/* ----------- HERO ----------- */

.hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url("assets/shardveil_cover.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 20px;
}

h1 {
    font-size: 52px;
    margin: 0;
    letter-spacing: 2px;
    color: #af76ff;
    text-shadow: 0 0 12px #8c00ff;
}

.subtitle {
    font-size: 18px;
    color: #b5b5b5;
    margin: 15px 0 30px;
}

/* ----------- CTA ----------- */

.cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}

.cta.primary {
    background: #8c00ff;
    color: #fff;
    border: 1px solid #8c00ff;
}

.cta.primary:hover {
    background: transparent;
    border: 1px solid #8c00ff;
    color: #af76ff;
    box-shadow: inset 0px 0px 10px #e100ffc8, 0px 0px 50px #e100ff87;
    
}

.cta.secondary {
    margin-top: 20px;
    background: transparent;
    border: 1px solid #8c00ff;
    color: #af76ff;
}

.cta.secondary:hover {
    background: #8c00ff;
    color: #fff;
}

/* ----------- CONTENT ----------- */

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    transition: 0.2s;
}

.card:hover {
    border-color: #8c00ff;
    transform: translateY(-4px);
}

.card h2 {
    margin-top: 0;
    color: #af76ff;
}

/* ----------- SCREENSHOTS ----------- */

.screenshots {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.screenshots img {
    width: 100%;
    max-width: 880px;
    border-radius: 6px;
    border: 1px solid #333;
}

.screenshots-card {
    padding: 0;
    overflow: hidden;
}

.screenshots-full {
    display: flex;
    width: 100%;
}

.screenshots-full img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* ----------- FOOTER ----------- */

footer {
    text-align: center;
    padding: 20px;
    color: #777;
    border-top: 1px solid #333;
    margin-top: 40px;
}