.custom-page {
    min-height: calc(100vh - 70px);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('./images/background.jpg') center/cover;
    position: relative;
    padding: 2rem;
}

.back-button-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.back-plans {
    color: #7289DA;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.back-plans:hover {
    color: #ffffff;
}

.custom-container {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 4rem;
    text-align: center;
    background-color: #2C2F33;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    margin-top: 4rem;
}

.custom-container h1 {
    color: #7289DA;
    font-family: 'Minecraft', sans-serif;
    margin-bottom: 1.5rem;
}

.custom-description {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.discord-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #23272A;
    border-radius: 8px;
}

.discord-section p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.discord-link:hover {
    background-color: #4752C4;
}

.discord-logo {
    height: 24px;
    margin-right: 10px;
    fill: currentColor;
    filter: brightness(0) invert(1);
}

.contact-text {
    color: #99AAB5;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-container {
        margin: 6rem 1rem 2rem 1rem;
    }
    
    .back-button-container {
        top: 1rem;
        left: 1rem;
    }
}