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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    padding: 40px 20px;
    color: #e0e0e0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.header {
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.header p {
    font-size: 0.9rem;
    color: #888;
}

.input-card {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #4a90e2;
    background: #2f2f2f;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.input-group input::placeholder {
    color: #555;
}

.input-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.btn-add {
    width: 100%;
    padding: 12px;
    background: #4a90e2;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-add:hover {
    background: #357abd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-add:active {
    transform: translateY(0);
}

.log-section {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

.log-header h2 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

.total-badge {
    background: #2a2a2a;
    color: #4a90e2;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
}

.total-badge:hover {
    background: #2f2f2f;
    border-color: #4a90e2;
}

.chore-log {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chore-item {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.chore-item:hover {
    background: #2f2f2f;
    border-color: #4a90e2;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
}

.chore-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.chore-number {
    width: 32px;
    height: 32px;
    background: #3a3a3a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chore-item:hover .chore-number {
    background: #4a90e2;
    color: #fff;
}

.chore-name {
    font-size: 1rem;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.chore-item:hover .chore-name {
    color: #ffffff;
}

.chore-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chore-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a90e2;
    transition: all 0.3s ease;
}

.chore-item:hover .chore-price {
    color: #5fa3ef;
    transform: scale(1.05);
}

.btn-delete {
    padding: 6px 12px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-delete:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: scale(1.05);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #555;
}

.empty-state p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .chore-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .chore-actions {
        align-self: flex-end;
        width: 100%;
        justify-content: space-between;
    }
}

.shine {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.513), inset 3px 3px 5px rgba(255, 255, 255, 0.108), inset -8px -8px 16px rgba(255, 255, 255, 0.075);
}