/* Minecraft Farbpalette */
:root {
    --mc-green: #4dba16;
    --mc-dark-green: #3a8c12;
    --mc-brown: #8B4513;
    --mc-light-brown: #a0522d;
    --mc-gray: #7e7e7e;
    --mc-dark-gray: #1e1e1e;
    --mc-blue: #3b6ea5;
    --mc-light-blue: #4d9be6;
    --mc-black: #0f0f0f;
    --mc-white: #f0f0f0;
    --mc-yellow: #ffcc00;
}

/* Minecraft Schriftart */
@font-face {
    font-family: 'Minecraft';
    src: url('https://d1nhio0ox7pgb.cloudfront.net/_font/minecraft/_g/webfont.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(15, 15, 15, 0.603), rgba(15, 15, 15, 0.664)), url('/img/t1.gif') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}

.minecraft-font {
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Minecraft Block Styles */
.minecraft-button {
    background: linear-gradient(to bottom, var(--mc-brown) 0%, var(--mc-light-brown) 100%);
    border: 3px solid #5a2e0a;
    color: #fff;
    font-family: 'Minecraft', sans-serif;
    text-shadow: 2px 2px 0 #000;
    box-shadow: 0 5px 0 #5a2e0a;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 0;
    display: inline-block;
}

.minecraft-button:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #5a2e0a;
}

.minecraft-button:active {
    transform: translateY(5px);
    box-shadow: none;
}

.minecraft-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid var(--mc-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--mc-green);
    letter-spacing: 2px;
    font-family: 'Minecraft', sans-serif;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-family: 'Minecraft', sans-serif;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--mc-green);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--mc-green);
}

nav a:hover::after {
    width: 100%;
}

/* Team Section */
.team {
    padding: 100px 50px;
    background: rgba(20, 20, 20, 0.9);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--mc-green);
    letter-spacing: 2px;
    font-family: 'Minecraft', sans-serif;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 30px 20px 20px 20px;
    text-align: center;
    border: 2px solid var(--mc-green);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mc-green);
    margin-bottom: 18px;
    background: #222;
}

.team-card .name {
    font-size: 1.4rem;
    color: var(--mc-green);
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 6px;
    text-shadow: 1px 1px 0 #000;
}

.team-card .role {
    font-size: 1.1rem;
    color: var(--mc-yellow);
    margin-bottom: 10px;
    font-family: 'Minecraft', sans-serif;
}

.team-card .desc {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 10px;
}

.team-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.team-card .social-icon {
    width: 38px;
    height: 38px;
    background: rgba(30, 30, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mc-green);
    font-size: 1.2rem;
    border: 2px solid var(--mc-green);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-card .social-icon:hover {
    background: var(--mc-green);
    color: #000;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: rgba(15, 15, 15, 0.95);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--mc-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--mc-green);
    font-family: 'Minecraft', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--mc-green);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(30, 30, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mc-green);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid var(--mc-green);
}

.social-icon:hover {
    background: var(--mc-green);
    color: #000;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    border-top: 1px solid rgba(77, 186, 22, 0.3);
    margin-