/* Platform landing page styles */
.landing-container {
    background: #f4f8f1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    margin: 2rem auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo {
    display: block;
    max-width: 200px;
    max-height: 150px;
    height: auto;
}

h1 {
    color: #2e4620;
    margin-bottom: 0.5rem;
}

h2 {
    color: #333;
    margin-top: 2rem;
}

/* Competition list */
.competitions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.competition-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333;
    transition: box-shadow 0.3s, transform 0.2s;
}

.competition-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.competition-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
}

.competition-info {
    text-align: left;
}

.competition-info h3 {
    margin: 0 0 0.25rem;
    text-align: left;
    color: #2e4620;
}

.competition-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.organizer-name {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-container {
        width: 80%;
        padding: 1.5rem;
    }
}
