:root {
    --primary-color: #0f6cb2;
    --secondary-color: #1A73E8;
    --background-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.header {
    background-color: #1a93ef;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.logo-container {
    position: relative;
    margin-bottom: 1rem;
}

.opensearch-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.red-x {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: red;
    clip-path: polygon(10% 0%, 0% 10%, 40% 50%, 0% 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0%, 50% 40%);
}

.title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.description {
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.comment-container {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comments-title {
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.comment-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    padding: 1rem;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e9edef;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.timestamp {
    font-size: 0.875rem;
    color: #666;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 0 0;
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
}
