@font-face {
    font-family: 'minecraft-regular';
    src: url('../fonts/minecraft-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'minecraft-five-bold';
    src: url('../fonts/minecraft-five-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.join-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.info-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #61dafb;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(97, 218, 251, 0.2);
}

.how-to-join {
    margin-right: 15px;
}

.about-us {
    margin-left: 15px;
}

.info-box h2 {
    color: #61dafb;
    font-family: "Minecraft Five Bold", Arial, sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

.join-steps {
    font-family: 'minecraft-regular', sans-serif;
    font-size: 20px;
    color: white;
    line-height: 1.2;
}

.join-steps p {
    color: white;
    font-family: 'minecraft-regular', sans-serif;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.join-steps p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #61dafb;
    transform: translateY(-50%);
    border-radius: 2px;
}

.about-us p, 
.about-us ul {
    color: white;
    font-family: 'minecraft-regular', sans-serif;
    line-height: 1.6;
}

.about-us p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-us ul {
    list-style: none;
    padding-left: 20px;
}

.about-us li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

.about-us li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #61dafb;
    transform: translateY(-50%);
    border-radius: 2px;
}

.join-button {
    display: block;
    margin: 20px auto 0;
    transition: transform 0.3s ease;
}

.join-button img {
    max-width: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(97, 218, 251, 0.5);
}

.join-button img:hover {
    transform: scale(1.05);
}

.join-button:hover {
    transform: scale(1.05);
}

#datenschutz {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    border: 2px solid #DCDCDC;
    border-radius: 25px;
    background-color: rgba(63, 63, 63, 0.7);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    font-size: 1.1em; 
}

.top-left-info {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Increased from 5px */
    z-index: 1000;
}

.header {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
}

.user-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #61dafb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #61dafb;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    font-family: 'minecraft-regular', sans-serif;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}