* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: url('R.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.kontaineri {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ccc;
}

.kortit {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.kortti {
    background: rgba(24, 24, 24, 0.85);
    border-radius: 20px;
    width: 280px;
    padding: 40px 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kortti:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.65);
}

.ikoni {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.ikoni img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kortti h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.kortti p {
    font-size: 0.95rem;
    color: #ccc;
    text-align: center;
}

.twitch-kortti {
}

.youtube-kortti {
}

footer {
    margin-top: 80px;
    color: #aaa;
    font-size: 0.9rem;
}