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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.95;
}

.content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.info-box strong {
    color: #667eea;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.directions {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.directions strong {
    color: #856404;
    display: block;
    margin-bottom: 8px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    font-weight: 500;
}

.link-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link-button.facebook {
    background: #1877f2;
}

.link-button.facebook:hover {
    background: #1565c0;
}

.link-button.meetup {
    background: #f64060;
}

.link-button.meetup:hover {
    background: #d32f2f;
}

.email {
    margin: 20px 0;
    padding: 15px;
    background: #e7f3ff;
    border-radius: 6px;
}

.email a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.email a:hover {
    text-decoration: underline;
}

.updates {
    margin-top: 40px;
}

.update {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.update-date {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.update-content {
    line-height: 1.8;
}

.update-content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.update-content li {
    margin-bottom: 8px;
}

.update-content a {
    color: #667eea;
    text-decoration: none;
}

.update-content a:hover {
    text-decoration: underline;
}

footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .content {
        padding: 20px;
    }

    header {
        padding: 40px 20px;
    }

    .links {
        flex-direction: column;
    }

    .link-button {
        text-align: center;
    }
}

