body {
    background-color: #1A1A1A;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.join-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.join-container h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.join-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 20px;
}

.info-section, .contact-section {
    background: linear-gradient(145deg, #424242, #313131);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 300px;
}

.info-section h2, .contact-section h2 {
    color: #ff4d4d;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section ul li {
    padding: 12px 0;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-section ul li:before {
    content: "→";
    color: #ff4d4d;
    margin-right: 10px;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

.contact-section {
    background: linear-gradient(145deg, #424242, #313131);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-section p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #cccccc;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    color: #ff4d4d;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #ff4d4d;
}

@media (max-width: 768px) {
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-container {
        margin-top: 20px;
    }
    
    .join-container h1 {
        font-size: 2em;
    }
    
    .info-section, .contact-section {
        padding: 20px;
        flex: 100%;
    }
    
    .info-section h2, .contact-section h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }
    
    .join-container h1 {
        font-size: 1.8em;
    }
    
    .info-section ul li {
        font-size: 1em;
    }
}
