* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    min-height: 100vh;
}

.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: cover;
}

.content-section {
    padding: 2rem 1.5rem;
    text-align: center;
    background-color: #000000;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}


.join-button {
    background: #f65900;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    max-width: 300px;
}


.join-button:active {
    transform: translateY(0);
}


/* Tablet styles */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        margin: 2rem auto;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .content-section {
        padding: 3rem 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .join-button {
        width: auto;
        padding: 1.2rem 3rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .content-section {
        padding: 4rem 3rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.content-section > *:nth-child(2) {
    animation-delay: 0.1s;
}

.content-section > *:nth-child(3) {
    animation-delay: 0.2s;
}

.content-section > *:nth-child(4) {
    animation-delay: 0.3s;
}

.content-section > *:nth-child(5) {
    animation-delay: 0.4s;
}
