/* Join section styles */
#join {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 0 60px 0;
    color: white;
}

#join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#join .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.join-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.buy-video {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.founders-quote {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4ecdc4;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.ca-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 400px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.ca-container h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #4ecdc4;
}

#contract-address {
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    word-break: break-all;
    margin-bottom: 20px;
}

#copy-button {
    background-color: #f0ad4e;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#copy-button:hover {
    background-color: #ec971f;
}

/* Social section in join */
.social-section {
    margin-top: 50px;
}

.social-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-section .social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-section .social-icons a:hover {
    transform: scale(1.1);
}

.social-section .social-icons img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .join-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .buy-video {
        width: 150px;
        height: 150px;
    }
    
    .ca-container {
        min-width: auto;
        width: 100%;
    }
    
    .social-section .social-icons {
        gap: 20px;
    }
    
    .social-section .social-icons img {
        width: 45px;
        height: 45px;
    }
} 