* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #eee;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

h1 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #666;
}

.status {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    min-height: 1.8em;
    color: #666;
    transition: color 0.3s;
}

.status.recording {
    color: #ff4444;
}

.status.playing {
    color: #4ae04a;
}

.status.fading {
    color: #e09030;
}

.info {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 3rem;
    min-height: 1.5em;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    border: none;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.12s, opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:active {
    transform: scale(0.93);
}

.btn-start {
    background: #2a7fff;
    color: white;
    width: 130px;
    height: 130px;
    font-size: 1.1rem;
}

.btn-stop {
    background: #555;
    color: white;
    width: 130px;
    height: 130px;
    font-size: 1.1rem;
    display: none;
}


.credit {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    color: #333;
}

.credit a {
    color: #555;
    text-decoration: none;
}

.credit a:active {
    color: #888;
}
