body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.palworld-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: url('/css/background.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

.server-poster {
    max-width: 80%;
    max-height: 60vh;
    margin-bottom: 20px;
    opacity: 0.7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.server-info {
    background-color: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.copyable-input {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.copyable-input input {
    flex-grow: 1;
    padding: 10px;
    margin-right: 10px;
    background-color: #f4f4f4;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.copy-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #45a049;
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #ffeb3b;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.channel-links {
    margin-top: 20px;
}

.channel-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.channel-links a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}
