.join-section {
    /* Padding oben von 40px auf 100px erhöht (erster Wert) */
    padding: 100px 0 40px 0; 
    position: relative;
    z-index: 10;
    font-family: 'Oswald', sans-serif;
}

.join-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-header {
    text-align: center;
    /* Margin nach unten auf 60px erhöht für mehr Luft zum Switcher */
    margin-bottom: 60px; 
}

.join-header h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    text-transform: uppercase;
    /* Abstand zum Text unter der Überschrift */
    margin-bottom: 15px; 
}

/* SWITCHER */
.edition-switcher {
    margin: 0 auto 20px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(0,0,0,0.6);
    padding: 8px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.1);
    max-width: 450px;
}

.switcher-btn {
    height: 45px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    color: white;
    font-family: 'Oswald';
    transition: 0.3s;
    text-transform: uppercase;
    opacity: 0.6;
}

.switcher-btn.active {
    background: #00fbff; /* Dein OPGAMING Türkis */
    color: black;
    opacity: 1;
}

/* MAIN CONTAINER */
.join-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    border: 1px solid rgba(0, 251, 255, 0.2);
    border-left: 4px solid #00fbff;
    overflow: hidden;
    background: rgba(0, 251, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: 0.5s ease;
}

.steps-side {
    flex: 1.2;
    padding: 50px;
    min-width: 300px;
}

.edition-header {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-icon-bg {
    width: 45px;
    height: 45px;
    background: rgba(0, 251, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 251, 255, 0.2);
}

.step-icon-bg i {
    font-size: 1.4rem;
    color: #00fbff;
}

.step-desc {
    margin: 0;
    color: #eee;
    font-size: 1.1rem;
}

/* IP BOX & TOOLTIP */
.ip-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    padding: 8px 15px;
    border: 1px solid #00fbff;
    border-radius: 5px;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #00fbff;
    cursor: pointer;
    transition: 0.2s;
}

.copy-btn:hover { transform: scale(1.2); }

.copy-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #00fbff;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

/* VIDEO SIDE */
.video-side {
    flex: 1;
    min-width: 320px;
    background: #000;
}

.video-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .join-container { border-left: none; border-top: 4px solid #00fbff; }
    .steps-side { padding: 30px 20px; }
}
