* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #f5f5f5;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    color: #000;
    line-height: 1.6;
}

h1 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: lowercase;
}

h2 {
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: normal;
    text-transform: lowercase;
}

p {
    margin-bottom: 15px;
}

#cookieCount {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 5px;
}

button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    margin: 20px 0;
    text-transform: lowercase;
}

button:hover {
    background: #333;
}

button:disabled {
    background: #999;
    cursor: not-allowed;
}

#message {
    min-height: 20px;
    color: #333;
    font-style: italic;
}

#recentCookies {
    font-size: 0.9em;
}

.recent-item {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.recent-item:last-child {
    border-bottom: none;
}

.time {
    color: #666;
}

#sideNote {
    position: fixed;
    top: 220px;
    right: 250px;
    font-size: 1.1em;
    color: #555;
    font-style: italic;
    transform: rotate(-12deg);
    white-space: nowrap;
}
#sideNote:hover{
    background: radial-gradient(#125dff, #ec1414);
    background-clip: text;
    color: transparent;
}

@media (max-width: 900px) {
    #sideNote {
        position: static;
        transform: none;
        margin-top: 25px;
        font-size: 0.95em;
        white-space: normal;
    }
}
