body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 900px;
}
.logo-image {
    max-width: 20%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffffff;
}
.embossed {
    font-weight: bold;
    font-size: 2.5em;
    text-shadow: 2px 2px 3px #000000, -2px -2px 3px #707070;
}
.rainbow.r { color: #ffb3ba; } /* �Ľ��� ���� */
.rainbow.o { color: #ffdfba; } /* �Ľ��� ��Ȳ */
.rainbow.y { color: #ffffba; } /* �Ľ��� ��� */
.rainbow.g { color: #baffc9; } /* �Ľ��� �ʷ� */
.rainbow.b { color: #bae1ff; } /* �Ľ��� �Ķ� */
.rainbow.i { color: #d0b3ff; } /* �Ľ��� ���� */
.rainbow.v { color: #e6b3ff; } /* �Ľ��� ���� */
.rainbow.p { color: #ffb3e6; } /* �Ľ��� ��ȫ */
.rainbow.a { color: #b3fff9; } /* �Ľ��� �ϴ� */
.rainbow.\~ { color: #f2f2f2; } /* ���� ��� (���� ǥ��) */
.space { margin-right: 20px; }
.stats {
    background-color: #2c2c2c;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.current-cpm-row {
    text-align: center;
}
.current-cpm-row #currentCpm {
    font-size: 4em;
    font-weight: bold;
    color: #4a90e2;
    line-height: 1;
}
.other-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.stat-item {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stat-label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 5px;
    color: #aaaaaa;
}
.stat-item span:last-child {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}
#quote {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 500;
    color: #e0e0e0;
    text-align: left;
    padding-left: 15px;
}
#quote span.incorrect {
    color: red;
}
#input {
    width: 100%;
    height: 60px;
    padding: 15px;
    font-size: 1.5em;
    color: #ffffff;
    background-color: #2c2c2c;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
    transition: box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    white-space: nowrap;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    ime-mode: auto;
    -webkit-ime-mode: auto;
}
#input:focus {
    outline: none;
    box-shadow: 0 0 15px #4a90e2;
}
#input::selection {
    background-color: rgba(74, 144, 226, 0.3);
}
