/* 変数定義 */
:root {
    --hajime-purple: #a390e4;
    --hajime-cyan: #7fe7f5;
    --hajime-yellow: #f9d423;
    --bg-dark: #2e2a41;
    --text-main: #ffffff;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
}

.container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.card {
    padding: 1rem;
    margin: 2rem auto;
    background: #3d3854;
    border-top: 4px solid var(--hajime-purple);
    color: #fff;
}

/* テキストエリアのサイズ制御 */
textarea {
    width: 95%;
    resize: vertical; /* 縦方向にのみ拡大可能 */
    min-height: 100px;
    background: #252233;
    color: #fff;
    border: 1px solid var(--hajime-purple);
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
}

/* ボタンの配色 */
button {
    background: var(--hajime-purple);
    transition: filter 0.2s;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
}

button:hover {
    filter: brightness(1.2);
    background: var(--hajime-purple);
}

#btn-convert {
    background: var(--hajime-cyan);
    color: #2e2a41;
}

/* フッター */
footer {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #444;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: #888;
}

.hidden {
    display: none;
}

/* Xボタンのスタイル */
.btn-x {
    background: #000 !important; /* X (Twitter) のブラック */
    color: #fff !important;
}

.btn-x:hover {
    background: #333 !important;
}