.club-container {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(0);
    opacity: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.club-container.active {
    transform: scale(1);
    opacity: 1;
}

.club-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #ff69b4;
    color: #ffffff;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 10px 10px 0 0;
    width: 100%;
    box-sizing: border-box;
}

.club-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.club-text {
    margin: 10px;
    padding: 5px;
    background: #ffe4e1;
    color: #121212;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    border-radius: 10px;
    width: auto;
    height: auto;
    box-sizing: border-box;
    white-space: pre-wrap;
    max-height: none;
}

.club-content {
    margin: 10px;
    padding: 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #121212;
    background: #ffe4e1;
    border-radius: 10px;
    box-sizing: border-box;
}

.content-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
    padding: 10px;
}

.social-button {
    padding: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    background-color: #ff69b4;
    color: #ffffff;
    text-align: center;
    display: block;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #ff85c0;
}

.close-club {
    background: #ffffff;
    border: none;
    color: #000000;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.close-club:hover {
    background: rgba(200, 200, 200, 0.5);
}

@media screen and (max-width: 768px) {
    .club-container {
        width: 100%;
        left: 0%;
        top: 0%;
    }

    .club-header {
        font-size: 15px;
        font-family: Arial, sans-serif;
        padding: 8px;
    }

    .club-text {
        font-size: 14px;
        padding: 5px;
        margin: 5px;
        line-height: 1.5;
        overflow-y: auto;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .club-content {
        font-size: 14px;
        padding: 1px;
        margin: 5px;
    }

    .close-club {
        font-size: 14px;
        padding: 5px;
    }
}
