body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ff6b35; /* Orange to match the image's background */
    color: white;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 50%; /* Makes it circular for a badge-like feel */
}

h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.live-status {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.live-indicator {
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.coin-link {
    color: white;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.coin-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

h2 {
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 5px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.thesis-intro, .key-points, .conclusion {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.thesis-icon {
    width: 80px;
    height: auto;
    display: block;
    margin: 20px auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #e9e9e9;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #ff6b35;
}

button {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #e55a2b;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.x-community-link {
    background-color: #1da1f2;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.x-community-link:hover {
    background-color: #0d8bd9;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

/* Responsive design for mobile */
@media (max-width: 600px) {
    h1 { font-size: 2em; }
    .logo { width: 80px; }
}
