body {
    font-family: 'Pangolin', cursive;
}

.hero {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(45deg, rgba(255, 153, 102, 0.5) 0%, rgba(135, 206, 235, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
    background-blend-mode: overlay;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 182, 193, 0.3), transparent 70%), radial-gradient(circle at 70% 70%, rgba(135, 206, 235, 0.4), transparent 60%);
    animation: wave 10s infinite linear;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.header-bg {
    background-color: #ffffff;
    background-image: linear-gradient(0deg, #f0f0f0 1px, transparent 1px), linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 10px 10px;
}

.footer-bg {
    background: linear-gradient(45deg, #f0f0f0 25%, #ffffff 25%, #ffffff 50%, #f0f0f0 50%, #f0f0f0 75%, #ffffff 75%, #ffffff);
    background-size: 20px 20px;
}

.newsletter-bg {
    position: relative;
    background: linear-gradient(45deg, #4B0082 0%, #00008B 100%);
    background-blend-mode: overlay;
    background-size: cover;
    overflow: hidden;
}

.newsletter-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(128, 0, 128, 0.5), transparent 70%), radial-gradient(circle at 70% 70%, rgba(0, 0, 139, 0.6), transparent 60%);
    animation: wave 10s infinite linear;
}

.newsletter-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.article-content {
    color: #696666;
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-content h1 { font-size: 2.25rem; }
.article-content h2 { font-size: 1.875rem; }
.article-content h3 { font-size: 1.5rem; }
.article-content h4 { font-size: 1.25rem; }
.article-content h5 { font-size: 1.125rem; }

.article-content p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1.75em;
    font-weight: 400;
    color: #696666;
}

.article-content pre {
    background-color: #f3f4f6;
    padding: 1em;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.75em;
    white-space: pre-wrap;
    word-break: break-word;
}

.article-content code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

.article-content p > code, 
.article-content li > code {
    background-color: #e5e7eb;
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    border-radius: 3px;
}

/* Lists */
.article-content ul,
.article-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.75em;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.75em;
}

/* Blockquote */
.article-content blockquote {
    border-left: 4px solid #ff8c00; /* Using a brand color */
    padding-left: 1em;
    margin: 0 0 1.75em 0;
    font-style: italic;
    color: #6b7280; /* gray-500 */
}

/* Links */
.article-content a {
    color: #dd6b20; /* A slightly darker orange for better readability */
    text-decoration: underline;
    transition: color 0.2s;
}

.article-content a:hover {
    color: #c05621;
}

/* Other text elements */
.article-content strong {
    font-weight: 700;
}

.article-content hr {
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

.txt-button {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
}

.txt-button:hover {
    background-color: purple;
}