
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #2c003e, #8e44ad, #800020);
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Siluetter */
body::before, body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
}

body::before {
    left: 0;
    background-image: url('sil10.png');
}

body::after {
    right: 0;
    background-image: url('sil8.png');
}

/* Resten av din CSS är oförändrad */
header {
    text-align: center;
    padding: 40px 20px 10px;
    z-index: 1;
    position: relative;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: #C04040;
    margin: 0;
}

.tagline {
    font-size: 0.8em;
    color: #fff;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #800020;
    color: #2c003e;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px 20px;
    z-index: 1;
    position: relative;
}

.hero h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 1.7em;
    color: #C04040 
;
}

.hero p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
}

.hero hr {
    margin-top: 20px;
    border: 1px solid #C04040;
    width: 60px;
}

/* Game cards */
.games {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    z-index: 1;
    position: relative;
}

.game-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #C04040;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.game-card h3 {
    color: #B22222;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 1em;
    margin-bottom: 20px;
}

.game-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* Button */
.btn {
    display: inline-block;
    background: #B22222;
    color: #2c003e;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #B22222;
    color: #2c003e;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    z-index: 1;
    position: relative;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer nav a:hover {
    color: #800020;
}