:global(body) {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #e5e5e5;
    color: #333;
}

main {
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 3.5em;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    gap: 30px;
}

.intro, .events {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro:hover, .events:hover {
    transform: translateY(-5px);
}

h3 {
    color: #2a9d8f;
    font-size: 1.8em;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    font-size: 1.1em;
}

.image-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

button {
    background: linear-gradient(45deg, #e9c46a, #f4a261);
    border: none;
    padding: 12px 30px;
    font-size: 1.2em;
    color: white;
    cursor: pointer;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #f4a261, #e9c46a);
    transform: scale(1.05);
}

.join-message {
    color: #2a9d8f;
    font-weight: bold;
    font-size: 1.2em;
}

footer {
    background: #264653;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #e9c46a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .hero h2 {
        font-size: 2em;
    }
    .content {
        padding: 10px;
    }
}
