/* === Grunddesign === */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    min-height: 100vh;
    user-select: none;
    display: flex;
    justify-content: center;   /* horizontal zentrieren */
    align-items: center;       /* vertikal zentrieren */
}

/* === Container === */
.container {
    max-width: 800px;
    width: 90%;
    padding: 30px 50px;
    background: rgba(0,0,0,0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0,255,255,0.6);
}

/* === Buttons === */
.btn {
    padding: 12px 25px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.15s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
    transform: scale(1.03);
    background-color: white;
    color: black;
    box-shadow: 0 0 12px rgba(0,255,255,0.7);
}

/* === Links === */
.link {
    color: #00ffff;
    text-decoration: underline;
    transition: transform 0.15s ease, color 0.3s ease;
}
.link:hover {
    transform: scale(1.02);
    color: white;
}

/* === Header / Hamburger-Menü === */
.menu-header {
    position: fixed;
    top: 0;
    left: -25px; /* Menü 25px weiter nach links verschoben */
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(-20px); /* Icons & Hamburger-Menü 20px nach links */
}

.logo {
    font-size: 1.4em;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0,255,255,0.6);
    transition: transform 0.15s ease;
    animation: logoPulse 3s infinite;
}
.logo:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}
@keyframes logoPulse {
    0%   { transform: scale(1) translateY(0); }
    25%  { transform: scale(1.02) translateY(-1px); }
    50%  { transform: scale(1) translateY(0); }
    75%  { transform: scale(1.02) translateY(1px); }
    100% { transform: scale(1) translateY(0); }
}

/* === Icons (Shop + Discord) === */
.icon-btn {
    color: white;
    font-size: 1.6em;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
}
.icon-btn:hover {
    transform: scale(1.15);
    color: #00ffff;
}
.icon-btn.discord:hover {
    color: #7289da;
}
.icon-btn.shop:hover {
    color: #00ffcc;
}

/* === Hamburger-Menü === */
.hamburger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.15s ease;
}
.hamburger:hover {
    transform: scale(1.05) rotate(3deg);
}
.bar {
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255,255,255,0.7);
}

/* === Dropdown-Menü === */
.dropdown-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    overflow: hidden;
    z-index: 20;
}
.dropdown-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity:0; transform: translateY(-10px);}
    to {opacity:1; transform:translateY(0);}
}
.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1em;
    text-align: left;
    border-radius: 8px;
    transition: transform 0.15s ease, background 0.3s ease;
}
.dropdown-menu a:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.15);
}

/* Login Modal transparent */
.login-modal {
    display:flex;
    position:fixed;
    inset:0;
    background: rgba(0,0,0,0.7); /* Hintergrund hinter Modal bleibt dunkel */
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.login-box {
    background: rgba(255, 255, 255, 0.2); /* HIER transparent */
    backdrop-filter: blur(10px);          /* verschwommen, schick */
    padding: 25px;
    border-radius: 15px;
    text-align:center;
    width:300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white; /* Textfarbe weiß, weil Hintergrund transparent */
}
.login-box input {
    width:100%;
    margin:8px 0;
    padding:10px;
    border-radius:8px;
    border:1px solid #aaa;
    background: rgba(255,255,255,0.15); /* Input auch leicht transparent */
    color: white;
}
.login-box input::placeholder {
    color: #eee;
}
.login-box button {
    margin-top:10px;
    padding:10px 15px;
    border:2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.login-box button:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}

/* === Kopier-Notification === */
#copy-notification {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0,255,255,0.9);
    color: black;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
#copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* === Team-Grid & Skins Animation === */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.team-member {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,255,255,0.6);
}
.animated-skin {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* === SuchtGPT Box === */
.suchtgpt-box {
    margin-top: 20px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
    text-align: left;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    user-select: none;
}
.suchtgpt-box:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}
.suchtgpt-box textarea {
    width: 100%;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #00ffff;
    color: white;
    border-radius: 10px;
    padding: 10px;
    resize: none;
    outline: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    user-select: text !important;
}
.suchtgpt-box textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0,255,255,0.7);
}
.suchtgpt-box button {
    margin-top: 10px;
    background: #00ffff;
    border: none;
    color: black;
    padding: 8px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.suchtgpt-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0,255,255,0.7);
    background: #00e0e0;
}

/* === Responsive === */
@media(max-width:600px){
    .menu-header {
        padding: 0 25px;
    }
    .menu-right {
        gap: 10px;
        transform: translateX(-10px);
    }
    .icon-btn {
        font-size: 1.4em;
    }
    .dropdown-menu {
        right: 10px;
    }
    .container {
        width: 90%;
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    p {
        font-size: 1em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .suchtgpt-box textarea {
        height: 70px;
    }
}