body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.support {
    text-align: center;
    color: black;
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
    margin-top: 50px;
}

.support p {
    text-align: center;
    color: darkgray;
}

.kofi-btn img {
    width: 70px;
    height: 70px;
    padding: 8px;
}

.kofi-btn {
    display: inline-flex;
    margin-top: 15px;
    align-items: center;
    gap: 12px;
    padding: 16px 80px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #e5e7eb;
    text-decoration: none;
    background: linear-gradient( 135deg, rgb(59, 130, 246), rgb(37, 99, 235));
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.kofi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.presses-support-text {
    text-align: center;
    margin-top: 60px;
    font-size: 30px;
}

.press-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 120px;
}

.press-card strong {
    white-space: nowrap;
}

.press-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: 0.2s;
}

.press-card:hover img {
    transform: scale(1.08);
    transform: translateY(-2px);
}

.press-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    gap: 30px;
    margin-top: -50px;
}

.press-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    padding: 10px;
    transition: 0.2s;
    border-color: purple;
}

.press-container span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}


/* Footer */

.footer {
    color: #333;
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    font-family: Arial, sans-serif;
}

.footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}


/* Dark mode */

html.dark-mode body {
    background-color: #111;
    color: #eee;
}

html.dark-mode .support {
    color: #eee;
}

html.dark-mode .support p {
    color: #E1D9D1
}

html.dark-mode .presses-support-text {
    color: #fff;
}

html.dark-mode .footer {
    color: #aaa;
    border-top: 1px solid #333;
}

html.dark-mode .footer a {
    color: #ccc;
}