/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Screen reader only text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    display: inline-block;
    margin-bottom: 30px;
}

.profile-image img {
    border-radius: 50%;
    max-width: 150px;
    height: auto;
    display: block;
}

/* Main content */
.site-main {
    margin-bottom: 60px;
}

.entry-content {
    text-align: center;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #000;
}

.entry-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #000;
    word-break: normal;
    hyphens: none;
}

.entry-content a {
    color: #0693e3;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    hyphens: none !important;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.site-footer p {
    font-size: 13px;
    color: #888;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .site-title {
        font-size: 28px;
    }

    .entry-content p {
        font-size: 18px;
    }

    .profile-image img {
        max-width: 120px;
    }
}

@media (max-width: 390px) {
    .site-title {
        font-size: 24px;
    }

    .entry-content p {
        font-size: 16px;
    }

    .profile-image img {
        max-width: 100px;
    }
}
