body {
    margin: 0;
    background: #0b0b0b;
    color: #e6e6e6;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    letter-spacing: 4px;
}

.tagline {
    margin: 20px 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

button {
    background: gold;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #c9a400;
}

.about, .code {
    padding: 80px 20px;
    max-width: 700px;
    margin: auto;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 15px 0;
}
footer {
    padding: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
}