/* Planka Button unten links */
.planka-btn {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    background: rgba(40,40,40,0.85);
    color: #fff;
    border: 2px solid #fff8;
    border-radius: 12px;
    padding: 0.7em 1.4em;
    font-size: 1.08rem;
    font-weight: bold;
    box-shadow: 0 2px 12px #0006;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.planka-btn:hover {
    background: #fff;
    color: #222;
    box-shadow: 0 0 12px #fff8;
}
/* Panel-Header volle Breite */
.panel-header-full {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    background: rgba(40,40,40,0.85);
    border-radius: 12px;
    border: 2px solid #fff8;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.8rem 0;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 0 2px #fff2;
    text-align: center;
    letter-spacing: 0.03em;
}

/* Projekt-Link */
.project-link {
    color: #fff;
    background: rgba(40,40,40,0.7);
    border-radius: 8px;
    border: 1.5px solid #fff8;
    padding: 0.3em 0.8em;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 0 0 1px #fff2;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.project-link:hover {
    background: #fff;
    color: #222;
    box-shadow: 0 0 8px #fff8;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: Arial, sans-serif;
    background: url('../assets/1386891.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f4f4f4;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20,20,20,0.85);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.github-panel {
    background: rgba(40,40,40,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.github-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #f4f4f4;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.github-link:hover {
    color: #ffd700;
}

.github-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.about-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem 2rem;
}
.about-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.2rem;
}
.about-text {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.6;
}
.github-rect-btn {
    display: inline-flex;
    align-items: center;
    background: #333;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    gap: 0.7rem;
    border: none;
}
.github-rect-btn:hover {
    background: #24292f;
}
.github-btn-text {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.github-profile-panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.github-avatar-large {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    object-fit: cover;
    border: 2.5px solid #fff8;
    box-shadow: 0 0 0 2px #fff2;
    margin-right: 2rem;
}
.github-info-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}
.github-username-main {
    font-size: 2.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.2rem;
}
.github-icon-btn {
    display: inline-block;
    background: #333;
    border-radius: 50%;
    padding: 0.5rem;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.github-icon-btn:hover {
    background: #24292f;
}

.discord-username-main {
    font-size: 2.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.6rem;
}

.discord-description-main {
    font-size: 1.08rem;
    color: #ccc;
    margin-top: 0.5rem;
    word-break: break-word;
}

.github-panel {
    background: rgba(40,40,40,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    padding: 2rem 2.5rem;
    text-align: center;
    width: 350px;
    height: 280px;
    min-height: 280px;
    position: relative;
}
