/* 기본 배경 및 폰트 설정 */
body {
    background-color: #0d0d0d; /* 어두운 배경 */
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace; /* Rentry 특유의 폰트 */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* 헤더 영역 */
header {
    text-align: center;
    margin-bottom: 50px;
}

header h1 {
    font-size: 1.5rem;
    color: #ffdeee;
    text-shadow: 2px 2px 4px rgba(255, 192, 203, 0.3);
}

.main-img {
    width: 200px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #ffdeee;
}

/* Rentry 스타일 섹션 */
.rentry-style {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.divider-img img {
    width: 100%;
    max-height: 20px;
    object-fit: contain;
    opacity: 0.7;
}

/* 좌우로 흩어진 텍스트 */
.quote-text {
    font-size: 0.9rem;
    margin: 10px 0;
    color: #fceff3;
}

.quote-text.left {
    text-align: left;
    margin-left: 5%;
}

.quote-text.right {
    text-align: right;
    margin-right: 5%;
}

.graphic-img img {
    width: 100px;
    display: block;
    margin: 0 auto;
}

/* 프로필 카드 영역 */
.profile-card {
    text-align: center;
    background: rgba(255, 222, 226, 0.03);
    padding: 30px 10px;
    border-radius: 15px;
}

.name-line {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.highlight-name {
    color: #ffdeee;
    font-weight: bold;
    text-decoration: underline double #ffcdd3;
    padding: 0 5px;
}

.symbol {
    color: #ffcdd3;
    margin: 0 5px;
}

.sub-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.info-line, .tag-line {
    margin: 10px 0;
    font-size: 0.9rem;
}

/* Rentry 특유의 배경 강조색 */
.bg-pink {
    background-color: #fceff3;
    color: #333;
    padding: 2px 4px;
    font-size: 0.8rem;
}

.bg-pink-dark {
    background-color: #ffcdd3;
    color: #333;
    padding: 3px 6px;
    font-weight: bold;
}

.mini-icon {
    height: 18px;
    vertical-align: middle;
}

/* 소셜 링크 */
.social-line {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rentry-link {
    color: #ffdeee;
    text-decoration: none;
    border-bottom: 1px dotted #ffdeee;
}

.rentry-link:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.deco-img {
    width: 40px;
}

/* 푸터 영역 */
footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.contact-section h3 {
    color: #ffcdd3;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 0.85rem;
    margin: 8px 0;
    opacity: 0.7;
}

.contact-section a {
    color: #ffdeee;
    text-decoration: none;
}